/* Juliana Prudente — Landing Page */

:root{
  --white:#F8F8F7;
  --snow:#FFFFFF;
  --pearl:#E7E5E2;
  --soft:#F2EFEC;
  --logo-gray:#9E9A94;
  --warm-gray:#B7B1AA;
  --graphite:#57534E;
  --dark:#3F3A35;
  --tea-rose:#C8A7A1;
  --tea-rose-dark:#B88E87;
  --line:rgba(87,83,78,.14);
  --shadow:0 24px 70px rgba(63,58,53,.08);
  --radius:22px;
  --max:1744px;
  --page-gutter:clamp(78px,7.42vw,152px);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Inter",sans-serif;
  background:var(--white);
  color:var(--graphite);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(var(--max),calc(100% - (var(--page-gutter) * 2)));margin-inline:auto}
.page{overflow:hidden;background:#fff}

/* Header */
.header{
  position:absolute;
  inset:0 0 auto 0;
  z-index:20;
  padding:clamp(38px,3.7vw,76px) 0 28px;
}
.header-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
}
.brand{display:inline-flex;align-items:center}
.brand-logo-full{
  width:clamp(210px,11.25vw,248px);
  height:auto;
}
.brand-logo-mark{display:none;width:68px;height:auto}
.header-help{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding-top:11px;
  font-size:12px;
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--graphite);
  opacity:.82;
  white-space:nowrap;
}
.whatsapp-badge{
  width:22px;height:22px;border-radius:50%;
  border:1px solid var(--warm-gray);
  display:grid;place-items:center;color:var(--logo-gray);
}
.whatsapp-badge svg{width:13px;height:13px;stroke-width:1.7}

/* Hero */
.hero{
  position:relative;
  height:min(100vh,56.25vw);
  min-height:560px;
  display:block;
  padding:0;
  background-image:url("../img/hero-bg-desktop.jpg");
  background-size:auto 100%;
  background-position:right top;
  background-repeat:no-repeat;
  isolation:isolate;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--line),transparent);
}
.hero-grid{
  height:100%;
  display:block;
  position:relative;
  z-index:2;
}
.hero-copy{
  position:absolute;
  top:37.2%;
  left:0;
  max-width:clamp(500px,33vw,650px);
  padding-top:0;
}
.eyebrow{
  color:var(--tea-rose-dark);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:clamp(14px,1vw,17px);
  font-weight:600;
  margin-bottom:16px;
}
h1{
  font-family:"Cormorant Garamond",serif;
  color:var(--dark);
  font-weight:400;
  font-size:clamp(50px,4.45vw,88px);
  line-height:.98;
  letter-spacing:-.025em;
  margin-bottom:24px;
  max-width:clamp(500px,33vw,650px);
}
.hero-text{
  max-width:clamp(430px,29vw,560px);
  font-size:clamp(17px,1.25vw,24px);
  font-weight:300;
  color:var(--graphite);
  margin-bottom:34px;
}
.hero-button{width:auto;min-width:300px}

/* Sections */
.steps-section{padding:56px 0 78px;background:#fff}
.section-head{text-align:center;margin-bottom:34px}
.section-kicker{
  color:var(--tea-rose-dark);
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.28em;
  font-weight:500;
  margin-bottom:8px;
}
.section-head p{color:var(--graphite);font-size:17px;font-weight:300}
.steps{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px}
.step-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:28px 24px 30px;
  box-shadow:0 16px 48px rgba(63,58,53,.045);
}
.step-card span{
  display:block;
  color:var(--tea-rose-dark);
  font-family:"Cormorant Garamond",serif;
  font-size:38px;
  line-height:1;
  margin-bottom:20px;
}
.step-card h2{
  font-family:"Cormorant Garamond",serif;
  color:var(--dark);
  font-weight:400;
  font-size:27px;
  line-height:1.04;
  margin-bottom:14px;
}
.step-card p{
  color:var(--graphite);
  font-size:14.5px;
  font-weight:300;
}
.featured-step{background:var(--soft);border-color:rgba(200,167,161,.38)}
.button{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  min-height:54px;
  width:100%;
  max-width:390px;
  border-radius:4px;
  border:0;
  background:var(--tea-rose);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:background .22s ease,transform .22s ease;
}
.button:hover{background:var(--tea-rose-dark);transform:translateY(-1px)}
.button span{font-size:24px;line-height:1;font-weight:300}

