
:root{
  --marrom:#7A4E31;
  --marrom-escuro:#5D3A25;
  --rosa:#D88F96;
  --verde:#A3A05E;
  --creme:#F7EDE0;
  --creme-2:#FFF9F3;
  --terracota:#D99473;
  --texto:#5D4334;
  --muted:#8A6D5E;
  --borda:rgba(122,78,49,.14);
  --sombra:0 22px 60px rgba(122,78,49,.14);
  --sombra-soft:0 10px 30px rgba(122,78,49,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--texto);
  font-family:"Lora", serif;
  line-height:1.65;
  background:
    linear-gradient(rgba(255,249,243,.92),rgba(255,249,243,.92)),
    url("assets/fundo-neutro.png");
  background-size:cover;
  background-attachment:fixed;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(1140px,calc(100% - 40px));margin-inline:auto}

.topbar{
  background:var(--marrom);
  color:#fffaf4;
  text-align:center;
  padding:10px 16px;
  font-size:.92rem;
}

.header{
  position:sticky;
  top:0;
  z-index:30;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:16px clamp(20px,5vw,64px);
  background:rgba(255,249,243,.88);
  border-bottom:1px solid var(--borda);
  backdrop-filter:blur(14px);
}
.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.brand-script{
  color:var(--rosa);
  font-family:"Caveat", cursive;
  font-size:1.5rem;
}
.brand strong{
  color:var(--marrom);
  font-family:"Cormorant Garamond", serif;
  font-size:1.7rem;
}
.nav{
  display:flex;
  gap:24px;
  color:var(--muted);
  font-size:.94rem;
}
.nav a:hover{color:var(--marrom)}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 24px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  transition:all .2s ease;
}
.button:hover{
  transform:translateY(-2px);
  box-shadow:var(--sombra-soft);
}
.button-primary{
  background:linear-gradient(135deg,var(--marrom),var(--marrom-escuro));
  color:#fffaf4;
}
.button-outline{
  background:#fffaf4;
  color:var(--marrom);
  border-color:rgba(122,78,49,.18);
}
.button-cream{
  background:#fffaf4;
  color:var(--marrom);
}
.button-full{width:100%}

.eyebrow{
  margin:0 0 10px;
  color:var(--rosa);
  font-family:"Caveat", cursive;
  font-size:2rem;
  line-height:1;
  font-weight:700;
}
h1,h2,h3{
  margin:0;
  color:var(--marrom);
  font-family:"Cormorant Garamond", serif;
  line-height:1;
}
h1{
  font-size:clamp(3rem,6vw,5.5rem);
  letter-spacing:-.05em;
}
h2{
  font-size:clamp(2.4rem,4vw,4.1rem);
  letter-spacing:-.04em;
}
h3{
  font-size:1.75rem;
}
p{margin:16px 0 0}
.lead{max-width:640px;font-size:1.1rem}

.hero{padding:76px 0 88px}
.hero-grid,
.content-grid,
.visual-grid,
.offer-grid,
.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  align-items:center;
}

.soft-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}
.soft-tags span{
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,250,245,.82);
  border:1px solid var(--borda);
  box-shadow:var(--sombra-soft);
  font-size:.94rem;
}
.hero-cta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:18px;
  margin-top:30px;
}
.hero-cta p{
  max-width:320px;
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}

.image-card{
  overflow:hidden;
  border-radius:34px;
  background:#fffaf4;
  border:1px solid var(--borda);
  box-shadow:var(--sombra);
  display:flex;
  align-items:stretch;
}
.hero-image{
  min-height:540px;
  aspect-ratio: 4 / 3;
}
.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}
.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.section{padding:86px 0}

.center-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 42px;
}
.center-heading p{margin-inline:auto}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.benefit-card{
  padding:30px;
  border-radius:28px;
  background:rgba(255,250,245,.82);
  border:1px solid var(--borda);
  box-shadow:var(--sombra-soft);
  text-align:center;
}
.benefit-mark{
  display:inline-grid;
  place-items:center;
  width:56px;
  height:56px;
  margin-bottom:22px;
  border-radius:50%;
  background:rgba(216,143,150,.16);
  color:var(--rosa);
  font-size:1.5rem;
  border:1px solid rgba(216,143,150,.22);
}

.content{
  background:rgba(255,250,245,.55);
  border-top:1px solid var(--borda);
  border-bottom:1px solid var(--borda);
}
.included-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin:28px 0;
}
.included-list div{
  padding:18px;
  border-radius:22px;
  background:#fffaf4;
  border:1px solid var(--borda);
  box-shadow:var(--sombra-soft);
}
.included-list strong{
  display:block;
  color:var(--rosa);
  font-family:"Cormorant Garamond", serif;
  font-size:2.4rem;
  line-height:1;
}
.included-list span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:.93rem;
}

.soft-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
}
.soft-list li{
  position:relative;
  padding-left:28px;
  margin:10px 0;
}
.soft-list li::before{
  content:"♡";
  position:absolute;
  left:0;
  top:-2px;
  color:var(--rosa);
  font-weight:700;
}

