*{box-sizing:border-box}
html{scroll-behavior:smooth}
:root{
  --bg:#060a12;
  --bg-soft:#0a101b;
  --surface:#0f1624;
  --surface-2:#131c2d;
  --surface-3:#162236;
  --line:rgba(255,255,255,.08);
  --line-strong:rgba(255,255,255,.12);
  --text:#ffffff;
  --text-soft:#e8eef8;
  --muted:#c7d2e4;
  --muted-2:#a6b3c8;
  --blue:#2f6df6;
  --blue-2:#4b84ff;
  --blue-deep:#103a8c;
  --blue-panel:#0d2b63;
  --warm:#f59e0b;
  --success-bg:#11281d;
  --success:#7ef0b1;
  --pending-bg:#3f3112;
  --pending:#ffd56f;
  --analysis-bg:#152947;
  --analysis:#9ec2ff;
  --shadow:0 24px 60px rgba(0,0,0,.35);
}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  background:linear-gradient(180deg,#060a12 0%,#080d16 100%);
  color:var(--text);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 32px));margin:0 auto}

.header{
  position:sticky;top:0;z-index:30;
  background:rgba(8,13,22,.86);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:84px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.brand img{height:54px}
.menu{
  display:flex;gap:28px;
  color:var(--text-soft);font-weight:700;
}
.menu a{opacity:.88}
.menu a:hover{opacity:1;color:#fff}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 22px;border-radius:14px;
  font-weight:800;border:1px solid transparent;
  transition:.25s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  color:#fff;
  box-shadow:0 14px 34px rgba(47,109,246,.22);
}
.btn-light{
  background:var(--surface);
  color:#fff;
  border-color:var(--line-strong);
}
.btn-outline{
  background:transparent;
  color:#fff;
  border-color:var(--line-strong);
}

.hero{
  background:
    radial-gradient(circle at 85% 15%, rgba(47,109,246,.14), transparent 30%),
    radial-gradient(circle at 10% 10%, rgba(245,158,11,.08), transparent 24%),
    linear-gradient(180deg,#060a12 0%,#080d16 100%);
  padding:76px 0 58px;
}
.hero-grid{
  display:grid;grid-template-columns:1.03fr .97fr;gap:34px;align-items:center;
}
.eyebrow{
  display:inline-flex;align-items:center;
  padding:10px 14px;border-radius:999px;
  background:rgba(47,109,246,.12);
  border:1px solid rgba(89,136,255,.22);
  color:var(--text-soft);
  font-size:13px;font-weight:800;
}
.eyebrow.soft{
  background:rgba(47,109,246,.10);
  border-color:rgba(89,136,255,.18);
  color:var(--text-soft);
}
.eyebrow.warm{
  background:rgba(245,158,11,.12);
  border:1px solid rgba(245,158,11,.20);
  color:#ffe6b3;
}
.hero h1{
  margin:18px 0 18px;
  font-size:clamp(38px,5vw,64px);
  line-height:1.04;
  letter-spacing:-0.03em;
  color:#fff;
}
.hero h1 span{color:#82a7ff}
.hero p{
  margin:0;
  max-width:690px;
  color:var(--muted);
  font-size:18px;
  line-height:1.76;
}
.hero-actions{
  display:flex;flex-wrap:wrap;gap:14px;
  margin:28px 0 24px;
}
.hero-tags{
  display:flex;flex-wrap:wrap;gap:10px;
}
.hero-tags span{
  padding:10px 14px;border-radius:999px;
  background:var(--surface);
  border:1px solid var(--line);
  color:var(--text-soft);
  font-size:14px;font-weight:700;
}

.panel{
  background:linear-gradient(180deg,#0d2b63 0%,#0a214d 100%);
  color:#fff;
  border-radius:28px;
  padding:24px;
  border:1px solid rgba(153,194,255,.12);
  box-shadow:0 28px 70px rgba(0,0,0,.34);
}
.panel-head{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  margin-bottom:18px;
}
.panel-head strong{font-size:18px;color:#fff}
.panel-head span{
  padding:8px 10px;border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#dce7ff;font-size:12px;font-weight:800;
}
.stats-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;
  margin-bottom:18px;
}
.stat-box{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:18px;
}
.stat-box small{
  display:block;
  color:#dbe7ff;
  font-size:12px;
  margin-bottom:8px;
}
.stat-box strong{
  display:block;
  font-size:28px;
  line-height:1.1;
  color:#fff;
}
.stat-box span{
  display:block;
  margin-top:6px;
  color:#dbe7ff;
  font-size:13px;
}
.table-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:16px;
}
.table-head{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  margin-bottom:12px;
}
.table-head h3{margin:0;font-size:18px;color:#fff}
.pill{
  padding:8px 10px;border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#dce7ff;font-size:12px;font-weight:800;
}
.table-wrap{width:100%;overflow-x:auto}
table{width:100%;min-width:620px;border-collapse:collapse}
th,td{
  text-align:left;
  padding:13px 10px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
th{
  color:#dce7ff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
td{font-size:14px;color:#fff}
.badge{
  display:inline-flex;
  padding:7px 10px;border-radius:999px;
  font-size:12px;font-weight:800;
}
.success{background:var(--success-bg);color:var(--success)}
.pending{background:var(--pending-bg);color:var(--pending)}
.analysis{background:var(--analysis-bg);color:var(--analysis)}

.trust{padding:10px 0 0}
.trust-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
}
.trust-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.trust-card strong{
  display:block;font-size:22px;margin-bottom:10px;color:#fff;
}
.trust-card span{
  color:var(--muted);line-height:1.7;
}

.section{padding:94px 0}
.alt{background:rgba(255,255,255,.015)}

.section-header{
  max-width:840px;
  margin:0 0 42px;
}
.section-header.center{
  margin:0 auto 42px;
  text-align:center;
}
.section-header h2{
  margin:16px 0 14px;
  font-size:clamp(30px,4vw,46px);
  line-height:1.12;
  color:#fff;
}
.section-header p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.76;
}

.cards-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px;
}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}
.card h3{
  margin:0 0 12px;
  font-size:22px;
  color:#fff;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.72;
}

.split{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center;
}
.split-copy h2{
  margin:16px 0 16px;
  font-size:clamp(30px,4vw,44px);
  line-height:1.12;color:#fff;
}
.split-copy p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.76;
}
.segment-list{
  display:flex;flex-wrap:wrap;gap:12px;
  margin-top:24px;
}
.segment-list span{
  padding:12px 16px;
  border-radius:999px;
  background:var(--surface);
  border:1px solid var(--line);
  color:var(--text-soft);
  font-weight:700;
}
.highlight-box{
  background:linear-gradient(180deg,#0f2d65 0%,#0b214a 100%);
  color:#fff;
  border:1px solid rgba(153,194,255,.12);
  border-radius:28px;
  padding:34px;
  box-shadow:0 24px 60px rgba(0,0,0,.3);
}
.highlight-box small{
  display:block;
  color:#dbe7ff;
  font-size:13px;
  margin-bottom:12px;
}
.highlight-box strong{
  display:block;
  font-size:32px;
  line-height:1.18;
  margin-bottom:14px;
  color:#fff;
}
.highlight-box p{
  margin:0;
  color:#d7e4ff;
  line-height:1.76;
  font-size:17px;
}

.security-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px;
}
.security-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
}
.security-card h3{
  margin:0 0 12px;
  font-size:20px;
  color:#fff;
}
.security-card p{
  margin:0;
  color:var(--muted);
  line-height:1.72;
}

.integration-box{
  background:linear-gradient(180deg,#0b111d 0%,#0d1422 100%);
  border:1px solid var(--line);
  border-radius:30px;
  padding:36px;
}
.steps-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
}
.step-card{
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
}
.step-card strong{
  display:block;
  color:#fff;
  font-size:19px;
  margin-bottom:8px;
}
.step-card span{
  color:var(--muted);
  line-height:1.7;
}

.numbers-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px;
}
.number-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  text-align:center;
}
.number-card strong{
  display:block;
  font-size:34px;
  color:#82a7ff;
  margin-bottom:10px;
}
.number-card span{
  color:var(--muted);
  line-height:1.7;
}

