:root{
  --bg:#f6f8fc;
  --bg-soft:#eef3fb;
  --surface:#ffffff;
  --surface-2:#f8fbff;
  --text:#152235;
  --muted:#617089;
  --line:#dce5f2;
  --primary:#1e6bff;
  --primary-dark:#0d2e6b;
  --primary-deep:#081f4f;
  --accent:#6fb8ff;
  --success:#0d7a52;
  --shadow:0 18px 50px rgba(11, 35, 82, 0.08);
  --shadow-soft:0 10px 30px rgba(11, 35, 82, 0.06);
  --radius:18px;
  --radius-sm:12px;
  --container:1440px;
  --transition:all .25s ease;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Inter', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:var(--primary);
  text-decoration:none;
  transition:var(--transition);
}

a:hover{
  opacity:.9;
}

main{
  min-height:60vh;
}

.container{
  width:min(96%, var(--container));
  margin:0 auto;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:1100;
  background:rgba(251,252,253,.96);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(220,229,242,.8);
  transition:var(--transition);
}

.site-header.is-scrolled{
  box-shadow:0 8px 28px rgba(11,35,82,.08);
}

.header-inner{
  display:grid;
  grid-template-columns:190px minmax(0,1fr) auto;
  align-items:center;
  gap:28px;
  min-height:116px;
}

.brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-width:190px;
}

.brand img{
  height:170px;
  width:auto;
}

.desktop-nav{
  min-width:0;
}

.desktop-nav ul{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:nowrap;
  gap:14px;
  list-style:none;
  padding:0;
  margin:0;
}

.desktop-nav li{
  flex:0 1 auto;
  min-width:0;
}

.desktop-nav a,
.dropdown-toggle{
  border:0;
  background:transparent;
  font:inherit;
  color:var(--text);
  font-weight:500;
  font-size:16px;
  line-height:1.25;
  cursor:pointer;
  padding:10px 14px;
  white-space:nowrap;
  border-radius:999px;
  transition:var(--transition);
}

.desktop-nav a:hover,
.dropdown-toggle:hover{
  background:rgba(30,107,255,.08);
  color:var(--primary-dark);
}

.desktop-nav a:focus-visible,
.dropdown-toggle:focus-visible{
  outline:none;
  background:rgba(30,107,255,.10);
  color:var(--primary-dark);
  box-shadow:0 0 0 3px rgba(30,107,255,.12);
}

.has-dropdown{
  position:relative;
}

.dropdown-toggle{
  display:flex;
  align-items:center;
  gap:8px;
}

.caret{
  width:8px;
  height:8px;
  border-right:2px solid var(--text);
  border-bottom:2px solid var(--text);
  transform:rotate(45deg);
  margin-top:-3px;
  flex:0 0 auto;
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  min-width:250px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:12px;
  display:none;
}

.has-dropdown:hover .dropdown-menu{
  display:block;
}

.dropdown-menu a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  color:var(--text);
  white-space:normal;
}

.dropdown-menu a:hover{
  background:rgba(30,107,255,.08);
  color:var(--primary-dark);
}

.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  flex:0 0 auto;
}

.mobile-toggle{
  display:none;
  width:48px;
  height:48px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  padding:0;
  cursor:pointer;
}

.mobile-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:5px auto;
  transition:var(--transition);
}

.mobile-menu{
  display:none;
  border-top:1px solid var(--line);
  background:#fff;
}

.mobile-menu.is-open{
  display:block;
}

.mobile-menu-inner{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:16px 0 22px;
}

.mobile-menu-inner a{
  color:var(--text);
  padding:12px 0;
  border-bottom:1px solid rgba(220,229,242,.7);
}

.btn-mobile-cta{
  margin-top:8px;
  text-align:center;
}

/* STICKY CTA */

.sticky-diagnostico{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1000;
  background:linear-gradient(135deg, var(--primary-dark), var(--primary));
  color:#fff;
  padding:14px 18px;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 20px 40px rgba(30,107,255,.25);
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  border:2px solid transparent;
  transition:var(--transition);
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--primary-dark), var(--primary));
  color:#fff;
  box-shadow:0 16px 30px rgba(30,107,255,.18);
}

