
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bg:#f3ede6;
  --paper:#fbf7f1;
  --paper-2:#efe4d8;
  --ink:#211813;
  --muted:#77665a;
  --brown:#412d23;
  --brown-2:#6f4d39;
  --copper:#a87555;
  --line:rgba(70,48,35,.16);
  --line-soft:rgba(70,48,35,.09);
  --white-line:rgba(255,255,255,.24);
  --shadow:0 28px 80px rgba(42,27,19,.11);
  --shadow-soft:0 16px 50px rgba(42,27,19,.08);
  --radius-xl:34px;
  --radius-lg:26px;
  --radius-md:20px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 8% 2%, rgba(168,117,85,.08), transparent 25%),
    radial-gradient(circle at 92% 10%, rgba(111,77,57,.08), transparent 27%),
    linear-gradient(180deg,var(--bg),#eee4da);
  color:var(--ink);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.22;
  z-index:999;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.55) 0 1px, transparent 1.4px),
    radial-gradient(circle at 80% 12%, rgba(40,28,20,.10) 0 .8px, transparent 1.2px);
  background-size:24px 24px,32px 32px;
  mix-blend-mode:soft-light;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font:inherit}
.serif{font-family:"Cormorant Garamond",Georgia,serif;font-weight:400;letter-spacing:-.035em}
.shell{width:min(var(--max),calc(100% - 32px));margin:0 auto}
.topbar{
  position:sticky;
  top:14px;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:70px;
  margin-top:14px;
  padding:10px 12px 10px 16px;
  border:1px solid rgba(255,255,255,.65);
  border-radius:24px;
  background:rgba(251,247,241,.78);
  backdrop-filter:blur(18px);
  box-shadow:0 14px 44px rgba(42,27,19,.08);
}
.brand{display:flex;align-items:center;gap:12px;min-width:0}
.logo{
  width:44px;height:44px;border-radius:15px;
  display:grid;place-items:center;
  background:linear-gradient(145deg,#fffaf5,#eadfd4);
  border:1px solid var(--line);
  color:var(--brown);
  font-family:Georgia,serif;
  font-size:15px;
  letter-spacing:.08em;
}
.brand-copy{display:grid;gap:3px}
.brand-copy strong{font-size:11px;letter-spacing:.20em;text-transform:uppercase;color:var(--brown)}
.brand-copy span{font-size:12px;color:var(--muted)}
.nav{display:flex;align-items:center;gap:8px}
.nav a{
  min-height:42px;padding:0 15px;border-radius:14px;
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid var(--line-soft);
  font-size:9px;letter-spacing:.15em;text-transform:uppercase;font-weight:700;color:var(--brown);
  transition:.25s ease;
}
.nav a:hover{transform:translateY(-1px);border-color:var(--line)}
.nav .primary{background:var(--brown);color:#fff;border-color:var(--brown)}
.page{padding:28px 0 82px}
.eyebrow{
  margin:0;
  font-size:9px;
  letter-spacing:.24em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--brown-2);
}
.hero{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:18px;
  min-height:560px;
  margin-top:26px;
}
.hero-copy,.hero-media,.section-card,.detail-copy,.detail-media,.info-band,.footer{
  border-radius:var(--radius-xl);
  border:1px solid rgba(255,255,255,.62);
  background:rgba(251,247,241,.68);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-copy{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:58px 48px;
}
.hero-copy::before{
  content:"";
  position:absolute;
  width:300px;height:300px;border:1px solid var(--line);
  border-radius:50%;
  right:-150px;top:-135px;
}
.spark{width:34px;height:34px;margin-bottom:22px;color:var(--copper)}
.spark svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.15}
.hero h1{
  margin:12px 0 0;
  font-size:clamp(52px,7vw,84px);
  line-height:.88;
  max-width:690px;
}
.hero-sub{
  margin-top:20px;
  font-size:12px;
  letter-spacing:.19em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--brown-2);
}
.hero-text{
  max-width:540px;
  margin:26px 0 0;
  color:#5d4d42;
  font-size:15px;
  line-height:1.75;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:30px}