.faq-copy h2,
.cta-box h2{
  font-family:"Cormorant Garamond",serif;
  color:var(--dark);
  font-size:clamp(42px,3.2vw,62px);
  font-weight:400;
  line-height:1;
  margin:0 0 22px;
}
.faq-copy p,
.cta-box p{
  font-size:17px;
  font-weight:300;
  max-width:560px;
}

.fit-section{
  padding:76px 0;
  background:var(--soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.fit-box{
  max-width:980px;
  text-align:center;
  padding:0 54px;
}
.fit-box p{
  font-family:"Cormorant Garamond",serif;
  color:var(--dark);
  font-size:clamp(34px,3vw,54px);
  font-weight:400;
  line-height:1.08;
}

.faq-section{padding:70px 0 78px;background:#fff}
.faq-grid{display:grid;grid-template-columns:minmax(300px,.72fr) minmax(0,1fr);gap:64px;align-items:start}
.faq-list{border-top:1px solid var(--line)}
.faq-list details{border-bottom:1px solid var(--line)}
.faq-list summary{
  list-style:none;
  cursor:pointer;
  position:relative;
  padding:24px 46px 24px 0;
  color:var(--dark);
  font-size:18px;
  font-weight:500;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{
  content:"+";
  position:absolute;
  right:4px;
  top:22px;
  color:var(--tea-rose-dark);
  font-size:24px;
  font-weight:300;
}
.faq-list details[open] summary::after{content:"−"}
.faq-list p{
  max-width:760px;
  padding:0 46px 24px 0;
  color:var(--graphite);
  font-size:15.5px;
  font-weight:300;
}

.cta-section{padding:0 0 82px;background:#fff}
.cta-box{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:32px;
  padding:34px 42px;
  border:1px solid rgba(200,167,161,.34);
  border-radius:12px;
  background:linear-gradient(90deg,rgba(242,239,236,.96),rgba(255,255,255,.98));
  box-shadow:0 20px 62px rgba(63,58,53,.06);
}
.cta-box h2{font-size:clamp(38px,3vw,56px);margin-bottom:0}
.cta-button{
  max-width:340px;
  min-width:300px;
  white-space:nowrap;
}

/* Footer */
.footer{background:var(--soft);border-top:1px solid var(--line);color:var(--logo-gray)}
.footer-main{
  min-height:112px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
  padding:26px 0;
}
.footer-mark{width:74px;height:auto;opacity:.95}
.footer-text{text-align:center;text-transform:uppercase;letter-spacing:.22em;font-size:12px;line-height:1.8}
.footer-social{display:flex;gap:18px;align-items:center}
.footer-social a{opacity:.9;transition:color .2s}
.footer-social a:hover{color:var(--tea-rose-dark)}
.footer-social svg{width:21px;height:21px;stroke-width:1.4}
.footer-bar{
  background:var(--tea-rose);
  color:rgba(255,255,255,.88);
  text-align:center;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:12px 18px;
}

@media(max-width:1440px){
  :root{--page-gutter:clamp(78px,7.5vw,108px)}
  .brand-logo-full{width:225px}
  .hero{
    min-height:560px;
    background-size:auto 100%;
    background-position:right top;
  }
  .hero-copy{
    max-width:620px;
  }
  h1{
    font-size:clamp(50px,5.2vw,74px);
    max-width:620px;
  }
  .hero-text{
    max-width:410px;
  }
}

@media(max-width:1100px){
  .hero-copy{max-width:500px}
  h1{max-width:430px}
  .steps{grid-template-columns:repeat(3,minmax(0,1fr))}
}

/* Tablet */
@media(max-width:980px){
  .container{width:min(100% - 44px,var(--max))}
  .hero{
    min-height:700px;
    padding:132px 0 68px;
    background-size:1450px auto;
    background-position:58% top;
  }
  .hero-copy{max-width:520px;padding-top:76px}
  h1{font-size:clamp(50px,8vw,76px)}
  .steps{grid-template-columns:repeat(2,minmax(0,1fr))}
  .faq-grid{grid-template-columns:1fr;gap:34px}
  .cta-box{grid-template-columns:1fr;text-align:center}
  .cta-box p{margin:0 auto}
  .cta-button{margin:0 auto}
}

/* Mobile */
@media(max-width:760px){
  .container{width:min(100% - 48px,var(--max))}
  .header{padding:22px 0}
  .header-inner{align-items:flex-start}
  .brand-logo-full{display:none}
  .brand-logo-mark{
    display:block;
    width:82px;
    margin:8px 0 0 10px;
  }

  .hero{
    height:auto;
    min-height:0;
    padding:394px 0 32px;
    display:block;
    background-image:url("../img/hero-bg-mobile.jpg");
    background-size:cover;
    background-position:center top;
  }
  .hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:
      linear-gradient(180deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.02) 34%,rgba(255,255,255,.72) 56%,#fff 76%,#fff 100%),
      linear-gradient(90deg,rgba(255,255,255,.28) 0%,rgba(255,255,255,.04) 42%,rgba(255,255,255,0) 100%);
  }
  .hero::after{z-index:3}
  .hero-grid{height:auto}
  .hero-copy{
    position:relative;
    top:auto;
    left:auto;
    z-index:2;
    max-width:360px;
    padding:0;
  }
  .eyebrow{
    font-size:12px;
    line-height:1.3;
    margin-bottom:12px;
    letter-spacing:.2em;
  }
  h1{
    font-size:clamp(44px,12.2vw,52px);
    line-height:.96;
    max-width:350px;
    margin-bottom:18px;
    letter-spacing:-.018em;
  }
  .hero-text{
    font-size:17px;
    line-height:1.62;
    max-width:330px;
    margin-bottom:24px;
  }

  .hero-button{width:100%;min-width:0}
  .steps-section{padding:38px 0 54px}
  .section-head{margin-bottom:26px}
  .section-kicker{font-size:12px;letter-spacing:.2em}
  .section-head p{font-size:15px;max-width:310px;margin:0 auto}
  .steps{grid-template-columns:1fr;gap:14px}
  .step-card{padding:24px 22px}
  .step-card span{font-size:32px;margin-bottom:12px}
  .step-card h2{font-size:27px}
  .button{max-width:none;min-height:52px;font-size:12px;letter-spacing:.08em}
  .faq-copy h2,
  .cta-box h2{font-size:38px}
  .faq-copy p,
  .cta-box p{font-size:15.5px}
  .fit-section{padding:48px 0}
  .fit-box{padding:0}
  .fit-box p{font-size:32px}
  .faq-section{padding:46px 0 56px}
  .faq-list summary{font-size:16px;padding:20px 38px 20px 0}
  .faq-list summary::after{top:18px}
  .faq-list p{font-size:14.5px;padding:0 0 20px}
  .cta-section{padding-bottom:54px}
  .cta-box{padding:30px 22px;gap:22px}
  .cta-button{min-width:0;width:100%}
  .footer-main{grid-template-columns:1fr;text-align:center;gap:16px}
  .footer-mark{margin:0 auto;width:78px}
  .footer-text{font-size:10px;letter-spacing:.18em}
  .footer-social{justify-content:center}
}

@media(max-width:380px){
  .hero{min-height:0}
  h1{font-size:41px}
  .step-card h2{font-size:25px}
  .fit-box p{font-size:29px}
  .button{font-size:11px}
}
