@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Baloo+2:wght@500;600;700&display=swap');

:root {
  --bg: #f5fdff;
  --surface: #ffffff;
  --primary: #02b6ff;
  --primary-deep: #007fbe;
  --secondary: #12d7a7;
  --accent: #ffd649;
  --ink: #07334f;
  --muted: #5c7f95;
  --shadow-soft: 0 12px 30px rgba(7, 61, 94, 0.12);
  --shadow-card: 0 10px 24px rgba(8, 63, 96, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100% - 2.25rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(2, 182, 255, 0.18), transparent 38%),
    radial-gradient(circle at 10% 20%, rgba(255, 214, 73, 0.17), transparent 33%),
    linear-gradient(160deg, #e9fbff 0%, #f7fdff 55%, #eff9ff 100%);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.7vw, 2.8rem);
  line-height: 1.05;
  margin: 0 0 0.8rem;
}

.section-subtitle {
  margin: 0 0 2rem;
  font-size: 1.03rem;
  color: var(--muted);
  max-width: 64ch;
}

.wave-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  background: rgba(2, 182, 255, 0.12);
  color: var(--primary-deep);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-weight: 600;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(4, 118, 172, 0.12);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(140deg, var(--primary), #6ce4ff);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  font-weight: 700;
  line-height: 1.05;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  border: 1px solid rgba(7, 80, 120, 0.2);
  background: #fff;
  color: var(--primary-deep);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: var(--primary-deep);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(2, 182, 255, 0.16);
  color: var(--primary-deep);
}

.cta-btn,
.btn-outline,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 12px 22px rgba(4, 135, 190, 0.28);
}

.btn-outline {
  border: 1px solid rgba(2, 128, 183, 0.35);
  color: var(--primary-deep);
}

.btn-light {
  background: #fff;
  color: var(--primary-deep);
}

.cta-btn:hover,
.btn-outline:hover,
.btn-light:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 4.6rem 0 3.5rem;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  line-height: 0.98;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 56ch;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-soft);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 34, 53, 0.44), rgba(6, 64, 90, 0.1));
}

.hero-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.9rem 1rem;
  font-weight: 600;
  color: #094c74;
}

.card-grid,
.gallery-grid,
.info-grid,
.pricing-grid,
.event-grid,
.contact-grid,
.stats-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.pricing-card,
.quote-card,
.contact-card,
.info-card,
.event-card,
.stat-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1.15rem;
}

.feature-card h3,
.pricing-card h3,
.event-card h3,
.info-card h3 {
  margin: 0.65rem 0 0.35rem;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img,
.card-grid img,
.event-card img,
.info-card img,
.contact-photo {
  border-radius: 14px;
  height: 220px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(2, 182, 255, 0.18), rgba(18, 215, 167, 0.2));
  display: grid;
  place-items: center;
  color: var(--primary-deep);
  font-size: 1.3rem;
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card.highlight {
  border: 2px solid rgba(2, 182, 255, 0.25);
  transform: translateY(-4px);
}

.price {
  margin: 0.45rem 0 0.7rem;
  font-size: 2rem;
  font-weight: 800;
  color: #01669a;
}

.list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.event-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--primary-deep);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote-card {
  border-top: 5px solid rgba(2, 182, 255, 0.3);
}

.stars {
  color: #ffb11b;
  letter-spacing: 2px;
}

.faq-wrap {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid rgba(2, 141, 199, 0.2);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--muted);
  padding-inline: 1rem;
}

.faq-item.open .faq-body {
  max-height: 180px;
  padding-bottom: 1rem;
}

.ribbon-cta {
  background: linear-gradient(120deg, #05acef, #14d3ad 60%, #ffd44f);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.3rem);
  box-shadow: var(--shadow-soft);
}

.ribbon-cta h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
}

.ribbon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

form {
  display: grid;
  gap: 0.8rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 110, 164, 0.2);
  border-radius: 12px;
  padding: 0.84rem 0.9rem;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 300px;
  border-radius: 16px;
}

.footer {
  margin-top: 3rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(5, 113, 162, 0.15);
  color: var(--muted);
  background: linear-gradient(160deg, #e6f9ff, #f4fdff);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1rem;
}

.footer-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 126, 180, 0.14);
  border-radius: 16px;
  padding: 1rem;
}

.footer-card h3 {
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: var(--primary-deep);
  font-weight: 500;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.social-row a {
  border: 1px solid rgba(6, 126, 180, 0.25);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 600;
  color: var(--primary-deep);
}

.footer-bottom {
  margin-top: 1rem;
  text-align: center;
  color: #4d7890;
}

.floating-contact {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 120;
  display: grid;
  gap: 0.6rem;
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 22px rgba(8, 42, 60, 0.28);
  animation: fabPulse 1.8s ease-in-out infinite;
}

.fab-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.fab-btn.whatsapp {
  background: #26d366;
}

.fab-btn.call {
  background: #03a9f4;
  animation-delay: 0.4s;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(3, 169, 244, 0.45);
  }
  70% {
    transform: scale(1.06);
    box-shadow: 0 0 0 10px rgba(3, 169, 244, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(3, 169, 244, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .hero-wrap,
  .info-grid,
  .contact-grid,
  .event-grid,
  .card-grid,
  .pricing-grid,
  .quote-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-image {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 84px;
    left: 1rem;
    right: 1rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 0.85rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .cta-btn {
    text-align: center;
  }

  .hero-wrap,
  .info-grid,
  .contact-grid,
  .event-grid,
  .card-grid,
  .pricing-grid,
  .quote-grid,
  .feature-grid,
  .gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.2rem 0;
  }

  .hero {
    padding-top: 3.6rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .floating-contact {
    left: 10px;
    bottom: 10px;
  }

  .fab-btn {
    width: 47px;
    height: 47px;
  }
}
