:root{
  --petrol:#123f46;
  --petrol-2:#1f5960;
  --sage:#9eb9aa;
  --sage-soft:#e9f1ec;
  --cream:#fff8ed;
  --white:#ffffff;
  --gold:#d9a76c;
  --text:#1c2b2f;
  --muted:#5d6b6f;
  --line:rgba(18,63,70,.10);
  --shadow:0 22px 60px rgba(18,63,70,.14);
  --radius:28px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--cream);
  line-height:1.65;
  overflow-x:hidden;
}

body.menu-open{
  overflow:hidden;
}

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

.container{
  width:min(1120px,92%);
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,248,237,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}

.nav{
  width:min(1180px,94%);
  height:78px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--petrol);
  font-weight:800;
}

.brand-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:18px;
  color:#fff;
  font-size:1.7rem;
  background:linear-gradient(135deg,var(--petrol),var(--sage));
  box-shadow:0 14px 32px rgba(18,63,70,.20);
}

.brand-name{
  display:block;
  font-size:.9rem;
  line-height:1.08;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.brand-name strong{
  font-size:1rem;
}

.menu{
  display:flex;
  align-items:center;
  gap:8px;
}

.menu a{
  padding:10px 14px;
  border-radius:999px;
  color:var(--petrol);
  font-weight:800;
  transition:transform .25s ease, background .25s ease;
}

.menu a:hover{
  background:var(--sage-soft);
  transform:translateY(-1px);
}

.menu .menu-whatsapp{
  color:#fff;
  background:linear-gradient(135deg,var(--petrol),var(--petrol-2));
  box-shadow:0 12px 28px rgba(18,63,70,.20);
}

.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border:0;
  border-radius:14px;
  background:var(--sage-soft);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.menu-btn span{
  display:block;
  width:22px;
  height:2px;
  border-radius:999px;
  background:var(--petrol);
  transition:transform .25s ease, opacity .25s ease;
}

.hero{
  position:relative;
  min-height:calc(100vh - 78px);
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:76px 0;
  background:
    radial-gradient(circle at top left, rgba(158,185,170,.55), transparent 34%),
    radial-gradient(circle at bottom right, rgba(217,167,108,.32), transparent 30%),
    linear-gradient(135deg,#fff8ed 0%,#f2f8f4 54%,#ffffff 100%);
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}

.label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  padding:9px 14px;
  border-radius:999px;
  color:var(--petrol-2);
  background:rgba(158,185,170,.24);
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.label:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
}

.label-light{
  color:#fff;
  background:rgba(255,255,255,.14);
}

h1,h2,h3{
  color:var(--petrol);
  line-height:1.08;
}

h1{
  max-width:760px;
  margin-bottom:24px;
  font-size:clamp(3rem,7vw,6.65rem);
  letter-spacing:-.06em;
}

h2{
  margin-bottom:18px;
  font-size:clamp(2rem,4.1vw,4rem);
  letter-spacing:-.04em;
}

h3{
  margin-bottom:12px;
  font-size:1.28rem;
}

.hero-text{
  max-width:720px;
  margin-bottom:30px;
  color:var(--muted);
  font-size:clamp(1.08rem,2vw,1.34rem);
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
}

.btn{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease;
}

.btn:hover{
  transform:translateY(-3px);
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--petrol),var(--petrol-2));
  box-shadow:0 16px 38px rgba(18,63,70,.22);
}

.btn-secondary{
  color:var(--petrol);
  background:#fff;
  border-color:var(--line);
  box-shadow:0 12px 30px rgba(18,63,70,.08);
}

.btn-light{
  color:var(--petrol);
  background:#fff;
  box-shadow:0 16px 36px rgba(0,0,0,.10);
}

.phone-card{
  width:max-content;
  max-width:100%;
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:28px;
  padding:14px 18px;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow);
}

.phone-card span{
  color:var(--muted);
  font-weight:800;
}

.phone-card strong{
  color:var(--petrol);
  font-size:1.15rem;
}

.hero-art{
  position:relative;
  min-height:560px;
  display:grid;
  place-items:center;
}

.main-illustration{
  width:min(420px,92%);
  min-height:430px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
  padding:42px;
  border:1px solid var(--line);
  border-radius:44px;
  background:rgba(255,255,255,.86);
  box-shadow:var(--shadow);
}

.illustration-icon{
  width:112px;
  height:112px;
  display:grid;
  place-items:center;
  margin:0 auto 28px;
  border-radius:36px;
  color:#fff;
  font-size:3.4rem;
  background:linear-gradient(135deg,var(--gold),var(--sage));
  box-shadow:0 18px 42px rgba(217,167,108,.24);
}

.main-illustration h2{
  font-size:2.5rem;
}

.main-illustration p{
  color:var(--muted);
}

.floating-tag{
  position:absolute;
  padding:13px 20px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--petrol);
  font-weight:900;
  box-shadow:0 18px 42px rgba(18,63,70,.12);
  animation:floatUp 5s ease-in-out infinite;
}

.tag-one{
  top:76px;
  left:3%;
}

.tag-two{
  top:205px;
  right:0;
  animation-delay:1s;
}

.tag-three{
  left:10%;
  bottom:88px;
  animation-delay:2s;
}

.hero-shape{
  position:absolute;
  z-index:1;
  border-radius:50%;
  opacity:.38;
}

.hero-shape-one{
  width:360px;
  height:360px;
  right:-130px;
  top:80px;
  background:var(--sage);
}

.hero-shape-two{
  width:260px;
  height:260px;
  left:-100px;
  bottom:100px;
  background:var(--gold);
}

@keyframes floatUp{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}

.section{
  padding:92px 0;
}

.intro{
  background:linear-gradient(180deg,#f2f8f4 0%,#fff8ed 100%);
}

.intro-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
  align-items:start;
}