.btn{
  min-height:46px;
  padding:0 18px;
  border-radius:15px;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  background:var(--brown);color:#fff;
  font-size:9px;letter-spacing:.14em;text-transform:uppercase;font-weight:700;
  box-shadow:0 14px 30px rgba(65,45,35,.16);
}
.btn.alt{background:rgba(255,255,255,.55);color:var(--brown);border:1px solid var(--line);box-shadow:none}
.hero-media{position:relative;padding:14px;min-height:560px}
.hero-media::after{
  content:"";position:absolute;inset:28px;border:1px solid rgba(255,255,255,.44);
  border-radius:26px;pointer-events:none;
}
.hero-media img{width:100%;height:100%;object-fit:cover;border-radius:26px;object-position:center 16%}
.section-card{margin-top:20px;padding:34px 28px 28px}
.section-head{
  display:flex;align-items:flex-end;justify-content:space-between;gap:20px;
  margin:0 6px 22px;
}
.section-head h2{margin:8px 0 0;font-size:clamp(36px,5vw,58px);line-height:.92}
.section-note{font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);white-space:nowrap}
.path-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.path-card{
  position:relative;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  min-height:214px;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:var(--shadow-soft);
  transition:transform .3s ease,box-shadow .3s ease;
}
.path-card:hover{transform:translateY(-4px);box-shadow:0 24px 70px rgba(42,27,19,.15)}
.path-card.dark{background:linear-gradient(135deg,#38271f,#674837);color:#fff}
.path-card.light{background:linear-gradient(145deg,#fffaf4,#eee2d6)}
.path-copy{
  position:relative;z-index:2;
  display:flex;flex-direction:column;justify-content:center;align-items:flex-start;
  padding:25px 22px;
}
.card-num{font-size:9px;letter-spacing:.23em;text-transform:uppercase;font-weight:700;opacity:.68}
.path-card h3{margin:12px 0 0;font-size:clamp(26px,3vw,38px);line-height:.93}
.path-card.long h3{font-size:clamp(23px,2.45vw,32px);line-height:.96}
.path-card p{margin:10px 0 0;font-size:12.5px;line-height:1.5;max-width:340px;color:var(--muted)}
.path-card.dark p{color:rgba(255,255,255,.72)}
.card-link{
  display:inline-flex;align-items:center;gap:10px;margin-top:16px;
  font-size:9px;letter-spacing:.15em;text-transform:uppercase;font-weight:700;
}
.card-link span{
  width:33px;height:33px;border-radius:50%;display:grid;place-items:center;
  border:1px solid currentColor;opacity:.75;
  transition:transform .25s ease;
}
.path-card:hover .card-link span{transform:translateX(3px)}
.path-media{position:relative;min-height:214px;overflow:hidden}
.path-media img{width:100%;height:100%;object-fit:cover}
.path-media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(42,27,19,.18),transparent 25%,transparent 78%,rgba(42,27,19,.05));
  pointer-events:none;
}
.path-card.fav .path-media img{object-position:center 15%}
.path-card.manual .path-media img{object-position:center center}
.path-card.ano .path-media img{object-position:center center}
.path-card.consultoria .path-media img{object-position:center center}
.info-band{
  margin-top:20px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  min-height:230px;
}
.info-copy{padding:36px 40px;display:flex;flex-direction:column;justify-content:center}
.info-copy h2{margin:8px 0 0;font-size:clamp(36px,4.6vw,56px);line-height:.95}
.info-copy p{max-width:620px;margin:17px 0 0;color:var(--muted);font-size:14px;line-height:1.75}
.info-stats{
  display:grid;grid-template-columns:1fr 1fr;
  padding:18px;background:rgba(65,45,35,.94);color:#fff
}
.info-stat{
  min-height:95px;padding:16px;
  border:1px solid rgba(255,255,255,.12);
  display:flex;flex-direction:column;justify-content:flex-end
}
.info-stat strong{font-family:"Cormorant Garamond",Georgia,serif;font-weight:400;font-size:34px}
.info-stat span{font-size:8px;letter-spacing:.17em;text-transform:uppercase;color:rgba(255,255,255,.62)}
.footer{margin-top:20px;padding:30px;text-align:center}
.footer p{margin:0;color:var(--muted);font-size:13px;line-height:1.7}
.footer a{display:inline-flex;margin-top:10px;font-size:10px;letter-spacing:.15em;text-transform:uppercase;font-weight:700;color:var(--brown)}
.reveal{opacity:0;transform:translateY(16px);transition:opacity .6s ease,transform .6s ease}
.reveal.is-visible{opacity:1;transform:translateY(0)}
.progress{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,var(--brown),var(--copper));z-index:100}

/* Detail pages */
.detail-page{padding:28px 0 82px}
.detail-hero{
  display:grid;grid-template-columns:.86fr 1.14fr;gap:18px;
  min-height:560px;margin-top:26px;
}
.detail-copy{padding:52px 44px;display:flex;flex-direction:column;justify-content:center}
.back{
  display:inline-flex;align-items:center;gap:10px;
  margin-bottom:26px;
  color:var(--brown-2);
  font-size:9px;letter-spacing:.15em;text-transform:uppercase;font-weight:700;
}
.detail-copy h1{margin:12px 0 0;font-size:clamp(46px,6vw,76px);line-height:.88}
.detail-copy .lead{margin:24px 0 0;color:var(--muted);font-size:15px;line-height:1.75}
.detail-tags{display:flex;flex-wrap:wrap;gap:7px;margin-top:24px}
.detail-tag{padding:9px 11px;border:1px solid var(--line);border-radius:999px;font-size:8px;letter-spacing:.14em;text-transform:uppercase;color:var(--brown-2);font-weight:700}
.detail-media{padding:14px;min-height:560px}
.detail-media img{width:100%;height:100%;object-fit:cover;border-radius:26px}
.detail-media.fav img{object-position:center 13%}
.detail-media.manual img,.detail-media.ano img,.detail-media.consultoria img{object-position:center center}
.detail-points{
  display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:20px;
}
.point{
  padding:28px 24px;
  min-height:180px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.62);
  background:rgba(251,247,241,.68);
  box-shadow:var(--shadow-soft);
}
.point .n{font-size:9px;letter-spacing:.2em;text-transform:uppercase;color:var(--copper);font-weight:700}
.point h3{margin:16px 0 0;font-family:"Cormorant Garamond",Georgia,serif;font-weight:400;font-size:28px;line-height:1}
.point p{margin:12px 0 0;color:var(--muted);font-size:13px;line-height:1.65}
.detail-cta{
  margin-top:20px;padding:34px;
  display:flex;align-items:center;justify-content:space-between;gap:22px;
  border-radius:28px;
  background:linear-gradient(135deg,#38271f,#654736);color:#fff;
  box-shadow:var(--shadow);
}
.detail-cta h2{margin:0;font-size:clamp(32px,4.5vw,52px);line-height:.93}
.detail-cta p{margin:10px 0 0;color:rgba(255,255,255,.68);font-size:13px}
.detail-cta .btn{background:#fff;color:var(--brown);box-shadow:none;white-space:nowrap}

@media(max-width:920px){
  .hero,.detail-hero{grid-template-columns:1fr}
  .hero-copy,.hero-media,.detail-copy,.detail-media{min-height:auto}
  .hero-media,.detail-media{height:520px}
  .path-grid{grid-template-columns:1fr}
  .info-band{grid-template-columns:1fr}
}
@media(max-width:720px){
  .shell{width:min(var(--max),calc(100% - 18px))}
  .topbar{top:8px;margin-top:8px;min-height:62px;border-radius:20px}
  .brand-copy span,.nav a:not(.primary){display:none}
  .logo{width:38px;height:38px;border-radius:13px}
  .page,.detail-page{padding-top:16px}
  .hero,.detail-hero{margin-top:16px}
  .hero-copy,.detail-copy{padding:36px 23px;border-radius:28px}
  .hero h1,.detail-copy h1{font-size:48px}
  .hero-text,.detail-copy .lead{font-size:14px}
  .hero-media,.detail-media{height:420px;border-radius:28px}
  .section-card{padding:24px 14px 16px;border-radius:28px}
  .section-head{align-items:flex-start;flex-direction:column;margin:0 6px 16px}
  .section-note{white-space:normal}
  .path-card{grid-template-columns:1fr;min-height:0;border-radius:24px}
  .path-copy{padding:23px 20px 19px}
  .path-media{min-height:162px;height:162px;order:-1}
  .path-card h3{font-size:31px}
  .path-card.long h3{font-size:27px}
  .path-card.fav .path-media img{object-position:center 12%}
  .info-band{border-radius:28px}
  .info-copy{padding:30px 24px}
  .info-stats{grid-template-columns:1fr 1fr;padding:12px}
  .detail-points{grid-template-columns:1fr}
  .point{min-height:0}
  .detail-cta{align-items:flex-start;flex-direction:column;padding:28px 22px;border-radius:26px}
}

/* Upgrade premium das páginas internas */
.detail-page{padding:22px 0 74px}
.detail-hero{
  grid-template-columns:.92fr 1.08fr;
  min-height:500px;
  margin-top:20px;
}
.detail-copy{
  padding:44px 40px;
  background:
    radial-gradient(circle at 96% 8%,rgba(168,117,85,.10),transparent 26%),
    rgba(251,247,241,.72);
}
.detail-copy h1{
  font-size:clamp(44px,5.4vw,68px);
  line-height:.90;
  max-width:620px;
}
.detail-copy .lead{
  max-width:540px;
  margin-top:20px;
  font-size:14px;
  line-height:1.68;
}
.detail-tags{margin-top:20px}
.detail-media{
  min-height:500px;
  background:rgba(251,247,241,.68);
}
.detail-compact{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:18px;
}
.compact-card{
  min-height:144px;
  padding:24px 22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.62);
  background:rgba(251,247,241,.72);
  box-shadow:var(--shadow-soft);
}
.compact-card span{
  display:block;
  font-size:8px;
  letter-spacing:.19em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--copper);
}
.compact-card h3{
  margin:14px 0 0;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-weight:400;
  font-size:28px;
  line-height:1;
}
.compact-card p{
  margin:10px 0 0;
  color:var(--muted);
  font-size:12.5px;
  line-height:1.58;
}
.detail-cta{
  margin-top:18px;
  padding:30px 32px;
  background:
    radial-gradient(circle at 95% 20%,rgba(255,255,255,.12),transparent 25%),
    linear-gradient(135deg,#38271f,#654736);
}
.detail-cta h2{font-size:clamp(30px,4vw,46px)}
.detail-cta p{margin-top:8px}
@media(max-width:720px){
  .detail-hero{min-height:0}
  .detail-copy{padding:32px 22px}
  .detail-copy h1{font-size:44px}
  .detail-media{min-height:380px;height:380px}
  .detail-compact{grid-template-columns:1fr}
  .compact-card{min-height:0}
}

/* Ajustes solicitados pela cliente — V3 */
.hero-copy {
  padding: 50px 44px;
}
.hero-text {
  max-width: 620px;
  font-size: 15.2px;
}
.hero-text strong {
  color: var(--brown);
  font-weight: 600;
}
.hero-text .break {
  display: block;
  margin-top: 14px;
}
.hero-actions .btn.alt {
  display: none;
}
.path-card.fav .card-link::before {
  content: "";
}
.path-card.manual p {
  max-width: 390px;
}
.footer a.instagram-link {
  margin-left: 6px;
}
@media(max-width:720px){
  .hero {
    display: flex;
    flex-direction: column;
  }
  .hero-media {
    order: -1;
  }
  .hero-copy {
    padding: 32px 22px;
  }
  .hero-text {
    font-size: 14px;
    line-height: 1.72;
  }
}


/* V10 — hero moldurada, mais premium e menos solta */
body.home .hero.hero-connected.hero-premium{
  display:flex !important;
  flex-direction:column !important;
  gap:18px;
  min-height:0 !important;
  margin-top:22px;
}

body.home .hero-premium .hero-title{
  position:relative;
  border-radius:var(--radius-xl);
  border:1px solid rgba(255,255,255,.62);
  background:
    radial-gradient(circle at 92% 8%,rgba(168,117,85,.09),transparent 24%),
    rgba(251,247,241,.8);
  box-shadow:var(--shadow);
  overflow:hidden;
  padding:48px 48px 42px;
}

body.home .hero-premium .hero-title::after{
  content:"";
  position:absolute;
  width:310px;
  height:310px;
  border:1px solid var(--line);
  border-radius:50%;
  right:-120px;
  top:-90px;
  pointer-events:none;
}

body.home .hero-premium .hero-title::before{
  content:"✦";
  position:absolute;
  left:46px;
  top:30px;
  font-size:13px;
  color:var(--accent);
  opacity:.9;
}

body.home .hero-premium .hero-title h1{
  margin:18px 0 0;
  font-size:clamp(54px,7vw,86px);
  line-height:.88;
}

body.home .hero-premium .hero-sub{
  margin-top:18px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:13px;
  color:#745b4b;
}

body.home .hero-premium .story-card{
  position:relative;
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  border-radius:var(--radius-xl);
  border:1px solid rgba(255,255,255,.62);
  background:linear-gradient(180deg, rgba(251,247,241,.95), rgba(246,239,231,.84));
  box-shadow:var(--shadow);
  overflow:hidden;
  padding:22px;
}

body.home .hero-premium .story-card::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  border:1px solid rgba(170,130,101,.18);
  border-radius:50%;
  right:-110px;
  top:-85px;
  pointer-events:none;
}