.btn-secondary{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.75);
}

.btn-outline-blue{
  background:transparent;
  color:var(--primary);
  border-color:rgba(30,107,255,.28);
}

.btn-white{
  background:#fff;
  color:var(--primary);
}

.btn-outline-white{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.6);
}

.btn-header{
  padding:14px 22px;
  font-size:16px;
  white-space:nowrap;
}

.btn-full{
  width:100%;
}

/* HERO */

.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(111,184,255,.20), transparent 28%),
    radial-gradient(circle at top left, rgba(255,255,255,.10), transparent 22%),
    linear-gradient(135deg, var(--primary-deep), var(--primary-dark) 45%, var(--primary) 100%);
  color:#fff;
  padding:110px 0 95px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:auto -10% -120px auto;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.15), transparent 65%);
  pointer-events:none;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:42px;
  align-items:center;
}

.hero-copy h1{
  margin:0 0 18px;
  font-size:clamp(2.2rem, 4vw, 4.3rem);
  line-height:1.05;
  letter-spacing:-.03em;
  max-width:860px;
}

.hero-copy p{
  font-size:1.1rem;
  color:rgba(255,255,255,.88);
  max-width:760px;
}

.hero-microcopy{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.hero-microcopy span{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  font-size:.92rem;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.hero-support-link{
  display:inline-block;
  margin-top:18px;
  color:#d6e7ff;
  font-weight:600;
}

.hero-visual{
  position:relative;
}

.hero-panel{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:28px;
  padding:22px;
  backdrop-filter:blur(14px);
  box-shadow:0 20px 50px rgba(0,0,0,.14);
}

.mock-dashboard{
  background:#fff;
  border-radius:22px;
  padding:22px;
  color:var(--text);
  box-shadow:var(--shadow);
}

.mock-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.mock-badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#edf4ff;
  color:var(--primary);
  font-size:.82rem;
  font-weight:700;
}

.mock-bars{
  display:grid;
  gap:12px;
  margin:20px 0;
}

.mock-bar{
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--primary-dark), var(--accent));
}

.mock-kpis{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}

.mock-kpi{
  background:#f7faff;
  border:1px solid #e4ecf9;
  border-radius:18px;
  padding:16px;
}

.mock-kpi strong{
  display:block;
  font-size:1.2rem;
  color:var(--primary-dark);
}

.mock-kpi span{
  font-size:.85rem;
  color:var(--muted);
}

/* PAGE HERO */

.page-hero{
  padding:92px 0 70px;
}

.page-hero-dark{
  background:
    radial-gradient(circle at top right, rgba(111,184,255,.18), transparent 28%),
    linear-gradient(135deg, var(--primary-deep), var(--primary-dark) 48%, var(--primary));
  color:#fff;
}

.page-hero-light{
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.page-hero .container{
  max-width:980px;
}

.page-hero h1{
  margin:0 0 16px;
  font-size:clamp(2rem, 3.3vw, 3.5rem);
  line-height:1.08;
  letter-spacing:-.03em;
}

.page-hero p{
  margin:0;
  font-size:1.08rem;
  color:inherit;
  opacity:.92;
}

.lead-strong{
  font-weight:700;
}

/* GLOBAL SECTIONS */

.section{
  padding:88px 0;
}

.section-soft{
  background:var(--bg-soft);
}

.section-heading{
  max-width:820px;
  margin:0 auto 38px 0;
}

.section-heading.center{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.section-heading h2{
  margin:10px 0 12px;
  font-size:clamp(1.8rem, 2.7vw, 3rem);
  line-height:1.1;
  letter-spacing:-.03em;
}

.section-heading p{
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
}

.section-badge,
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--primary);
  background:#eaf2ff;
}

.eyebrow.light{
  color:#fff;
  background:rgba(255,255,255,.12);
}

/* CARDS */