.intro-card,
.therapy-panel,
.service-card,
.contact-card,
.cta-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.intro-card{
  padding:36px;
  background:#fff;
}

.intro-card p+p{
  margin-top:16px;
}

.therapy-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:stretch;
}

.therapy-panel{
  padding:44px;
}

.dark-panel{
  color:#fff;
  background:linear-gradient(135deg,var(--petrol),#235d63);
}

.dark-panel h2{
  color:#fff;
}

.dark-panel p{
  color:rgba(255,255,255,.84);
  font-size:1.08rem;
}

.text-link{
  display:inline-block;
  margin-top:24px;
  color:#fff;
  font-weight:900;
  border-bottom:2px solid rgba(255,255,255,.45);
}

.calm-panel{
  display:grid;
  gap:18px;
  background:linear-gradient(135deg,#fff,#e9f1ec);
}

.step-card{
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
}

.step-card span{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:18px;
  color:var(--petrol);
  background:var(--sage-soft);
  font-weight:900;
}

.step-card p{
  color:var(--petrol);
  font-size:1.12rem;
  font-weight:900;
}

.services{
  background:linear-gradient(180deg,#fff8ed 0%,#f2f8f4 100%);
}

.section-title{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}

.section-title > p:last-child{
  color:var(--muted);
  font-size:1.08rem;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.service-card{
  position:relative;
  overflow:hidden;
  padding:30px;
  background:#fff;
  transition:transform .25s ease, box-shadow .25s ease;
}

.service-card:after{
  content:"";
  position:absolute;
  right:-54px;
  bottom:-66px;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(158,185,170,.20);
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(18,63,70,.16);
}

.service-icon{
  width:60px;
  height:60px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  border:1px solid var(--line);
  border-radius:20px;
  color:var(--petrol);
  font-size:1.7rem;
  background:linear-gradient(135deg,var(--sage-soft),#fff);
}

.service-card p{
  position:relative;
  z-index:1;
  color:var(--muted);
}

.location-grid{
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:36px;
  align-items:center;
}

.location-text{
  max-width:640px;
  color:var(--muted);
  font-size:1.12rem;
}

.contact-card{
  padding:38px;
  text-align:center;
  background:#fff;
}

.contact-icon{
  width:90px;
  height:90px;
  display:grid;
  place-items:center;
  margin:0 auto 20px;
  border-radius:30px;
  color:#fff;
  font-size:2.8rem;
  background:linear-gradient(135deg,var(--petrol),var(--sage));
}

.contact-card p{
  margin-bottom:24px;
  color:var(--muted);
}

.final-cta{
  padding-top:40px;
}

.cta-card{
  position:relative;
  overflow:hidden;
  padding:60px 30px;
  color:#fff;
  text-align:center;
  background:linear-gradient(135deg,var(--petrol),#235f65);
}

.cta-card:before{
  content:"";
  position:absolute;
  width:340px;
  height:340px;
  right:-140px;
  top:-150px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}

.cta-card h2{
  color:#fff;
}

.cta-card p:not(.label){
  max-width:760px;
  margin:0 auto 28px;
  color:rgba(255,255,255,.84);
}

.float-whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:#25d366;
  box-shadow:0 16px 40px rgba(37,211,102,.38);
  font-size:1.9rem;
  transition:transform .25s ease;
}

.float-whatsapp:hover{
  transform:scale(1.06) translateY(-3px);
}

.footer{
  padding:30px 0;
  color:#fff;
  background:#0e3035;
}

.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
}

.footer p:last-child{
  color:rgba(255,255,255,.72);
}

@media (max-width:900px){
  .section{
    padding:74px 0;
  }

  .menu-btn{
    display:flex;
  }

  .menu{
    position:absolute;
    top:78px;
    left:3%;
    right:3%;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:14px;
    border:1px solid var(--line);
    border-radius:24px;
    background:#fff;
    box-shadow:var(--shadow);
  }

  .menu.is-open{
    display:flex;
  }

  .menu a{
    text-align:center;
  }

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

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

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

  .hero{
    min-height:auto;
  }

  .hero-grid,
  .intro-grid,
  .therapy-grid,
  .location-grid{
    grid-template-columns:1fr;
  }

  .hero-art{
    order:-1;
    min-height:420px;
  }

  .main-illustration{
    min-height:330px;
  }

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

  .footer-grid{
    justify-content:center;
    text-align:center;
  }
}

@media (max-width:620px){
  .nav{
    height:72px;
  }

  .brand-icon{
    width:42px;
    height:42px;
    border-radius:15px;
  }

  .brand-name{
    font-size:.75rem;
  }

  .brand-name strong{
    font-size:.84rem;
  }

  .menu{
    top:72px;
  }

  .hero{
    padding:52px 0 62px;
  }

  h1{
    font-size:3rem;
  }

  h2{
    font-size:2.15rem;
  }

  .hero-buttons{
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .phone-card{
    width:100%;
    justify-content:space-between;
  }

  .section{
    padding:58px 0;
  }

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

  .main-illustration{
    width:100%;
    padding:30px 24px;
  }

  .main-illustration h2{
    font-size:2rem;
  }

  .floating-tag{
    padding:10px 14px;
    font-size:.86rem;
  }

  .tag-one{
    top:28px;
  }

  .tag-two{
    top:145px;
  }

  .tag-three{
    bottom:42px;
  }

  .intro-card,
  .therapy-panel,
  .service-card,
  .contact-card{
    padding:28px;
  }

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

  .location-grid{
    text-align:center;
  }

  .footer{
    padding-bottom:92px;
  }

  .float-whatsapp{
    right:16px;
    bottom:16px;
    width:58px;
    height:58px;
  }
}