body.home .hero-premium .story-card::after{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:calc(var(--radius-xl) - 10px);
  border:1px solid rgba(168,117,85,.10);
  pointer-events:none;
}

body.home .hero-premium .story-media-shell{
  position:relative;
  padding:0;
  display:flex;
  justify-content:center;
  z-index:1;
}

body.home .hero-premium .story-media-shell::before{
  content:"";
  position:absolute;
  left:28px;
  top:24px;
  width:48px;
  height:48px;
  border-top:1px solid rgba(168,117,85,.32);
  border-left:1px solid rgba(168,117,85,.32);
  border-top-left-radius:18px;
  pointer-events:none;
}

body.home .hero-premium .story-media-shell::after{
  content:"✦";
  position:absolute;
  right:42px;
  bottom:34px;
  font-size:14px;
  color:var(--accent);
  opacity:.75;
  pointer-events:none;
}

body.home .hero-premium .story-media{
  position:relative;
  width:min(100%, 470px);
  height:560px;
  min-height:560px;
  border-radius:36px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.02)),
    #e9ddd2;
  border:1px solid rgba(255,255,255,.55);
  box-shadow:
    inset 0 0 0 10px rgba(255,255,255,.18),
    0 18px 34px rgba(73,49,34,.10);
}

body.home .hero-premium .story-media::before{
  content:"";
  position:absolute;
  inset:14px;
  border:1px solid rgba(255,255,255,.42);
  border-radius:28px;
  z-index:2;
  pointer-events:none;
}