.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.cards-4{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.card{
  background:var(--surface);
  border:1px solid #e7edf7;
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.card h3{
  margin:0 0 10px;
  font-size:1.15rem;
  line-height:1.2;
}

.card p{
  margin:0;
  color:var(--muted);
}

.icon-card{
  position:relative;
  overflow:hidden;
}

.icon-card::before{
  content:"";
  display:block;
  width:46px;
  height:46px;
  border-radius:14px;
  margin-bottom:18px;
  background:linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* HOME SPECIFIC */

.kpi-row{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
  margin-top:26px;
}

.kpi-box{
  background:#fff;
  border:1px solid #e5edf8;
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow-soft);
}

.kpi-box strong{
  display:block;
  font-size:2rem;
  line-height:1;
  color:var(--primary-dark);
  margin-bottom:8px;
}

.kpi-box span{
  color:var(--muted);
  font-size:.95rem;
}

.quote-box{
  margin-top:24px;
  padding:22px 24px;
  border-left:4px solid var(--primary);
  border-radius:0 18px 18px 0;
  background:#f5f9ff;
  color:var(--primary-dark);
  box-shadow:var(--shadow-soft);
}

.solutions-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.solution-card{
  position:relative;
  background:linear-gradient(180deg, #fff, #f9fbff);
  border:1px solid #dde8f7;
  border-radius:26px;
  padding:32px;
  box-shadow:var(--shadow-soft);
}

.solution-card .mini-footer{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid #e6eef9;
  color:var(--muted);
  font-size:.92rem;
}

.solution-card ul{
  padding-left:18px;
  color:var(--muted);
}

.solution-card li + li{
  margin-top:8px;
}

.journey-steps{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
  margin-top:26px;
}

.journey-step{
  background:#fff;
  border:1px solid #dce7f8;
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow-soft);
  position:relative;
}

.journey-step .num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--primary-dark), var(--primary));
  color:#fff;
  font-weight:800;
  margin-bottom:16px;
}

.persona-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.persona-card{
  background:#fff;
  border:1px solid #e4ecf9;
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow-soft);
}

.numbered-list{
  display:grid;
  gap:16px;
  margin-top:22px;
}

.numbered-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:#fff;
  border:1px solid #e4ecf9;
  border-radius:20px;
  padding:20px;
}

.numbered-item span{
  flex:0 0 40px;
  width:40px;
  height:40px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--primary-dark), var(--primary));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}

/* TABLE */

.table-wrap{
  overflow:auto;
  border-radius:20px;
  box-shadow:var(--shadow-soft);
}

.compare-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  min-width:680px;
}

.compare-table th{
  background:linear-gradient(135deg, var(--primary-dark), var(--primary));
  color:#fff;
  text-align:left;
  padding:18px 20px;
  font-size:1rem;
}

.compare-table td{
  padding:18px 20px;
  border-bottom:1px solid #edf2fa;
  color:var(--muted);
}

.compare-table tr:last-child td{
  border-bottom:0;
}

/* CHECK GRID */

.check-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.check-item{
  background:#fff;
  border:1px solid #e3ebf9;
  border-radius:18px;
  padding:22px;
  color:var(--text);
  box-shadow:var(--shadow-soft);
  position:relative;
  padding-left:54px;
}

.check-item::before{
  content:"✓";
  position:absolute;
  left:20px;
  top:20px;
  width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#e9f3ff;
  color:var(--primary);
  font-weight:900;
}

/* TWO COL */

.two-col{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:36px;
}

.align-center{
  align-items:center;
}

.visual-panel{
  position:relative;
}

.panel-placeholder{
  min-height:320px;
  border-radius:26px;
  border:1px dashed #b9c9e4;
  background:linear-gradient(180deg, #ffffff, #f4f8ff);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:32px;
  color:var(--muted);
}

.panel-placeholder span{
  font-weight:800;
  color:var(--primary-dark);
  margin-bottom:10px;
}

.panel-placeholder-dark{
  background:linear-gradient(180deg, #0e265f, #16377e);
  border-color:rgba(255,255,255,.2);
  color:rgba(255,255,255,.78);
}

.panel-placeholder-dark span{
  color:#fff;
}

/* METHOD */

.method-preview{
  display:grid;
  grid-template-columns:repeat(7, minmax(0, 1fr));
  gap:14px;
  margin-top:28px;
}

.method-step{
  background:#fff;
  border:1px solid #e2ebf9;
  border-radius:20px;
  padding:18px 14px;
  text-align:center;
  box-shadow:var(--shadow-soft);
}

.method-step span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#edf4ff;
  color:var(--primary);
  font-weight:800;
  margin-bottom:10px;
}

.section-cta-inline{
  margin-top:26px;
}

.pillar-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
}

