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

:root {
  --ink: #10232b;
  --muted: #67777e;
  --brand: #0e7d9d;
  --brand-dark: #0a5268;
  --aqua: #94dbe4;
  --soft: #eef7f8;
  --line: #dfe9eb;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(16, 35, 43, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 100px 0; }
.eyebrow {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: #d7fbff;
  margin-bottom: 18px;
}
.eyebrow.dark { color: var(--brand); }

h1, h2, h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.6rem); letter-spacing: -.055em; }
h1 span { color: #bff4f7; }
h2 { font-size: clamp(2.2rem, 4vw, 4.1rem); letter-spacing: -.045em; }
h3 { font-size: 1.45rem; letter-spacing: -.025em; }
p { margin: 0; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  width: 100%;
  transition: .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  width: 142px;
  height: 80px;
  padding: 0;
  background: transparent;
  transition: width .25s ease, height .25s ease, box-shadow .25s ease;
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(5,35,45,.2));
}
.site-header.scrolled .brand {
  width: 122px;
  height: 72px;
}
.site-header.scrolled .brand-logo { filter: none; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a { color: white; font-size: .93rem; font-weight: 600; }
.site-header.scrolled .main-nav > a { color: var(--ink); }
.main-nav .btn { color: white !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  border: 1px solid var(--brand);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-small { min-height: 42px; padding: 0 19px; }
.btn-ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
}
.btn-full { width: 100%; border: 0; }

.menu-toggle { display: none; }

.hero {
  min-height: 800px;
  height: 95vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(5,35,45,.85) 0%, rgba(5,35,45,.52) 45%, rgba(5,35,45,.12) 100%),
    url("https://images.unsplash.com/photo-1576013551627-0cc20b96c2a7?auto=format&fit=crop&w=2000&q=86") center/cover;
}
.hero-content { position: relative; z-index: 2; padding-top: 70px; }
.hero-content > p {
  max-width: 620px;
  font-size: 1.18rem;
  color: rgba(255,255,255,.84);
  margin: 26px 0 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 52px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: start;
}
.intro-copy { padding-top: 45px; }
.intro-copy p { font-size: 1.06rem; color: var(--muted); margin-bottom: 18px; }

.services { background: var(--soft); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}
.section-heading > p { max-width: 380px; color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  min-height: 320px;
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(16,35,43,.03);
}
.card-number {
  display: inline-block;
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 85px;
}
.card p { color: var(--muted); margin-top: 16px; }

.plans {
  background: #0b4051;
  color: white;
}
.plans .section-heading > p { color: rgba(255,255,255,.68); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan {
  position: relative;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 34px;
  min-height: 430px;
}
.plan.featured { background: white; color: var(--ink); }
.plan > span { color: var(--aqua); font-weight: 700; }
.plan.featured > span { color: var(--brand); }
.plan h3 { font-size: 1.9rem; margin: 13px 0 18px; }
.plan p { color: rgba(255,255,255,.7); }
.plan.featured p { color: var(--muted); }
.plan ul { padding-left: 20px; margin: 28px 0 38px; color: rgba(255,255,255,.82); }
.plan.featured ul { color: var(--ink); }
.plan li { margin: 8px 0; }
.text-link { font-weight: 700; color: var(--aqua); }
.plan.featured .text-link { color: var(--brand); }
.badge {
  position: absolute;
  right: 22px;
  top: 22px;
  background: var(--soft);
  color: var(--brand);
  font-size: .68rem;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.03); }

.about { background: #f7faf9; }
.about-grid { align-items: center; }
.about-image img { height: 610px; object-fit: cover; border-radius: var(--radius); }
.about-copy > p { color: var(--muted); font-size: 1.06rem; margin: 25px 0 40px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stats strong { display: block; font-family: "Manrope"; font-size: 1.75rem; }
.stats span { color: var(--muted); font-size: .84rem; }

.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}
.muted { color: var(--muted); margin-top: 20px; }
details { border-bottom: 1px solid var(--line); padding: 22px 0; }
summary { cursor: pointer; font-weight: 700; font-size: 1.05rem; }
details p { color: var(--muted); padding: 15px 25px 0 0; }

.contact {
  background: var(--soft);
  padding-top: 70px;
}
.contact-box {
  background: #0b4051;
  color: white;
  border-radius: 30px;
  padding: 65px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
}
.contact-box h2 { max-width: 650px; }
.contact-box > div > p {
  max-width: 570px;
  color: rgba(255,255,255,.7);
  margin: 24px 0 38px;
}
.contact-data { display: flex; flex-direction: column; gap: 9px; color: rgba(255,255,255,.9); }

.contact-form {
  background: white;
  color: var(--ink);
  border-radius: 22px;
  padding: 28px;
  display: grid;
  gap: 16px;
}
.contact-form label { font-size: .82rem; font-weight: 700; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--brand); }
.contact-form small { color: var(--muted); text-align: center; }

footer { background: var(--soft); padding: 35px 0 45px; }
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: .86rem;
  color: var(--muted);
}
.footer-brand {
  width: 128px;
  height: 94px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 12px 30px rgba(16, 90, 48, .2);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 32px rgba(16, 90, 48, .28);
}

@media (max-width: 960px) {
  .menu-toggle {
    display: grid;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 8px;
    z-index: 60;
  }
  .menu-toggle span { width: 25px; height: 2px; background: white; }
  .site-header.scrolled .menu-toggle span { background: var(--ink); }

  .main-nav {
    position: fixed;
    inset: 0 0 auto auto;
    width: min(360px, 90vw);
    min-height: 100vh;
    background: white;
    padding: 110px 35px 35px;
    flex-direction: column;
    align-items: stretch;
    transform: translateX(105%);
    transition: transform .25s ease;
    box-shadow: -15px 0 50px rgba(0,0,0,.12);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a { color: var(--ink); font-size: 1.1rem; }

  .split,
  .faq-layout,
  .contact-box { grid-template-columns: 1fr; gap: 45px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; }
  .intro-copy { padding-top: 0; }
  .about-image img { height: 480px; }
}

@media (max-width: 1180px) and (min-width: 961px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 74px 0; }
  .hero { min-height: 720px; height: 100svh; }
  h1 { font-size: clamp(3rem, 15vw, 5rem); }
  h2 { font-size: 2.45rem; }

  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }

  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card-number { margin-bottom: 50px; }

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

  .stats { grid-template-columns: 1fr; }
  .about-image img { height: 390px; }
  .contact-box { padding: 34px 22px; border-radius: 22px; }
  .footer-wrap { flex-direction: column; text-align: center; }
  .brand { width: 116px; height: 70px; }
}