body.home .hero-premium .story-media::after{
  content:"";
  position:absolute;
  inset:auto 30px 18px 30px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  z-index:2;
  pointer-events:none;
}

body.home .hero-premium .story-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 14%;
  display:block;
  transform:scale(1.02);
}

body.home .hero-premium .story-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:18px 38px 12px;
  position:relative;
  z-index:2;
}

body.home .hero-premium .story-line{
  flex:1;
  max-width:160px;
  height:1px;
  background:rgba(168,117,85,.26);
}

body.home .hero-premium .story-star{
  font-size:16px;
  line-height:1;
  color:var(--accent);
  transform:translateY(-1px);
}

body.home .hero-premium .story-copy{
  position:relative;
  z-index:2;
  width:min(100%, 860px);
  margin:0 auto 6px;
  padding:28px 34px 34px;
  text-align:center;
  background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.34));
  border:1px solid rgba(168,117,85,.14);
  border-radius:30px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.55);
}

body.home .hero-premium .story-copy::before,
body.home .hero-premium .story-copy::after{
  content:"";
  position:absolute;
  top:22px;
  width:54px;
  height:1px;
  background:rgba(168,117,85,.28);
}

body.home .hero-premium .story-copy::before{ left:24px; }
body.home .hero-premium .story-copy::after{ right:24px; }

