/* 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;
}
.small-line{width:64px;height:1px;background:var(--tea-rose)}

/* Choice */
.choice-section{padding:48px 0 72px;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}
.cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 16px 50px rgba(63,58,53,.055);
  transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:rgba(200,167,161,.42)}
.card-image{height:245px;background:var(--soft);overflow:hidden}
.card-image img{width:100%;height:100%;object-fit:cover;filter:saturate(.9) contrast(.98)}
.card-body{padding:0 34px 34px;text-align:center}
.card-icon{
  width:78px;height:78px;border-radius:50%;
  background:#fff;border:1px solid rgba(200,167,161,.38);
  box-shadow:0 12px 28px rgba(63,58,53,.08);
  display:grid;place-items:center;
  margin:-39px auto 22px;
  position:relative;z-index:2;color:var(--tea-rose-dark);
}
.card-icon svg{width:32px;height:32px;stroke-width:1.4}
.card h2{
  font-family:"Cormorant Garamond",serif;
  color:var(--dark);
  font-weight:400;
  font-size:38px;
  line-height:1;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.card-label{
  color:var(--tea-rose-dark);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:13px;
  font-weight:500;
  margin-bottom:24px;
}
.card p{
  max-width:360px;
  margin:0 auto 30px;
  color:var(--graphite);
  font-size:15.5px;
  font-weight:300;
}
.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}

/* Help */
.help-box{
  margin:46px auto 0;
  max-width:900px;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:24px;
  padding:24px 32px;
  border-radius:12px;
  background:linear-gradient(90deg,rgba(248,248,247,.9),rgba(255,255,255,.95));
  border:1px solid var(--line);
  box-shadow:0 12px 42px rgba(63,58,53,.045);
}
.help-copy{display:flex;align-items:center;gap:18px}
.help-copy svg{flex:0 0 36px;color:var(--tea-rose-dark);stroke-width:1.4}
.help-copy strong{
  display:block;
  text-transform:uppercase;
  color:var(--tea-rose-dark);
  letter-spacing:.1em;
  font-size:13px;
  margin-bottom:2px;
  font-weight:500;
}
.help-copy span{font-size:14px;color:var(--graphite);font-weight:300}
.outline-button{
  min-height:48px;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:0 26px;
  border:1px solid rgba(87,83,78,.38);
  border-radius:5px;
  background:transparent;
  color:var(--graphite);
  text-transform:uppercase;
  letter-spacing:.09em;
  font-size:12px;
  font-weight:500;
  white-space:nowrap;
  transition:border-color .2s,color .2s,background .2s;
}
.outline-button:hover{border-color:var(--tea-rose-dark);color:var(--tea-rose-dark);background:rgba(200,167,161,.05)}

/* 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;
}

/* Modal */
body.modal-open{overflow:hidden}
.modal{
  position:fixed;
  inset:0;
  z-index:100;
  display:grid;
  place-items:center;
  padding:24px;
  opacity:1;
  pointer-events:auto;
  transition:opacity .22s ease;
}
.modal[aria-hidden="true"]{
  opacity:0;
  pointer-events:none;
}
.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(63,58,53,.34);
  backdrop-filter:blur(8px);
}
.modal-dialog{
  position:relative;
  width:min(100%,430px);
  padding:34px 34px 32px;
  border:1px solid rgba(200,167,161,.32);
  border-radius:10px;
  background:rgba(255,255,255,.96);
  box-shadow:0 28px 90px rgba(63,58,53,.18);
  text-align:center;
  color:var(--graphite);
}
.modal-mark{
  width:72px;
  height:72px;
  margin:0 auto 14px;
  opacity:.86;
}
.modal-dialog h2{
  font-family:"Cormorant Garamond",serif;
  color:var(--dark);
  font-weight:400;
  font-size:34px;
  line-height:1;
  letter-spacing:.02em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.modal-dialog p{
  font-size:16px;
  line-height:1.72;
  font-weight:300;
  margin:0 auto 26px;
}
.modal-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.modal-button{
  min-width:150px;
  min-height:48px;
  border:0;
  border-radius:4px;
  background:var(--tea-rose);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.12em;
  font:600 13px/1 "Inter",sans-serif;
  cursor:pointer;
  transition:background .22s ease,transform .22s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.modal-button:hover{background:var(--tea-rose-dark);transform:translateY(-1px)}
.modal-button-secondary{
  background:#fff;
  color:var(--graphite);
  border:1px solid rgba(87,83,78,.24);
}
.modal-button-secondary:hover{
  background:rgba(200,167,161,.07);
  color:var(--tea-rose-dark);
}
.modal-button:focus-visible{
  outline:2px solid rgba(184,142,135,.46);
  outline-offset:3px;
}


@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}
}

/* 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)}
  .cards{gap:22px}
  .card h2{font-size:32px}
  .card-body{padding:0 24px 28px}
}

/* 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;
  }
  .small-line{width:78px}

  .choice-section{padding:34px 0 52px}
  .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}
  .cards{grid-template-columns:1fr;gap:24px}
  .card{border-radius:18px}
  .card-image{height:190px}
  .card-icon{width:68px;height:68px;margin-top:-34px;margin-bottom:18px}
  .card-icon svg{width:28px;height:28px}
  .card h2{font-size:31px}
  .card-label{font-size:12px;margin-bottom:17px}
  .card p{font-size:14.5px;margin-bottom:24px}
  .button{max-width:none;min-height:52px;font-size:12px;letter-spacing:.08em}
  .help-box{grid-template-columns:1fr;padding:22px 20px;gap:18px;margin-top:32px}
  .help-copy{align-items:flex-start}
  .outline-button{width:100%}
  .modal{padding:18px}
  .modal-dialog{padding:30px 24px 26px}
  .modal-dialog h2{font-size:30px}
  .modal-dialog p{font-size:15px}
  .modal-actions{grid-template-columns:1fr}
  .modal-button{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}
  .card h2{font-size:28px}
  .card-body{padding-left:18px;padding-right:18px}
  .button{font-size:11px}
}
