
:root{
  --paper:#fbf7ee;
  --paper-2:#f3ecdf;
  --ink:#2a1f1a;
  --muted:#695d55;
  --brown:#5a2b21;
  --brown-dark:#1d1b18;
  --terracotta:#c76949;
  --teal:#258f92;
  --yellow:#efbd2a;
  --line:#ddd2c2;
  --white:#fffdfa;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.5;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
h1,h2,h3,.serif{font-family:Georgia,"Times New Roman",serif;line-height:1.08;margin:0}
p{margin:0}
.container{width:min(calc(100% - 40px),var(--max));margin:auto}
.header{
  position:sticky;top:0;z-index:30;
  background:rgba(251,247,238,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(8px);
}
.nav{height:72px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}
.brand img{
  display:block;
  width:150px;
  height:auto;
  max-height:50px;
  object-fit:contain;
}
.navlinks{display:flex;gap:24px;align-items:center;font-size:14px}
.navlinks a:hover{opacity:.72}
.pill{padding:10px 17px;border-radius:999px;background:var(--teal);color:#fff;font-weight:700}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 20px;border-radius:999px;font-weight:700;font-size:14px;
  transition:.2s ease;border:1px solid transparent
}
.btn:hover{transform:translateY(-2px)}
.btn-brown{background:var(--brown);color:#fff}
.btn-teal{background:var(--teal);color:#fff}
.btn-yellow{background:var(--yellow);color:#33231d}
.btn-light{background:var(--white);border-color:var(--line);color:var(--ink)}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.cta-row .btn{min-height:46px}
.eyebrow{
  text-transform:uppercase;letter-spacing:3px;font-size:11px;font-weight:800;
  color:var(--terracotta);margin-bottom:18px
}
.grid-bg{
  background-color:var(--paper-2);
  background-image:
    linear-gradient(rgba(95,83,71,.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(95,83,71,.08) 1px,transparent 1px);
  background-size:24px 24px;
}
footer{background:var(--brown-dark);color:#fff;padding:50px 0 24px}
.footergrid{display:flex;justify-content:space-between;gap:40px;align-items:flex-start}
footer p{color:#d8d0c8;max-width:600px;font-size:14px}
.footer-bottom{border-top:1px solid #393631;margin-top:34px;padding-top:18px;display:flex;justify-content:space-between;font-size:12px;color:#d9d0c7}

/* HOME */
.home-hero{padding:86px 0 72px;min-height:650px;display:flex;align-items:center}
.home-grid{display:grid;grid-template-columns:1fr .95fr;gap:70px;align-items:center}
.home-copy h1{font-size:58px;margin-bottom:16px}
.home-copy .lead{font-size:21px;font-weight:700;max-width:620px;margin-bottom:16px}
.home-copy .sub{color:var(--muted);max-width:620px}
.home-photo-wrap{position:relative;min-height:500px}
.home-photo{
  position:absolute;right:28px;top:0;width:min(82%,430px);
  background:var(--white);padding:15px 15px 58px;border:1px solid var(--line);
  transform:rotate(-3deg);box-shadow:16px 18px 0 rgba(70,52,40,.11)
}
.home-photo img{width:100%;aspect-ratio:4/5;object-fit:cover;object-position:center top}
.photo-label{position:absolute;right:-12px;bottom:-16px;background:var(--brown);color:#fff;padding:14px 20px;font-family:Georgia,serif;font-style:italic}
.shape-y{position:absolute;right:0;top:10px;width:92px;height:92px;border-radius:50%;background:var(--yellow)}
.shape-t{position:absolute;left:15px;bottom:40px;width:90px;height:90px;border-radius:50%;border:18px solid var(--teal)}
.choice-section{padding:88px 0}
.choice-head{max-width:760px;margin-bottom:38px}
.choice-head h2{font-size:38px;margin-bottom:14px}
.choice-head p{color:var(--muted)}
.choice-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.choice-card{padding:34px;min-height:360px;display:flex;flex-direction:column;justify-content:space-between;position:relative;overflow:hidden}
.choice-card.enem{background:var(--yellow)}
.choice-card.rev{background:var(--teal);color:#fff}
.choice-card .num{font-family:Georgia,serif;font-size:70px;opacity:.14;position:absolute;right:24px;top:14px}
.choice-card h3{font-size:30px;margin-bottom:15px;max-width:360px}
.choice-card p{max-width:430px}
.choice-card .tag{display:inline-block;font-size:11px;text-transform:uppercase;letter-spacing:2px;font-weight:800;margin-bottom:20px}
.choice-card .btn{align-self:flex-start;margin-top:28px}
.about-strip{padding:80px 0;background:#fffdf8}
.about-grid{display:grid;grid-template-columns:.7fr 1.3fr;gap:60px;align-items:center}
.about-photo{background:#fff;border:1px solid var(--line);padding:12px;box-shadow:12px 14px 0 rgba(57,42,32,.08)}
.about-photo img{aspect-ratio:4/5;object-fit:cover;object-position:center 18%}
.about-text h2{font-size:32px;margin-bottom:18px}
.about-text p{color:var(--muted);max-width:700px}
.about-text p+p{margin-top:14px}

/* LANDINGS */
.landing-hero{padding:82px 0}
.landing-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:center}
.landing-copy h1{font-size:54px;margin-bottom:15px}
.landing-copy .lead{font-size:20px;font-weight:700;margin-bottom:15px}
.landing-copy .sub{color:var(--muted);max-width:620px;margin-bottom:25px}
.hero-card{
  padding:24px;background:var(--white);border:1px solid var(--line);
  box-shadow:14px 16px 0 rgba(57,42,32,.08);transform:rotate(2deg)
}
.hero-card img{width:100%;aspect-ratio:4/5;object-fit:cover;object-position:center 15%}
.section{padding:86px 0}
.section.alt{background:#fffdfa}
.section.dark{background:var(--brown);color:#fff}
.section-head{max-width:760px;margin-bottom:38px}
.section-head h2{font-size:36px;margin-bottom:13px}
.section-head p{color:var(--muted)}
.dark .section-head p{color:#e9dfd6}
.cards-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:#fff;border:1px solid var(--line);padding:26px}
.card h3{font-size:21px;margin-bottom:11px}
.card p{color:var(--muted);font-size:14px}
.dark .card{background:#6a3327;border-color:#865044;color:#fff}
.dark .card p{color:#eadfd6}
.checklist{list-style:none;margin:0;padding:0;display:grid;gap:11px}
.checklist li{position:relative;padding-left:24px;font-size:14px}
.checklist li:before{content:"✓";position:absolute;left:0;font-weight:900}
.offer-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:22px}
.offer-box{padding:30px;background:var(--yellow)}
.offer-box.teal{background:var(--teal);color:#fff}
.offer-box h3{font-size:25px;margin-bottom:16px}
.split-50{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:22px}
.timebox{background:rgba(255,255,255,.46);padding:20px;border:1px solid rgba(0,0,0,.08)}
.timebox strong{font-family:Georgia,serif;font-size:30px;display:block}
.price{font-family:Georgia,serif;font-size:46px;font-weight:700;line-height:1;margin:10px 0}
.discount{background:#fff;color:#2f211d;padding:20px;margin-top:20px}
.discount strong{display:block;font-size:28px;color:#176f72}
.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:20px}
.info{background:#fff;border:1px solid var(--line);padding:22px}
.info h3{font-size:18px;margin-bottom:8px}
.info p{font-size:13px;color:var(--muted)}
.service-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.service-card{background:#fff;border:1px solid var(--line);padding:30px}
.service-card h3{font-size:24px;margin-bottom:13px}
.service-card p{color:var(--muted);margin-bottom:18px}
.cta-band{padding:34px;background:var(--brown);color:#fff;display:flex;justify-content:space-between;align-items:center;gap:30px;margin-top:28px}
.cta-band h3{font-size:22px;margin-bottom:5px}
.cta-band p{color:#eadfd6;font-size:14px;max-width:700px}
.quote-note{font-family:Georgia,serif;font-style:italic;font-size:22px;color:var(--teal);margin-top:20px}
.small-note{font-size:12px;color:var(--muted);margin-top:10px}

/* mobile */
@media(max-width:900px){
  .navlinks a:not(.pill){display:none}
  .home-grid,.choice-grid,.about-grid,.landing-grid,.offer-grid,.service-grid{grid-template-columns:1fr}
  .cards-3,.info-grid{grid-template-columns:1fr}
  .home-hero{padding-top:58px}
  .home-photo-wrap{min-height:520px}
  .home-copy h1,.landing-copy h1{font-size:44px}
  .choice-head h2,.section-head h2{font-size:32px}
  .about-grid{gap:34px}
  .cta-band{align-items:flex-start;flex-direction:column}
}
@media(max-width:560px){
  .container{width:min(calc(100% - 28px),var(--max))}
  .home-photo{width:88%;right:0}
  .home-photo-wrap{min-height:470px}
  .home-copy h1,.landing-copy h1{font-size:38px}
  .choice-card{min-height:320px;padding:27px}
  .choice-card h3{font-size:26px}
  .split-50{grid-template-columns:1fr}
  .footergrid,.footer-bottom{flex-direction:column}
}


.footer-logo-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.footer-logo{
  width:96px;
  height:96px;
  object-fit:contain;
  border-radius:50%;
  box-shadow:0 8px 22px rgba(0,0,0,.18);
}
.brand-stamp{
  width:118px;
  height:118px;
  object-fit:contain;
  border-radius:50%;
  box-shadow:0 10px 25px rgba(54,40,31,.12);
}
.about-logo-row{
  margin-top:26px;
  display:flex;
  align-items:center;
  gap:18px;
}
.about-logo-row p{
  font-size:13px;
  color:var(--muted);
  max-width:360px;
}
@media(max-width:560px){
  .brand img{width:126px;max-height:44px}
  .footer-logo{width:72px;height:72px}
  .brand-stamp{width:96px;height:96px}
}


/* BLOG / CONTEÚDOS */
.blog-preview{
  padding:88px 0;
  background:#f6efe2;
  border-top:1px solid var(--line);
}
.blog-preview-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
  align-items:center;
}
.blog-preview-copy h2{
  font-size:36px;
  margin-bottom:14px;
}
.blog-preview-copy p{
  color:var(--muted);
  max-width:620px;
  margin-bottom:24px;
}
.post-card{
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:0 12px 0 rgba(57,42,32,.08);
  overflow:hidden;
}
.post-card img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  object-position:center;
}
.post-card-body{padding:24px}
.post-card-meta{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:800;
  color:var(--terracotta);
  margin-bottom:10px;
}
.post-card h3{font-size:26px;margin-bottom:10px}
.post-card p{color:var(--muted);font-size:14px;margin-bottom:18px}

.blog-hero{
  padding:76px 0 52px;
  background:#f6efe2;
}
.blog-hero .container{
  max-width:920px;
}
.blog-hero h1{
  font-size:52px;
  margin-bottom:16px;
}
.blog-hero .lead{
  font-size:20px;
  color:#4d433c;
  max-width:800px;
}
.blog-meta{
  margin-top:22px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:var(--terracotta);
  font-weight:800;
}
.article{
  padding:72px 0 90px;
  background:#fffdfa;
}
.article .container{
  max-width:920px;
}
.article p{
  font-size:17px;
  line-height:1.75;
  color:#433a34;
  margin-bottom:22px;
}
.article h2{
  font-size:34px;
  margin:44px 0 16px;
}
.article h3{
  font-size:24px;
  margin:32px 0 12px;
}
.article-highlight{
  background:var(--yellow);
  padding:28px;
  margin:32px 0;
  font-family:Georgia,serif;
  font-size:25px;
  line-height:1.3;
}
.article-list{
  display:grid;
  gap:12px;
  list-style:none;
  padding:0;
  margin:20px 0 30px;
}
.article-list li{
  background:#f5efe2;
  border-left:5px solid var(--teal);
  padding:16px 18px;
  font-size:16px;
}
.carousel-title{
  margin-top:46px;
}
.carousel-wrap{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(260px, 48%);
  gap:16px;
  overflow-x:auto;
  padding:8px 4px 18px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}
.carousel-wrap img{
  width:100%;
  border:1px solid var(--line);
  box-shadow:0 8px 20px rgba(57,42,32,.08);
  scroll-snap-align:start;
  background:#fff;
}
.article-cta{
  margin-top:46px;
  padding:30px;
  background:var(--teal);
  color:#fff;
}
.article-cta h3{margin:0 0 10px;color:#fff}
.article-cta p{color:#e9ffff;margin-bottom:18px}
.blog-index{
  padding:82px 0;
}
.blog-index h1{font-size:48px;margin-bottom:12px}
.blog-index .intro{color:var(--muted);max-width:680px;margin-bottom:36px}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.blog-grid .post-card h3{font-size:22px}

@media(max-width:900px){
  .blog-preview-grid{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr}
  .blog-hero h1,.blog-index h1{font-size:40px}
}
@media(max-width:560px){
  .carousel-wrap{grid-auto-columns:82%}
  .blog-hero h1,.blog-index h1{font-size:34px}
  .article p{font-size:16px}
}