body.home .hero-premium .story-kicker{
  margin:0 0 16px;
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:11px;
  color:#8b725f;
}

body.home .hero-premium .story-copy .hero-text{
  margin:0 auto;
  max-width:760px;
  font-size:15.5px;
  line-height:1.82;
  color:#5d4d42;
}

body.home .hero-premium .story-copy .hero-text strong{
  color:var(--ink);
  font-weight:700;
}

body.home .hero-premium .story-copy .hero-text-small{
  margin-top:18px;
}

body.home .hero-premium .story-copy .hero-actions{
  margin-top:24px;
  display:flex;
  justify-content:center;
}

@media(max-width:720px){
  body.home .hero.hero-connected.hero-premium{
    margin-top:16px;
    gap:14px;
  }

  body.home .hero-premium .hero-title{
    padding:34px 22px 30px;
    border-radius:28px;
  }

  body.home .hero-premium .hero-title::before{
    left:22px;
    top:22px;
    font-size:12px;
  }

  body.home .hero-premium .hero-title h1{ font-size:48px; }

  body.home .hero-premium .hero-sub{
    font-size:12px;
    line-height:1.6;
  }

  body.home .hero-premium .story-card{
    padding:14px;
    border-radius:28px;
  }

  body.home .hero-premium .story-card::after{ inset:10px; border-radius:22px; }

  body.home .hero-premium .story-media-shell::before{
    left:16px;
    top:14px;
    width:38px;
    height:38px;
  }

  body.home .hero-premium .story-media-shell::after{
    right:24px;
    bottom:20px;
    font-size:12px;
  }

  body.home .hero-premium .story-media{
    width:100%;
    height:430px;
    min-height:430px;
    border-radius:28px;
  }

  body.home .hero-premium .story-media::before{
    inset:10px;
    border-radius:22px;
  }

  body.home .hero-premium .story-media img{ object-position:center 15%; }

  body.home .hero-premium .story-divider{
    gap:12px;
    padding:14px 20px 10px;
  }

  body.home .hero-premium .story-copy{
    padding:24px 18px 24px;
    border-radius:22px;
  }

  body.home .hero-premium .story-copy::before,
  body.home .hero-premium .story-copy::after{
    width:34px;
    top:18px;
  }

  body.home .hero-premium .story-copy::before{ left:16px; }
  body.home .hero-premium .story-copy::after{ right:16px; }

  body.home .hero-premium .story-copy .hero-text{
    font-size:14.5px;
    line-height:1.76;
  }

  body.home .hero-premium .story-kicker{
    margin-bottom:14px;
    font-size:10px;
  }

  body.home .hero-premium .story-line{ max-width:none; }
}


