:root{
  --bg:#f7fbff;
  --surface:#ffffff;
  --surface-2:#f1f7ff;
  --text:#0b1b35;
  --muted:#5b6b82;
  --border:#dbe7f5;
  --blue:#0f62fe;
  --blue-2:#0b4fd3;
  --green:#17c964;
  --green-2:#0fb755;
  --orange:#f97316;
  --purple:#7c3aed;
  --red:#ef4444;
  --shadow:0 20px 50px rgba(11, 27, 53, .10);
  --shadow-soft:0 12px 30px rgba(11, 27, 53, .08);
  --radius:24px;
  --radius-sm:16px;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#ffffff 0%,#f7fbff 28%,#ffffff 100%);
  line-height:1.5;
}
img,svg{max-width:100%}
a{color:inherit;text-decoration:none}
button,input,select{font:inherit}
.container{
  width:min(var(--container),calc(100% - 40px));
  margin-inline:auto;
}
.section{padding:76px 0}
.section.compact{padding:42px 0}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(42px,6vw,72px);
  line-height:.98;
  letter-spacing:-.055em;
  margin-bottom:26px;
}
h2{
  font-size:clamp(25px,3vw,36px);
  letter-spacing:-.035em;
  text-align:center;
  margin-bottom:30px;
}
h3{font-size:18px;letter-spacing:-.02em}
p{color:var(--muted)}
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(219,231,245,.8);
}
.nav-wrap{
  min-height:74px;
  display:flex;
  align-items:center;
  gap:28px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  font-size:24px;
  letter-spacing:-.04em;
}
.brand-icon{
  width:34px;
  height:34px;
  color:var(--blue);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.nav-menu{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:34px;
  font-weight:700;
  font-size:14px;
}
.nav-menu a{color:#1c2d46}
.nav-menu a:hover{color:var(--blue)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:58px;
  padding:0 28px;
  border-radius:13px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 14px 26px rgba(15,98,254,.22);
}
.btn-primary:hover{
  transform:translateY(-2px);
  background:var(--blue-2);
  box-shadow:0 18px 30px rgba(15,98,254,.28);
}
.btn-secondary{
  background:#fff;
  color:var(--blue);
  border-color:rgba(15,98,254,.45);
}
.btn-secondary:hover{border-color:var(--blue); transform:translateY(-2px)}
.btn-small{
  min-height:44px;
  padding:0 20px;
  border-radius:11px;
  font-size:14px;
}
.btn-white{
  background:#fff;
  color:var(--text);
  box-shadow:0 12px 24px rgba(0,0,0,.12);
}
.menu-toggle{
  display:none;
  margin-left:auto;
  border:0;
  background:transparent;
  padding:8px;
}
.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:var(--text);
  margin:5px 0;
  border-radius:99px;
}

.hero{
  position:relative;
  overflow:hidden;
  padding:58px 0 72px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 70% 20%, rgba(15,98,254,.10), transparent 30%),
    radial-gradient(circle at 14% 12%, rgba(23,201,100,.08), transparent 24%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:70px;
  align-items:center;
}
.badge{
  display:inline-flex;
  align-items:center;
  background:#eaf3ff;
  color:var(--blue);
  font-weight:800;
  padding:8px 14px;
  border-radius:999px;
  margin-bottom:24px;
  font-size:14px;
}
.hero-subtitle{
  max-width:620px;
  font-size:20px;
  line-height:1.7;
  margin-bottom:34px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-bottom:26px;
}
.play-icon{
  width:25px;
  height:25px;
  display:grid;
  place-items:center;
  border:1px solid rgba(15,98,254,.4);
  border-radius:50%;
  font-size:10px;
}
.trust-line{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  font-size:14px;
}
.hero-visual{
  position:relative;
  min-height:560px;
}
.hero-bg-dot{
  position:absolute;
  width:8px;height:8px;
  border-radius:50%;
  background:rgba(15,98,254,.18);
  box-shadow:
    26px 0 rgba(15,98,254,.18),52px 0 rgba(15,98,254,.18),78px 0 rgba(15,98,254,.18),
    0 26px rgba(15,98,254,.18),26px 26px rgba(15,98,254,.18),52px 26px rgba(15,98,254,.18),78px 26px rgba(15,98,254,.18),
    0 52px rgba(15,98,254,.18),26px 52px rgba(15,98,254,.18),52px 52px rgba(15,98,254,.18),78px 52px rgba(15,98,254,.18);
}
.dot-one{right:8%;top:10%}
.dot-two{right:20%;bottom:20%}
.app-card{
  width:min(440px,100%);
  margin:0 auto;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.app-topbar{
  display:flex;
  align-items:center;
  gap:12px;
  padding:18px 22px;
  border-bottom:1px solid var(--border);
  background:linear-gradient(180deg,#fff,#f8fbff);
}
.app-topbar strong{font-size:17px}
.bell{margin-left:auto;color:#65758b}
.app-body{padding:22px}
.app-body label{
  display:block;
  font-weight:800;
  color:#20314d;
  margin:0 0 8px;
  font-size:14px;
}
.fake-input{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:1px solid #cfdced;
  border-radius:12px;
  padding:13px 15px;
  color:#31415a;
  background:#fff;
  margin-bottom:16px;
}
.product-preview{
  display:grid;
  grid-template-columns:86px 1fr;
  gap:15px;
  padding:15px;
  border:1px solid #edf2f7;
  border-radius:15px;
  box-shadow:0 8px 18px rgba(11,27,53,.06);
  margin-bottom:18px;
}
.product-img{
  border-radius:14px;
  background:#f3f7fb;
  display:grid;
  place-items:center;
}
.product-preview p{font-size:13px;margin:3px 0 6px}
.price{display:block;color:var(--green);font-weight:900;font-size:20px}
.product-preview small{display:block;color:#65758b;font-weight:700}
.chips{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:18px}
.chip{
  padding:8px 12px;
  border-radius:10px;
  border:1px solid;
  font-weight:800;
  font-size:13px;
}
.chip-whatsapp{color:#128c4a;background:#eafbf1;border-color:#b8edcd}
.chip-telegram{color:#1476c9;background:#eef7ff;border-color:#bee2ff}
.chip-instagram{color:#c026d3;background:#fff0fb;border-color:#f0bdf2}
.generated-post{
  border:1px solid #d8e3f0;
  background:#fbfdff;
  border-radius:13px;
  padding:14px;
  font-size:13px;
  color:#31415a;
  margin-bottom:14px;
}
.copy-button{
  width:100%;
  min-height:50px;
  border:0;
  border-radius:10px;
  color:#fff;
  background:linear-gradient(135deg,#17c964,#0fb755);
  font-weight:900;
  cursor:pointer;
}
.stat-card{
  position:absolute;
  right:0;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
  border-radius:18px;
  padding:20px;
  width:172px;
}
.stat-card span,.stat-card small{display:block;color:#50617a;font-weight:700}
.stat-card strong{
  display:block;
  font-size:44px;
  letter-spacing:-.07em;
  color:var(--text);
  line-height:1;
  margin:8px 0 6px;
}
.stat-clicks{top:62px}
.stat-clicks strong{color:#16a34a}
.stat-clicks svg{margin-top:10px}
.stat-posts{top:260px}
.stat-posts::before{
  content:"📄";
  display:grid;
  place-items:center;
  width:46px;height:46px;
  border-radius:12px;
  background:#eaf3ff;
  margin-bottom:12px;
}

.card-grid{
  display:grid;
  gap:24px;
}
.pain-grid,.benefit-grid{grid-template-columns:repeat(5,1fr)}
.mini-card,.benefit-card,.audience-grid article{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  min-height:158px;
  padding:28px 20px;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  box-shadow:0 10px 26px rgba(11,27,53,.055);
}
.mini-card p{
  color:var(--text);
  font-weight:800;
  font-size:15px;
  line-height:1.35;
  margin:14px 0 0;
}
.icon,.benefit-card span,.audience-icon{
  font-size:36px;
  line-height:1;
}
.blue{color:var(--blue)}
.orange{color:var(--orange)}
.purple{color:var(--purple)}
.red{color:var(--red)}
.green{color:var(--green)}
.benefit-card{
  border-color:#bfe8d2;
  background:linear-gradient(180deg,#fff,#fbfffd);
}
.benefit-card h3{
  font-size:16px;
  line-height:1.35;
  margin:16px 0 0;
}

.steps{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  margin-top:10px;
}
.steps::before{
  content:"";
  position:absolute;
  top:24px;
  left:10%;
  right:10%;
  border-top:2px dashed #c9dcf5;
  z-index:0;
}
.step{
  position:relative;
  z-index:1;
  text-align:center;
  background:transparent;
}
.step-number{
  width:44px;height:44px;
  margin:0 auto 18px;
  display:grid;
  place-items:center;
  background:var(--blue);
  color:#fff;
  border-radius:50%;
  font-weight:900;
  box-shadow:0 8px 18px rgba(15,98,254,.22);
}
.step-icon{
  font-size:34px;
  display:block;
  margin-bottom:10px;
}
.step p{
  max-width:150px;
  margin:0 auto;
  color:var(--text);
  font-weight:800;
}

.section-subtitle{
  text-align:center;
  max-width:840px;
  margin:-12px auto 30px;
}
.audience-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}
.audience-grid article{
  min-height:170px;
  background:linear-gradient(180deg,#fff,#f7fbff);
}
.audience-grid h3{margin:18px 0 0}

.important-box{
  display:flex;
  gap:22px;
  align-items:center;
  margin-top:34px;
  padding:24px 28px;
  background:#fff9eb;
  border:1px solid #f5d99a;
  border-radius:20px;
}
.important-icon{
  font-size:44px;
  flex:0 0 auto;
}
.important-box h3{margin:0 0 4px}
.important-box p{margin:0;color:#31415a;font-weight:600}

.beta-section{padding-top:38px}
.beta-card{
  display:grid;
  grid-template-columns:.8fr 1.45fr;
  gap:36px;
  align-items:center;
  padding:38px;
  background:linear-gradient(135deg,#eef7ff,#ffffff);
  border:1px solid var(--border);
  border-radius:26px;
  box-shadow:0 14px 40px rgba(11,27,53,.08);
}
.beta-card h2{text-align:left;margin-bottom:14px}
.beta-copy p{font-size:17px;max-width:360px}
.signup-form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:26px;
  box-shadow:var(--shadow-soft);
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}
.form-row-last{align-items:end}
.signup-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
  color:#21324c;
  font-weight:800;
  font-size:14px;
}
.signup-form input,.signup-form select{
  min-height:50px;
  border:1px solid #cfdced;
  border-radius:10px;
  padding:0 14px;
  color:#263852;
  background:#fff;
}
.signup-form input:focus,.signup-form select:focus{
  outline:3px solid rgba(15,98,254,.14);
  border-color:var(--blue);
}
.form-submit{width:100%;height:50px;margin-bottom:0}
.form-note{
  font-size:13px;
  font-weight:700;
  margin:4px 0 0;
}

.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
details{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px 20px;
  box-shadow:0 8px 20px rgba(11,27,53,.04);
}
summary{
  cursor:pointer;
  font-weight:900;
  color:var(--text);
}
details p{margin:12px 0 0}

.final-cta{
  padding:40px 0 20px;
}
.final-cta-inner{
  display:flex;
  align-items:center;
  gap:24px;
  background:linear-gradient(135deg,#0f62fe,#17c964);
  color:#fff;
  border-radius:24px;
  padding:26px 34px;
  box-shadow:0 22px 50px rgba(15,98,254,.18);
}
.final-cta h2{
  text-align:left;
  color:#fff;
  margin:0;
  flex:1;
  font-size:28px;
}
.rocket{
  width:72px;height:72px;
  display:grid;
  place-items:center;
  font-size:34px;
  background:rgba(255,255,255,.14);
  border-radius:50%;
}
.site-footer{
  padding:22px 0 34px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.footer-brand{font-size:20px}
.footer-links{
  display:flex;
  gap:28px;
  color:#44556d;
  font-weight:700;
  font-size:14px;
}

.thanks-page{
  min-height:100vh;
  background:radial-gradient(circle at top right,rgba(15,98,254,.12),transparent 35%),linear-gradient(180deg,#fff,#f7fbff);
}
.thanks-wrap{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:28px;
}
.thanks-card{
  width:min(600px,100%);
  text-align:center;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  border-radius:28px;
  padding:48px 34px;
}
.thanks-brand{
  justify-content:center;
  margin-bottom:22px;
}
.thanks-icon{font-size:54px;margin-bottom:18px}
.thanks-card h1{
  font-size:42px;
  margin-bottom:16px;
}
.thanks-card p{
  font-size:18px;
  margin-bottom:30px;
}

@media (max-width: 1060px){
  .nav-menu{display:none}
  .menu-toggle{display:block}
  .nav-wrap > .btn-small{margin-left:auto}
  .hero-grid{grid-template-columns:1fr;gap:42px}
  .hero-copy{text-align:center}
  .hero-subtitle{margin-inline:auto}
  .hero-actions{justify-content:center}
  .trust-line{justify-content:center}
  .hero-visual{min-height:auto;padding-right:0}
  .stat-card{position:static;display:inline-block;margin:18px 8px 0;vertical-align:top}
  .hero-visual{text-align:center}
  .app-card{text-align:left}
  .pain-grid,.benefit-grid{grid-template-columns:repeat(2,1fr)}
  .audience-grid{grid-template-columns:repeat(2,1fr)}
  .beta-card{grid-template-columns:1fr}
  .beta-card h2,.beta-copy{text-align:center}
  .beta-copy p{margin-inline:auto}
}
@media (max-width: 760px){
  .container{width:min(100% - 28px,var(--container))}
  .section{padding:54px 0}
  .section.compact{padding:32px 0}
  .nav-wrap{min-height:68px}
  .brand{font-size:20px}
  .nav-wrap > .btn-small{display:none}
  h1{font-size:42px}
  h2{font-size:25px}
  .hero{padding-top:40px}
  .hero-subtitle{font-size:17px}
  .hero-actions .btn{width:100%}
  .app-body{padding:17px}
  .product-preview{grid-template-columns:70px 1fr}
  .pain-grid,.benefit-grid,.audience-grid,.faq-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr;gap:24px}
  .steps::before{display:none}
  .step{
    display:grid;
    grid-template-columns:44px 42px 1fr;
    align-items:center;
    gap:14px;
    text-align:left;
  }
  .step-number{margin:0}
  .step-icon{margin:0}
  .step p{max-width:none;margin:0}
  .important-box{align-items:flex-start;padding:20px;gap:14px}
  .beta-card{padding:24px}
  .signup-form{padding:20px}
  .form-row{grid-template-columns:1fr}
  .final-cta-inner{
    flex-direction:column;
    text-align:center;
    padding:28px 22px;
  }
  .final-cta h2{text-align:center;font-size:24px}
  .footer-inner{flex-direction:column}
}
@media (max-width: 420px){
  h1{font-size:38px}
  .btn{min-height:54px;padding-inline:20px}
  .mini-card,.benefit-card,.audience-grid article{min-height:auto}
}

/* Posta Afiliado v2 adjustments */
.brand-with-logo{gap:10px}
.brand-logo-img{
  width:42px;
  height:42px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 6px 14px rgba(15,98,254,.14);
  flex:0 0 auto;
}
.footer-brand .brand-logo-img{width:36px;height:36px;border-radius:10px}
.hero-logo-panel{
  display:flex;
  justify-content:center;
  margin-bottom:18px;
  padding:10px;
  border-radius:18px;
  background:linear-gradient(135deg,#061a60,#0737bd);
  border:1px solid rgba(15,98,254,.18);
}
.hero-logo-panel img{
  display:block;
  width:min(180px,58%);
  height:auto;
  border-radius:18px;
  box-shadow:0 12px 28px rgba(2,6,23,.20);
}
.chips-expanded .chip{font-size:12px;padding:7px 10px}
.chip-facebook{color:#0f62fe;background:#eef5ff;border-color:#b8d6ff}
.chip-threads{color:#111827;background:#f3f4f6;border-color:#d1d5db}
.generated-post-tabs strong{color:#0f62fe}
.stat-card strong{
  font-size:30px;
  letter-spacing:-.045em;
  line-height:1.05;
}
.pain-grid-v2 .mini-card p,
.benefit-grid-v2 .benefit-card h3{font-size:15px}
.final-cta-inner{background:linear-gradient(135deg,#061a60,#0f62fe 50%,#17c964)}
@media (max-width: 760px){
  .brand-logo-img{width:36px;height:36px;border-radius:10px}
  .brand-with-logo span{font-size:18px}
  .hero-logo-panel img{width:min(150px,60%)}
  .stat-card strong{font-size:26px}
}