.cta-section{padding-top:28px}
.cta-box{
  background:linear-gradient(180deg,#103a8c 0%,#0d2b63 100%);
  color:#fff;
  border:1px solid rgba(153,194,255,.12);
  border-radius:30px;
  padding:36px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.cta-box h2{
  margin:14px 0 10px;
  font-size:clamp(30px,4vw,44px);
  line-height:1.12;
  color:#fff;
}
.cta-box p{
  margin:0;
  color:#dbe7ff;
  font-size:17px;
  line-height:1.76;
  max-width:760px;
}
.cta-actions{
  display:flex;flex-wrap:wrap;gap:14px;
}
.cta-box .btn-outline{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.18);
}

.faq-list{
  max-width:900px;
  margin:0 auto;
  display:grid;gap:16px;
}
.faq-list details{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px 24px;
}
.faq-list summary{
  cursor:pointer;
  font-weight:800;
  font-size:18px;
  color:#fff;
}
.faq-list p{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.76;
}

.footer{
  background:#080d16;
  border-top:1px solid var(--line);
  padding:30px 0 42px;
}
.footer-wrap{
  display:flex;align-items:center;justify-content:space-between;gap:22px;
}
.footer-brand img{
  height:48px;
  margin-bottom:10px;
}
.footer-brand p{
  margin:0;
  color:var(--muted-2);
  max-width:560px;
}
.footer-links{
  display:flex;gap:18px;
  color:var(--text-soft);font-weight:700;
}
.footer-links a:hover{color:#fff}

@media (max-width:1080px){
  .hero-grid,.split{grid-template-columns:1fr}
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .security-grid,.numbers-grid,.steps-grid,.trust-grid{grid-template-columns:repeat(2,1fr)}
  .cta-box,.footer-wrap{flex-direction:column;align-items:flex-start}
}
@media (max-width:760px){
  .menu{display:none}
  .nav{min-height:76px}
  .brand img{height:46px}
  .container{width:min(100% - 24px,1180px)}
  .hero{padding-top:44px}
  .cards-grid,.security-grid,.numbers-grid,.steps-grid,.trust-grid{grid-template-columns:1fr}
  .hero p,.section-header p,.split-copy p,.highlight-box p,.cta-box p{font-size:16px}
}


.menu-toggle{display:none;width:52px;height:52px;border-radius:14px;border:1px solid var(--line-strong);background:rgba(255,255,255,.03);padding:0;align-items:center;justify-content:center;flex-direction:column;gap:5px;cursor:pointer;transition:.25s ease}
.menu-toggle span{display:block;width:20px;height:2px;border-radius:999px;background:#fff;transition:.25s ease}
.menu-toggle:hover{background:rgba(255,255,255,.06)}
.menu-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.is-active span:nth-child(2){opacity:0}
.menu-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.whatsapp-float{position:fixed;right:18px;bottom:18px;z-index:60;display:inline-flex;align-items:center;gap:10px;padding:14px 18px;border-radius:999px;background:linear-gradient(135deg,#22c55e 0%,#16a34a 100%);color:#fff;font-weight:800;box-shadow:0 18px 38px rgba(0,0,0,.28);border:1px solid rgba(255,255,255,.16);transition:.25s ease}
.whatsapp-float:hover{transform:translateY(-2px);box-shadow:0 22px 44px rgba(0,0,0,.32)}
.whatsapp-float-icon{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:rgba(255,255,255,.18);font-size:13px;line-height:1}

@media (max-width:760px){
  body{overflow-x:hidden}
  .header{backdrop-filter:blur(16px)}
  .nav{min-height:74px;gap:12px;flex-wrap:wrap;position:relative}
  .brand{flex:1 1 auto}
  .brand img{height:42px}
  .menu-toggle{display:inline-flex;order:2}
  .nav > .btn{order:3;width:100%;padding:13px 16px;border-radius:14px}
  .menu{display:none;order:4;width:100%;flex-direction:column;gap:8px;padding:10px;border:1px solid var(--line);border-radius:18px;background:rgba(6,10,18,.96);box-shadow:var(--shadow)}
  .menu.is-open{display:flex}
  .menu a{padding:12px 14px;border-radius:12px;background:rgba(255,255,255,.03)}
  .hero{padding:34px 0 24px}
  .hero-grid{gap:20px}
  .hero-copy{order:1}
  .hero-panel{order:2}
  .hero h1{margin:14px 0 14px;font-size:clamp(30px,9vw,40px);line-height:1.08}
  .hero p{font-size:15px;line-height:1.65}
  .hero-actions{flex-direction:column;align-items:stretch;margin:22px 0 18px}
  .hero-actions .btn{width:100%;padding:15px 18px}
  .hero-tags{gap:8px}
  .hero-tags span,.segment-list span{font-size:13px;padding:9px 12px}
  .panel{padding:16px;border-radius:22px}
  .panel-head{align-items:flex-start;flex-direction:column}
  .stats-grid{grid-template-columns:1fr 1fr;gap:10px}
  .stat-box{padding:14px;border-radius:16px}
  .stat-box strong{font-size:22px}
  .table-card{padding:12px;border-radius:18px}
  table{min-width:540px}
  th,td{padding:12px 8px}
  .trust{padding-top:0}
  .trust-card,.card,.security-card,.step-card,.number-card,.faq-list details{padding:20px;border-radius:18px}
  .section{padding:64px 0}
  .section-header{margin-bottom:28px}
  .section-header h2,.split-copy h2,.cta-box h2{font-size:clamp(26px,8vw,34px);line-height:1.14}
  .integration-box,.highlight-box,.cta-box{padding:22px;border-radius:22px}
  .highlight-box strong{font-size:26px}
  .cta-actions{width:100%;flex-direction:column}
  .cta-actions .btn{width:100%}
  .footer{padding-bottom:100px}
  .footer-links{flex-wrap:wrap;gap:14px 16px}
  .whatsapp-float{right:12px;left:12px;bottom:12px;justify-content:center;padding:15px 18px}
}

@media (max-width:480px){
  .container{width:min(100% - 18px,1180px)}
  .hero{padding-top:28px}
  .eyebrow{font-size:12px;padding:8px 11px}
  .hero h1{font-size:28px}
  .stats-grid{grid-template-columns:1fr}
  .table-wrap{margin:0 -2px}
  table{min-width:500px}
  .section{padding:56px 0}
  .whatsapp-float-text{font-size:15px}
}

/* ===== MOBILE AJUSTADO FINO ===== */
@media (max-width: 768px){

    body { padding: 0 12px; }

    .hero { text-align: center; padding: 40px 0; }

    .hero h1 {
        font-size: 22px !important;
        line-height: 30px !important;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 14px;
        opacity: .9;
        margin-bottom: 20px;
    }

    .cta-buttons { flex-direction: column; width: 100%; }

    .cta-buttons a {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 14px;
    }

    .benefits {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .card {
        width: 100%;
        padding: 18px;
        border-radius: 12px;
    }

    #form { padding: 20px 0; }

    #form input {
        width: 100%;
        padding: 14px;
        margin-bottom: 10px;
        font-size: 14px;
    }

    #form button {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 12px 14px;
        font-size: 13px;
    }
}


/* ===== MOBILE REFINADO ===== */
@media (max-width: 760px){
  html,body{max-width:100%;overflow-x:hidden}
  body{background:#060a12}

  .container{width:calc(100% - 20px)}

  .header{position:sticky;top:0}
  .nav{
    min-height:68px;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:10px;
    padding:10px 0;
  }
  .brand{min-width:0}
  .brand img{height:38px}
  .menu-toggle{
    width:46px;
    height:46px;
    border-radius:12px;
    margin-left:auto;
  }
  .nav > .btn{
    grid-column:1 / -1;
    width:100%;
    min-height:46px;
    padding:12px 14px;
    font-size:14px;
  }
  .menu{
    grid-column:1 / -1;
    width:100%;
    gap:6px;
    padding:8px;
    border-radius:16px;
  }
  .menu a{
    display:block;
    width:100%;
    padding:12px 12px;
    border-radius:12px;
    background:rgba(255,255,255,.02);
  }

  .hero{
    padding:26px 0 28px;
  }
  .hero-grid{
    gap:18px;
  }
  .eyebrow,
  .eyebrow.soft,
  .eyebrow.warm{
    font-size:11px;
    padding:8px 11px;
    line-height:1.3;
  }
  .hero h1{
    margin:14px 0 12px;
    font-size:32px;
    line-height:1.06;
    letter-spacing:-0.03em;
  }
  .hero p{
    font-size:15px;
    line-height:1.6;
    max-width:none;
  }
  .hero-actions{
    flex-direction:column;
    gap:10px;
    margin:22px 0 18px;
  }
  .hero-actions .btn{
    width:100%;
    min-height:48px;
    padding:13px 16px;
    border-radius:14px;
    font-size:15px;
  }
  .hero-tags{
    gap:8px;
  }
  .hero-tags span{
    font-size:12px;
    padding:9px 11px;
  }

  .panel{
    border-radius:22px;
    padding:16px;
  }
  .panel-head{
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
    margin-bottom:14px;
  }
  .panel-head strong{font-size:16px}
  .panel-head span{font-size:11px;padding:7px 9px}
  .stats-grid{
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:14px;
  }
  .stat-box{
    padding:14px;
    border-radius:16px;
  }
  .stat-box strong{font-size:22px}
  .stat-box small,
  .stat-box span{font-size:11px}
  .table-card{
    padding:12px;
    border-radius:18px;
  }
  .table-head{
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }
  .table-head h3{font-size:16px}
  .pill{font-size:11px;padding:7px 9px}
  .table-wrap{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    margin:0 -2px;
  }
  table{min-width:560px}
  th,td{
    padding:11px 8px;
    white-space:nowrap;
    font-size:12px;
  }

  .trust{padding-top:0}
  .trust-grid{gap:12px}
  .trust-card{
    padding:18px;
    border-radius:18px;
  }
  .trust-card strong{
    font-size:18px;
    margin-bottom:8px;
  }
  .trust-card span{
    font-size:14px;
    line-height:1.55;
  }

  .section{
    padding:52px 0;
  }
  .section-header{
    margin-bottom:24px;
  }
  .section-header h2,
  .split-copy h2,
  .cta-box h2{
    margin:12px 0 10px;
    font-size:28px;
    line-height:1.12;
  }
  .section-header p,
  .split-copy p,
  .highlight-box p,
  .cta-box p{
    font-size:15px;
    line-height:1.6;
  }

  .cards-grid,
  .security-grid,
  .numbers-grid,
  .steps-grid,
  .trust-grid{
    gap:12px;
  }
  .card,
  .security-card,
  .step-card,
  .number-card{
    padding:18px;
    border-radius:18px;
  }
  .card h3,
  .security-card h3,
  .step-card strong{
    font-size:18px;
    line-height:1.3;
  }
  .card p,
  .security-card p,
  .step-card span,
  .number-card span{
    font-size:14px;
    line-height:1.55;
  }
  .number-card strong{
    font-size:28px;
    margin-bottom:8px;
  }

  .segment-list{
    gap:8px;
    margin-top:18px;
  }
  .segment-list span{
    font-size:12px;
    padding:9px 11px;
  }
  .highlight-box,
  .integration-box,
  .cta-box{
    padding:18px;
    border-radius:20px;
  }
  .highlight-box strong{
    font-size:24px;
    line-height:1.2;
  }

  .cta-section{padding-top:4px}
  .cta-actions{
    width:100%;
    flex-direction:column;
    gap:10px;
  }
  .cta-actions .btn{
    width:100%;
    min-height:48px;
    padding:13px 16px;
  }

  .faq-list{gap:12px}
  .faq-list details{
    padding:18px;
    border-radius:16px;
  }
  .faq-list summary{
    font-size:16px;
    line-height:1.4;
    padding-right:14px;
  }
  .faq-list p{
    font-size:14px;
    line-height:1.6;
  }

  .footer{
    padding:24px 0 86px;
  }
  .footer-wrap{
    gap:16px;
  }
  .footer-brand img{
    height:40px;
    margin-bottom:8px;
  }
  .footer-brand p{
    font-size:13px;
    line-height:1.55;
  }
  .footer-links{
    width:100%;
    flex-wrap:wrap;
    gap:10px 14px;
    font-size:14px;
  }

  .whatsapp-float{
    right:12px;
    bottom:12px;
    width:auto;
    min-height:48px;
    padding:12px 14px;
    border-radius:999px;
    gap:8px;
    font-size:14px;
  }
  .whatsapp-float-text{
    font-size:14px;
  }
}

@media (max-width: 420px){
  .container{width:calc(100% - 16px)}
  .hero h1{font-size:28px}
  .section-header h2,
  .split-copy h2,
  .cta-box h2{font-size:24px}
  .stats-grid{grid-template-columns:1fr}
  .whatsapp-float{
    right:10px;
    bottom:10px;
    padding:11px 13px;
  }
}

/* FIX DEFINITIVO HERO MOBILE */
@media (max-width: 768px){

    .hero, .top-section {
        min-height: auto !important;
        height: auto !important;
        padding: 10px 0 !important;
    }

    .hero h1 {
        font-size: 16px !important;
        line-height: 22px !important;
        margin-bottom: 5px !important;
    }

    .hero p {
        font-size: 12px !important;
        line-height: 17px !important;
        margin-bottom: 8px !important;
    }

    .hero .container,
    .hero .row,
    .hero .content {
        display: flex !important;
        flex-direction: column !important;
    }

    .hero img,
    .dashboard,
    .mockup {
        width: 100% !important;
        max-width: 260px !important;
        margin: 10px auto 0 !important;
        display: block !important;
    }

    .cta-buttons {
        margin-top: 10px !important;
    }

    .cta-buttons a {
        padding: 10px !important;
        font-size: 12px !important;
    }

    .empresas,
    .companies {
        margin-top: 10px !important;
    }

    .empresas img,
    .companies img {
        max-height: 22px !important;
    }
}


/* AJUSTE REAL MOBILE - painel "Visão operacional" */
@media (max-width: 768px){
  .hero-grid{
    gap: 14px !important;
  }

  .hero-panel{
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }

  .panel{
    border-radius: 18px !important;
    padding: 14px !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.22) !important;
  }

  .panel-head{
    margin-bottom: 12px !important;
  }

  .panel-head strong{
    font-size: 15px !important;
  }

  .panel-head span{
    font-size: 10px !important;
    padding: 6px 8px !important;
  }

  .stats-grid{
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  .stat-box{
    border-radius: 14px !important;
    padding: 12px !important;
  }

  .stat-box small{
    font-size: 10px !important;
    margin-bottom: 6px !important;
  }

  .stat-box strong{
    font-size: 20px !important;
  }

  .stat-box span{
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .table-card{
    border-radius: 14px !important;
  }

  .table-head{
    padding: 10px 12px !important;
  }

  .table-head h3{
    font-size: 13px !important;
  }

  .pill{
    font-size: 10px !important;
    padding: 5px 7px !important;
  }

  .table-wrap{
    overflow-x: auto !important;
  }

  .table-wrap table{
    min-width: 420px !important;
  }

  .table-wrap th,
  .table-wrap td{
    font-size: 11px !important;
    padding: 9px 10px !important;
    white-space: nowrap !important;
  }
}



/* CONTADOR DE TRANSAÇÕES */
.live-counter{
  padding: 22px 0 8px;
}
.live-counter__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  backdrop-filter: blur(8px);
}
.live-counter__eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
  margin-bottom: 8px;
}
.live-counter__main{
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.live-counter__number{
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
}
.live-counter__label{
  font-size: 15px;
  opacity: .88;
}
.live-counter__sub{
  margin: 10px 0 0;
  font-size: 13px;
  opacity: .65;
}

@media (max-width: 768px){
  .live-counter{
    padding: 16px 0 4px;
  }
  .live-counter__inner{
    padding: 14px 14px;
    border-radius: 16px;
  }
  .live-counter__eyebrow{
    font-size: 10px;
    margin-bottom: 6px;
  }
  .live-counter__number{
    font-size: 28px;
  }
  .live-counter__label{
    font-size: 12px;
  }
  .live-counter__sub{
    font-size: 11px;
    line-height: 1.45;
  }
}



/* AJUSTE contador no topo */
.live-counter{
  padding-top: 10px;
  padding-bottom: 12px;
}
.hero .live-counter,
header + .live-counter{
  margin-top: 8px;
}
@media (max-width:768px){
  .live-counter{
    padding-top: 8px;
    padding-bottom: 10px;
  }
}