/* V11 — hero refinada, com foto moldurada e bloco mais conectado */
body.home .hero.hero-connected.hero-premium{
  gap:20px;
}

body.home .hero-premium .story-card{
  padding:22px 22px 20px;
  background:
    radial-gradient(circle at 10% 14%, rgba(168,117,85,.07), transparent 20%),
    radial-gradient(circle at 92% 86%, rgba(168,117,85,.05), transparent 24%),
    linear-gradient(180deg, rgba(251,247,241,.97), rgba(246,239,231,.88));
}

body.home .hero-premium .story-card::before{
  width:340px;
  height:340px;
  right:-135px;
  top:-110px;
  opacity:.9;
}

body.home .hero-premium .story-card::after{
  inset:12px;
  border-radius:calc(var(--radius-xl) - 8px);
  border:1px solid rgba(168,117,85,.12);
}

body.home .hero-premium .story-media-shell{
  padding:8px 0 0;
}

body.home .hero-premium .story-media-shell::before{
  left:52px;
  top:18px;
  width:62px;
  height:62px;
  border-top:1px solid rgba(168,117,85,.28);
  border-left:1px solid rgba(168,117,85,.28);
  border-top-left-radius:22px;
}

body.home .hero-premium .story-media-shell::after{
  right:56px;
  bottom:56px;
  font-size:15px;
  opacity:.85;
}

body.home .hero-premium .story-media{
  width:min(100%, 410px);
  height:520px;
  min-height:520px;
  border-radius:44px;
  border:1px solid rgba(255,255,255,.68);
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.02)),
    #e4d6ca;
  box-shadow:
    inset 0 0 0 12px rgba(255,255,255,.18),
    0 24px 40px rgba(73,49,34,.12);
}

body.home .hero-premium .story-media::before{
  inset:14px;
  border-radius:34px;
  border-color:rgba(255,255,255,.5);
}

body.home .hero-premium .story-media::after{
  inset:auto 36px 18px 36px;
}

body.home .hero-premium .story-media img{
  object-position:center 18%;
}

body.home .hero-premium .story-divider{
  position:relative;
  gap:18px;
  padding:12px 38px 0;
  margin-top:2px;
}

body.home .hero-premium .story-line{
  max-width:128px;
  background:rgba(168,117,85,.3);
}

body.home .hero-premium .story-star{
  font-size:15px;
  opacity:.95;
}

body.home .hero-premium .story-copy{
  width:min(100%, 760px);
  margin:-16px auto 6px;
  padding:32px 34px 34px;
  border-radius:0 0 30px 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(248,242,236,.94));
  border:1px solid rgba(168,117,85,.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 12px 22px rgba(73,49,34,.05);
}

body.home .hero-premium .story-copy::before,
body.home .hero-premium .story-copy::after{
  top:18px;
  width:62px;
  background:rgba(168,117,85,.28);
}

body.home .hero-premium .story-copy::before{ left:28px; }
body.home .hero-premium .story-copy::after{ right:28px; }

body.home .hero-premium .story-copy .hero-text{
  max-width:680px;
  font-size:15.7px;
  line-height:1.88;
}

body.home .hero-premium .story-copy .hero-text strong{
  display:block;
  margin-bottom:8px;
  font-size:19px;
}

body.home .hero-premium .story-copy .hero-text-small{
  margin-top:18px;
  font-size:15px;
  color:#725f52;
}

body.home .hero-premium .story-copy .hero-actions{
  margin-top:26px;
}

body.home .hero-premium .story-copy .btn{
  min-width:224px;
}