.offer{
  padding-top:74px;
}
.offer-grid{
  padding:clamp(28px,5vw,54px);
  border-radius:38px;
  background:
    linear-gradient(135deg,rgba(255,249,243,.96),rgba(243,212,209,.45)),
    url("assets/fundo-neutro.png");
  background-size:cover;
  border:1px solid var(--borda);
  box-shadow:var(--sombra);
}
.price-card{
  padding:32px;
  border-radius:30px;
  background:rgba(255,250,245,.92);
  border:1px solid var(--borda);
  box-shadow:var(--sombra-soft);
  text-align:center;
}
.price-label{
  display:block;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.72rem;
  color:var(--muted);
  font-weight:700;
}
.price{
  display:block;
  margin:8px 0 6px;
  color:var(--marrom);
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(3.6rem,6vw,5.5rem);
  line-height:.9;
}
.price-card p{color:var(--muted)}
.price-card small{
  display:block;
  margin-top:12px;
  color:var(--muted);
  font-size:.8rem;
}

.faq-list{
  display:grid;
  gap:12px;
}
.faq-list details{
  padding:18px 20px;
  border-radius:20px;
  background:rgba(255,250,245,.82);
  border:1px solid var(--borda);
  box-shadow:var(--sombra-soft);
}
.faq-list summary{
  cursor:pointer;
  font-weight:700;
  color:var(--marrom);
}
.faq-list p{color:var(--muted)}

.final-cta{
  padding:86px 0;
  text-align:center;
  color:#fffaf4;
  background:
    linear-gradient(rgba(122,78,49,.92),rgba(122,78,49,.92)),
    url("assets/hero-principal.png");
  background-size:cover;
  background-position:center;
}
.final-cta-wrap{max-width:820px}
.final-cta .script{
  margin:0 0 8px;
  color:#ffdfe1;
  font-family:"Caveat", cursive;
  font-size:2rem;
}
.final-cta h2{color:#fffaf4}
.final-cta p:not(.script){color:rgba(255,250,245,.9)}

.footer{
  padding:36px 0;
  background:#fffaf4;
  border-top:1px solid var(--borda);
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:24px;
}
.footer p{
  max-width:520px;
  color:var(--muted);
  margin-top:8px;
}
.footer-links{text-align:right}
.footer-links a{
  display:block;
  color:var(--marrom);
  margin:5px 0;
  font-weight:700;
}

@media (max-width: 980px){
  .nav{display:none}
  .hero-grid,
  .content-grid,
  .visual-grid,
  .offer-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }
  .benefits-grid{grid-template-columns:1fr}
}
@media (max-width: 680px){
  .header{
    flex-direction:column;
    align-items:flex-start;
  }
  .button-outline{width:100%}
  h1{font-size:clamp(2.9rem,13vw,4.5rem)}
  .included-list{
    grid-template-columns:1fr;
  }
  .hero-cta .button,
  .hero-cta p{
    width:100%;
    text-align:center;
  }
  .footer-grid{
    flex-direction:column;
  }
  .footer-links{text-align:left}
}


.brand-logo-link{
  display:flex;
  align-items:center;
  line-height:0;
}

.brand-logo-link img{
  width:240px;
  max-width:42vw;
  height:auto;
  display:block;
}

.footer-brand-logo{
  display:inline-block;
  margin-bottom:8px;
  line-height:0;
}

.footer-brand-logo img{
  width:240px;
  max-width:100%;
  height:auto;
  display:block;
}

@media (max-width: 680px){
  .brand-logo-link img{
    width:210px;
    max-width:100%;
  }
  .footer-brand-logo img{
    width:210px;
  }
}


.aci-seal{
  width:82px;
  height:82px;
  object-fit:contain;
  margin:0 auto 18px;
  display:block;
  border-radius:50%;
  background:rgba(255,250,245,.12);
}

@media (max-width: 680px){
  .aci-seal{
    width:70px;
    height:70px;
  }
}


/* AJUSTE FINAL DO LOGO NO CABEÇALHO — bem pequeno */
.header{
  padding: 8px clamp(14px, 4vw, 32px) !important;
  min-height: 58px !important;
}

.brand-logo-link{
  display: flex !important;
  align-items: center !important;
  line-height: 0 !important;
  flex: 0 0 auto !important;
}

.brand-logo-link img{
  width: 128px !important;
  max-width: 32vw !important;
  height: auto !important;
  max-height: 42px !important;
  object-fit: contain !important;
  display: block !important;
}

.footer-brand-logo img{
  width: 160px !important;
  max-width: 70% !important;
  height: auto !important;
  max-height: 54px !important;
  object-fit: contain !important;
}

.aci-seal{
  width: 58px !important;
  height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
  object-fit: contain !important;
}

@media (max-width: 680px){
  .header{
    padding: 8px 14px !important;
    min-height: 54px !important;
  }

  .brand-logo-link img{
    width: 104px !important;
    max-height: 36px !important;
  }

  .footer-brand-logo img{
    width: 135px !important;
    max-height: 48px !important;
  }
}


/* AJUSTE SOLICITADO — logo do ebook pela metade */
.header{
  padding: 5px clamp(12px, 3vw, 24px) !important;
  min-height: 38px !important;
}

.brand-logo-link img{
  width: 64px !important;
  max-width: 24vw !important;
  max-height: 21px !important;
}

.nav{
  font-size: .86rem !important;
  gap: 18px !important;
}

.header .button,
.button-outline{
  min-height: 36px !important;
  padding: 8px 14px !important;
  font-size: .86rem !important;
}

@media (max-width: 680px){
  .header{
    padding: 6px 12px !important;
    min-height: 38px !important;
  }

  .brand-logo-link img{
    width: 58px !important;
    max-height: 19px !important;
  }

  .header .button,
  .button-outline{
    min-height: 34px !important;
    padding: 7px 12px !important;
    font-size: .84rem !important;
  }
}