.pillar-card{
  background:#fff;
  border:1px solid #e3ebf8;
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow-soft);
}

.pillar-letter{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(135deg, var(--primary-dark), var(--primary));
  color:#fff;
  font-size:1.2rem;
  font-weight:900;
  margin-bottom:16px;
}

/* STACK */

.stack-list{
  display:grid;
  gap:14px;
  margin-top:20px;
}

.stack-item{
  background:#fff;
  border:1px solid #e5edf9;
  border-radius:18px;
  padding:18px 20px;
  box-shadow:var(--shadow-soft);
}

/* TIMELINE */

.timeline{
  display:grid;
  gap:18px;
  margin-top:20px;
}

.timeline-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:#fff;
  border:1px solid #e4ecf9;
  border-radius:20px;
  padding:20px;
  box-shadow:var(--shadow-soft);
}

.timeline-item span{
  flex:0 0 44px;
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.timeline-item h3{
  margin:0 0 6px;
  font-size:1.05rem;
}

.timeline-item p{
  margin:0;
  color:var(--muted);
}

/* FORMS */

.form-section{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:32px;
  align-items:start;
}

.form-copy p{
  color:var(--muted);
}

.form-note-card{
  margin-top:24px;
  background:#fff;
  border:1px solid #e5edf9;
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow-soft);
}

.form-box{
  background:#fff;
  border:1px solid #e2ebf8;
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow);
}

.lead-form{
  width:100%;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-group.full{
  grid-column:1 / -1;
}

.form-group label{
  font-weight:700;
  font-size:.95rem;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid #d7e2f1;
  border-radius:14px;
  padding:14px 16px;
  font:inherit;
  color:var(--text);
  background:#fff;
  transition:var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:#9dbfff;
  box-shadow:0 0 0 4px rgba(30,107,255,.10);
}

.checkbox-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:6px;
}

.checkbox-grid label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  background:#f7faff;
  border:1px solid #e3ebf8;
  border-radius:14px;
  padding:12px 14px;
  font-weight:500;
}

.form-legal{
  margin:16px 0 0;
  font-size:.92rem;
  color:var(--muted);
}

/* CTA BAND */

.cta-band{
  background:
    radial-gradient(circle at top right, rgba(111,184,255,.16), transparent 30%),
    linear-gradient(135deg, var(--primary-deep), var(--primary-dark) 45%, var(--primary));
  color:#fff;
  padding:72px 0;
}

.cta-band-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.cta-band-content h2{
  margin:10px 0 8px;
  font-size:clamp(1.8rem, 2.8vw, 2.8rem);
  line-height:1.08;
  letter-spacing:-.03em;
}

.cta-band-content p{
  margin:0;
  color:rgba(255,255,255,.82);
  max-width:680px;
}

.cta-band-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

/* FOOTER */

.site-footer{
  background:#091a42;
  color:#fff;
  padding:70px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr 1fr;
  gap:28px;
}

.footer-logo{
  height:170px;
  margin-bottom:18px;
}

.footer-brand-col p,
.footer-contact p{
  color:rgba(255,255,255,.72);
}

.site-footer h4{
  margin:0 0 16px;
  font-size:1rem;
}

.site-footer ul{
  list-style:none;
  margin:0;
  padding:0;
}

.site-footer li + li{
  margin-top:10px;
}

.site-footer a{
  color:rgba(255,255,255,.78);
  position:relative;
  display:inline-block;
  padding-bottom:2px;
}

.site-footer a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:1px;
  background:rgba(255,255,255,.9);
  transition:width .25s ease;
}

.site-footer a:hover{
  color:#fff;
}

.site-footer a:hover::after{
  width:100%;
}

.footer-contact{
  margin-top:20px;
}

.footer-bottom{
  margin-top:36px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
  color:rgba(255,255,255,.58);
}

/* LEGAL */