@media(max-width:720px){
  body.home .hero.hero-connected.hero-premium{
    gap:16px;
  }

  body.home .hero-premium .hero-title{
    padding:34px 22px 28px;
  }

  body.home .hero-premium .story-card{
    padding:12px 12px 16px;
    border-radius:28px;
  }

  body.home .hero-premium .story-card::before{
    width:260px;
    height:260px;
    right:-110px;
    top:-92px;
  }

  body.home .hero-premium .story-card::after{
    inset:9px;
    border-radius:21px;
  }

  body.home .hero-premium .story-media-shell{
    padding-top:8px;
  }

  body.home .hero-premium .story-media-shell::before{
    left:18px;
    top:14px;
    width:40px;
    height:40px;
    border-top-left-radius:14px;
  }

  body.home .hero-premium .story-media-shell::after{
    right:22px;
    bottom:36px;
    font-size:12px;
  }

  body.home .hero-premium .story-media{
    width:calc(100% - 28px);
    max-width:330px;
    height:392px;
    min-height:392px;
    border-radius:34px;
    box-shadow:
      inset 0 0 0 9px rgba(255,255,255,.18),
      0 18px 32px rgba(73,49,34,.12);
  }

  body.home .hero-premium .story-media::before{
    inset:10px;
    border-radius:26px;
  }

  body.home .hero-premium .story-media::after{
    inset:auto 24px 14px 24px;
  }

  body.home .hero-premium .story-media img{
    object-position:center 18%;
  }

  body.home .hero-premium .story-divider{
    padding:12px 18px 0;
    gap:12px;
  }

  body.home .hero-premium .story-line{
    max-width:none;
  }

  body.home .hero-premium .story-copy{
    width:calc(100% - 8px);
    margin:-8px auto 0;
    padding:26px 18px 24px;
    border-radius:0 0 24px 24px;
  }

  body.home .hero-premium .story-copy::before,
  body.home .hero-premium .story-copy::after{
    top:16px;
    width:36px;
  }

  body.home .hero-premium .story-copy::before{ left:16px; }
  body.home .hero-premium .story-copy::after{ right:16px; }

  body.home .hero-premium .story-copy .hero-text{
    font-size:14.5px;
    line-height:1.78;
  }

  body.home .hero-premium .story-copy .hero-text strong{
    font-size:17px;
    margin-bottom:6px;
  }

  body.home .hero-premium .story-copy .hero-text-small{
    font-size:14.2px;
    margin-top:16px;
  }

  body.home .hero-premium .story-copy .btn{
    width:100%;
    min-width:0;
  }
}


/* V12 — hero com moldura evidente, foto menos solta e bloco editorial mais premium */
body.home .hero.hero-connected.hero-premium{
  gap:20px;
}

body.home .hero-premium .story-card{
  position:relative;
  padding:18px 18px 20px;
  border-radius:34px;
  background:
    radial-gradient(circle at 12% 12%, rgba(168,117,85,.08), transparent 19%),
    radial-gradient(circle at 88% 84%, rgba(168,117,85,.06), transparent 22%),
    linear-gradient(180deg, rgba(251,247,241,.98), rgba(246,239,231,.92));
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 22px 42px rgba(73,49,34,.09);
}

body.home .hero-premium .story-card::before{
  width:350px;
  height:350px;
  right:-135px;
  top:-120px;
  opacity:.85;
}

body.home .hero-premium .story-card::after{
  inset:12px;
  border-radius:26px;
  border:1px solid rgba(168,117,85,.14);
}

body.home .hero-premium .story-media-shell{
  padding:0;
}

body.home .hero-premium .story-frame{
  position:relative;
  width:min(100%, 440px);
  margin:0 auto;
  padding:18px 18px 22px;
  border-radius:38px;
  background:linear-gradient(180deg, rgba(255,255,255,.60), rgba(249,242,236,.68));
  border:1px solid rgba(168,117,85,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    0 14px 26px rgba(73,49,34,.08);
}

body.home .hero-premium .story-frame::before,
body.home .hero-premium .story-frame::after{
  content:"";
  position:absolute;
  pointer-events:none;
}

body.home .hero-premium .story-frame::before{
  inset:10px;
  border-radius:30px;
  border:1px solid rgba(168,117,85,.10);
}

body.home .hero-premium .story-frame::after{
  width:78px;
  height:78px;
  left:14px;
  bottom:14px;
  border-left:1px solid rgba(168,117,85,.22);
  border-bottom:1px solid rgba(168,117,85,.22);
  border-bottom-left-radius:22px;
}

body.home .hero-premium .story-frame-top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:0 16px 14px;
}

body.home .hero-premium .story-frame-line{
  flex:1;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(168,117,85,.28), transparent);
}

body.home .hero-premium .story-frame-star{
  color:var(--accent);
  font-size:14px;
  line-height:1;
}

body.home .hero-premium .story-media{
  width:100%;
  max-width:none;
  height:520px;
  min-height:520px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.72);
  box-shadow:
    inset 0 0 0 10px rgba(255,255,255,.18),
    0 22px 36px rgba(73,49,34,.12);
}

body.home .hero-premium .story-media::before{
  inset:12px;
  border-radius:22px;
}

body.home .hero-premium .story-media::after{
  inset:auto 34px 16px 34px;
}

body.home .hero-premium .story-media img{
  object-position:center 14%;
}

body.home .hero-premium .story-divider{
  padding:14px 34px 4px;
  gap:16px;
}

body.home .hero-premium .story-copy{
  width:min(100%, 760px);
  margin:-8px auto 2px;
  padding:30px 32px 32px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,240,233,.95));
  border:1px solid rgba(168,117,85,.15);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    0 14px 24px rgba(73,49,34,.05);
}

body.home .hero-premium .story-copy::before,
body.home .hero-premium .story-copy::after{
  top:18px;
  width:56px;
  background:rgba(168,117,85,.27);
}

