body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: hsl(0, 0%, 100%);
  color: #333;
  scroll-behavior: smooth;
}

header.hero {
  background: linear-gradient(135deg, lab(8.66% -15.28 8.99), lab(81.57% -80.51 76.91));
  color: white;
  padding: 100px 20px;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.logo {
  font-size: 3.5rem;
  margin: 0;
}

.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.navbar li {
  transition: transform 0.3s ease;
}

.navbar li:hover {
  transform: scale(1.1);
}

.navbar a {
  text-decoration: none;
  color: hwb(0 0% 100%);
  font-weight: bold;
}

.section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  color: #0066cc;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: "• ";
  color: #00cc99;
}

.section-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin: 20px 0;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #eee;
  color: #666;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.whatsapp-float {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-50%) scale(1.1);
}

.whatsapp-float img {
  width: 100%;
  height: auto;
}

.maps-float {
  position: fixed;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 998;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.maps-float:hover {
  transform: translateY(-50%) scale(1.1);
}

.maps-float img {
  width: 100%;
  height: auto;
}

.gmail-float {
  position: fixed;
  top: 70%;
  right: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 997;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gmail-float:hover {
  transform: translateY(-50%) scale(1.1);
}

.gmail-float img {
  width: 100%;
  height: auto;
}

#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00a86b, #4caf50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeInIntro 1.5s ease-in-out;
}

#intro-screen h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: 30px;
  animation: scaleIn 1.2s ease-out;
}

#intro-screen button {
  padding: 15px 40px;
  font-size: 1.2rem;
  background-color: #ffffff;
  color: #00a86b;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease;
}

#intro-screen button:hover {
  transform: scale(1.1);
}

@keyframes fadeInIntro {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.logo-r {
  display: inline-block;
  color: hwb(0 100% 0%);
  animation: bounceGlow 2s infinite;
  text-shadow: 0 0 8px hwb(0 100% 0%), 0 0 12px hsl(0, 0%, 100%);
  font-weight: bold;
}

@keyframes bounceGlow {
  0%, 100% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 8px lab(5.06% 0 0), 0 0 12px hsl(0, 0%, 100%);
  }
  50% {
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 16px hwb(0 8% 91%), 0 0 24px hsl(0, 0%, 100%);
  }
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(1.2);
}

body {
  font-family: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}
img, video, iframe {
  max-width: 100%;
  height: auto;
}

.section, .hero-content, nav, header, main, footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