.legal-content{
  background:#fff;
  border:1px solid #e3ebf8;
  border-radius:24px;
  padding:32px;
  box-shadow:var(--shadow-soft);
}

.legal-content h2{
  margin-top:0;
}

.legal-content h3{
  margin-top:28px;
}

/* ANIMATION */

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:all .6s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* EXTRA BLOCKS */

.metrics{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:40px;
  margin-top:50px;
}

.metric{
  text-align:center;
}

.metric h2{
  font-size:40px;
  color:#1e6bff;
  margin:0;
}

.metric p{
  margin-top:8px;
  color:var(--muted);
}

.method-diagram{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:24px;
  margin-top:50px;
}

.method-node{
  background:white;
  padding:20px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 6px 20px rgba(0,0,0,0.05);
  border:1px solid #e7edf7;
}

/* RESPONSIVE */

@media (max-width: 1360px){
  .header-inner{
    grid-template-columns:170px minmax(0,1fr) auto;
    gap:22px;
  }

  .brand{
    min-width:170px;
  }

  .brand img{
    height:150px;
  }

  .desktop-nav ul{
    gap:10px;
  }

  .desktop-nav a,
  .dropdown-toggle{
    font-size:15px;
    padding:10px 2px;
  }

  .btn-header{
    padding:12px 18px;
    font-size:15px;
  }
}

@media (max-width: 1200px){
  .cards-4,
  .pillar-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .method-preview{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }

  .journey-steps{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .footer-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .header-inner{
    grid-template-columns:150px minmax(0,1fr) auto;
    gap:18px;
    min-height:102px;
  }

  .brand{
    min-width:150px;
  }

  .brand img{
    height:132px;
  }

  .desktop-nav ul{
    gap:8px;
  }

  .desktop-nav a,
  .dropdown-toggle{
    font-size:14px;
  }

  .btn-header{
    padding:11px 16px;
    font-size:14px;
  }
}

@media (max-width: 980px){
  .desktop-nav,
  .btn-header{
    display:none;
  }

  .mobile-toggle{
    display:block;
  }

  .header-inner{
    grid-template-columns:1fr auto;
    min-height:96px;
  }

  .brand{
    min-width:0;
  }

  .brand img{
    height:120px;
  }

  .hero-grid,
  .two-col,
  .form-section,
  .solutions-grid,
  .cta-band-content{
    grid-template-columns:1fr;
    display:grid;
  }

  .cards,
  .persona-grid,
  .check-grid,
  .kpi-row{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .hero{
    padding:90px 0 72px;
  }

  .page-hero{
    padding:76px 0 58px;
  }

  .hero-copy h1{
    max-width:none;
  }

  .sticky-diagnostico{
    bottom:14px;
    right:14px;
    left:14px;
    text-align:center;
    border-radius:16px;
  }
}

@media (max-width: 680px){
  .cards,
  .cards-4,
  .persona-grid,
  .check-grid,
  .kpi-row,
  .pillar-grid,
  .method-preview,
  .journey-steps,
  .footer-grid,
  .form-grid,
  .checkbox-grid{
    grid-template-columns:1fr;
  }

  .header-inner{
    min-height:84px;
  }

  .brand img{
    height:88px;
  }

  .hero-buttons,
  .cta-band-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn,
  .btn-white,
  .btn-outline-white,
  .btn-outline-blue,
  .btn-secondary,
  .btn-primary{
    width:100%;
  }

  .section{
    padding:72px 0;
  }

  .card,
  .form-box,
  .legal-content,
  .solution-card{
    padding:22px;
  }

  .timeline-item,
  .numbered-item{
    flex-direction:column;
  }
}

/* ===== CHECKBOX GRID DO FORMULÁRIO ===== */

.checkbox-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.checkbox-grid label{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  padding:14px 18px;
  border-radius:12px;
  border:1px solid #e2e8f0;
  background:#f8fafc;
  cursor:pointer;
  transition:all .2s ease;
}

.checkbox-grid label:hover{
  background:#eef2f7;
}

.checkbox-grid input[type="checkbox"]{
  width:18px;
  height:18px;
  margin:0;
  flex-shrink:0;
}