body.home .hero-premium .story-copy .hero-text{
  max-width:650px;
  font-size:15.8px;
  line-height:1.88;
}

body.home .hero-premium .story-copy .hero-text strong{
  display:block;
  font-size:19px;
  margin-bottom:8px;
}

@media(max-width:720px){
  body.home .hero.hero-connected.hero-premium{
    gap:16px;
  }

  body.home .hero-premium .hero-title{
    padding:34px 22px 24px;
  }

  body.home .hero-premium .story-card{
    padding:12px 12px 16px;
    border-radius:28px;
  }

  body.home .hero-premium .story-card::before{
    width:240px;
    height:240px;
    right:-92px;
    top:-88px;
  }

  body.home .hero-premium .story-card::after{
    inset:8px;
    border-radius:22px;
  }

  body.home .hero-premium .story-frame{
    width:100%;
    padding:12px 12px 16px;
    border-radius:28px;
  }

  body.home .hero-premium .story-frame::before{
    inset:8px;
    border-radius:22px;
  }

  body.home .hero-premium .story-frame::after{
    width:54px;
    height:54px;
    left:10px;
    bottom:10px;
    border-bottom-left-radius:16px;
  }

  body.home .hero-premium .story-frame-top{
    margin:0 10px 10px;
    gap:8px;
  }

  body.home .hero-premium .story-media{
    height:392px;
    min-height:392px;
    border-radius:24px;
    box-shadow:
      inset 0 0 0 8px rgba(255,255,255,.16),
      0 18px 28px rgba(73,49,34,.12);
  }

  body.home .hero-premium .story-media::before{
    inset:10px;
    border-radius:18px;
  }

  body.home .hero-premium .story-media::after{
    inset:auto 22px 12px 22px;
  }

  body.home .hero-premium .story-divider{
    padding:12px 18px 2px;
    gap:12px;
  }

  body.home .hero-premium .story-copy{
    width:100%;
    margin:-2px auto 0;
    padding:24px 18px 24px;
    border-radius:22px;
  }

  body.home .hero-premium .story-copy .hero-text{
    font-size:14.6px;
    line-height:1.78;
  }

  body.home .hero-premium .story-copy .hero-text strong{
    font-size:17px;
    margin-bottom:6px;
  }
}



/* V13 — Fav Outfit + tag premium do cupom */
.fav-title-row{display:flex;align-items:flex-end;flex-wrap:wrap;gap:10px 12px;margin-top:12px}.fav-title-row h3{margin:0!important}.coupon-tag{display:inline-flex;align-items:center;min-height:26px;padding:0 10px;margin-bottom:2px;border-radius:999px;border:1px solid rgba(255,255,255,.28);background:rgba(255,255,255,.10);color:rgba(255,255,255,.88);font-size:7px;letter-spacing:.16em;text-transform:uppercase;font-weight:700;white-space:nowrap}.path-card.light .coupon-tag{border-color:rgba(65,45,35,.18);background:rgba(65,45,35,.05);color:var(--brown-2)}@media(max-width:720px){.fav-title-row{align-items:center;gap:8px}.coupon-tag{min-height:24px;font-size:6.8px;padding:0 9px}}


/* FINAL — ajustes solicitados pela cliente */
body.home .hero.hero-connected.hero-premium{
  margin-top:18px;
}

body.home .hero-premium .story-card{
  margin-top:0;
}

body.home .section-card{
  margin-top:18px;
  padding-top:18px;
}

body.home .section-card .path-grid{
  margin-top:0;
}

.fav-title-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px 12px;
}

.coupon-tag{
  display:inline-flex;
  align-items:center;
  min-height:25px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(168,117,85,.24);
  background:rgba(255,255,255,.42);
  color:#8a6049;
  font-size:8px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:800;
}

@media(max-width:720px){
  body.home .hero.hero-connected.hero-premium{
    margin-top:12px;
  }
  body.home .section-card{
    margin-top:14px;
    padding-top:14px;
  }
  .coupon-tag{
    font-size:7.5px;
    min-height:23px;
  }
}

/* FINAL V2 — hub limpo e link interno correto para o manual */
body.home .section-card.links-only{
  margin-top:18px;
  padding-top:18px;
}
body.home .section-card.links-only .path-grid{
  margin-top:0;
}
.fav-title-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px 12px;
}
.coupon-tag{
  display:inline-flex;
  align-items:center;
  min-height:25px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(168,117,85,.24);
  background:rgba(255,255,255,.42);
  color:#8a6049;
  font-size:8px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:800;
}
@media(max-width:720px){
  body.home .section-card.links-only{
    margin-top:14px;
    padding-top:14px;
  }
}
