/* ═══════════════════════════════════════════════════════════
   NT CARS PATINETES — style.css
   Estilo: blanco, azul marino #1a2332, Inter — inspirado en ntcars.es
   ═══════════════════════════════════════════════════════════ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:#fff;color:#1a2332;font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:#1d5fa8;text-decoration:none;transition:color .15s}
a:hover{color:#174d8a}
ul{list-style:none}
h1,h2,h3,h4,h5{line-height:1.1;letter-spacing:-.03em;color:#1a2332}
.container{max-width:1100px;margin:0 auto;padding:0 40px}
.section{padding:80px 0}
.section-alt{background:#f8f9fb}
hr.div{border:none;border-top:1px solid #f0f0f0;margin:0}

/* ── NAV ── */
nav,.site-nav{
  position:sticky;top:0;z-index:300;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid #f0f0f0;
  height:68px;
}
.nav-inner{
  max-width:1100px;margin:0 auto;padding:0 40px;
  display:flex;align-items:center;height:68px;gap:0;
  justify-content:space-between;
}
nav:not(.site-nav){
  display:flex;align-items:center;
  padding:0 40px;gap:16px;
}
.nav-logo,.nav-brand{
  display:flex;align-items:center;gap:0;
  text-decoration:none;flex-shrink:0;
  white-space:nowrap;
}
.nav-brand-name,.nav-logo strong{font-size:17px;font-weight:800;color:#1a2332;letter-spacing:-.3px}
.nav-brand-sep,.nav-logo .logo-sep{display:inline-block;width:1px;height:20px;background:#d0d5dd;margin:0 14px;flex-shrink:0;vertical-align:middle}
.nav-brand-sub{font-size:13px;font-weight:400;color:#8a94a0}
.nav-links,.nav-center{display:flex;align-items:center;gap:4px;flex:1;justify-content:center;margin:0 24px}
.nav-links a,.nav-center a{
  padding:8px 14px;font-size:14.5px;font-weight:500;
  color:#4a5568;text-decoration:none;border-radius:8px;
  cursor:pointer;transition:all .15s;white-space:nowrap;
}
.nav-links a:hover,.nav-center a:hover{color:#1a2332;background:#f5f6f8}
.nav-links a.active,.nav-center a.active{color:#1a2332;font-weight:600}

/* Nav-logo nueva estructura */
.nav-logo{display:flex;align-items:center;gap:0;text-decoration:none;flex-shrink:0;white-space:nowrap}
.nav-logo strong{font-size:17px;font-weight:800;color:#1a2332;letter-spacing:-.3px}
.nav-logo .logo-sep{display:inline-block;width:1px;height:20px;background:#d0d5dd;margin:0 12px;flex-shrink:0}
.nav-logo .logo-sub{font-size:13px;font-weight:400;color:#8a94a0;white-space:nowrap}
.nav-actions,.nav-right{display:flex !important;align-items:center;gap:10px;flex-shrink:0}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher{display:flex;align-items:center;gap:3px;margin-right:4px}
.lang-btn{font-size:12px;font-weight:600;color:#8a94a0;padding:4px 7px;border-radius:6px;text-decoration:none;transition:color .15s;white-space:nowrap;line-height:1}
.lang-btn:hover{color:#1a2332;background:#f5f6f8}
.lang-btn.lang-active{color:#1a2332;font-weight:700}
.lang-sep{font-size:11px;color:#d0d5dd;line-height:1}
@media(max-width:900px){.lang-switcher{display:none}}
.mob-lang-switcher{display:none;align-items:center;justify-content:center;gap:8px;padding:16px 0;border-bottom:1px solid #f5f5f5}
.mob-lang-switcher .lang-btn{font-size:15px;padding:8px 14px;border:1.5px solid #e8edf2;border-radius:8px}
.mob-lang-switcher .lang-btn.lang-active{border-color:#1a2332;color:#1a2332}
.mob-lang-switcher .lang-sep{display:none}
@media(max-width:900px){.mob-lang-switcher{display:flex}}

/* Dropdown */
.nav-dropdown{position:relative}
.nav-dropdown>a{cursor:pointer}
.dd-arrow{display:inline-flex;align-items:center;margin-left:4px;transition:transform .2s;color:inherit}
.nav-dropdown:hover .dd-arrow{transform:rotate(180deg)}
.dd-menu{display:none;position:absolute;top:calc(100% + 8px);left:0;background:#fff;border:1px solid #eaedf0;border-radius:14px;padding:8px;min-width:220px;box-shadow:0 16px 40px rgba(26,35,50,.12);z-index:100}
.nav-dropdown:hover .dd-menu{display:block}
.dd-menu a{display:block;padding:10px 16px;font-size:14px;color:#4a5568;white-space:nowrap;border-radius:8px;text-decoration:none}
.dd-menu a:hover{background:#f5f6f8;color:#1a2332}

/* Hamburger */
.nav-hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px}
.nav-hamburger span{width:22px;height:2px;background:#1a2332;border-radius:2px;transition:transform .25s,opacity .25s}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-hamburger.open span:nth-child(2){opacity:0}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile nav — ALWAYS hidden unless .open */
.nav-mobile{display:none;position:fixed;top:68px;left:0;right:0;bottom:0;background:#fff;z-index:999;padding:28px 24px;overflow-y:auto;border-top:1px solid #f0f0f0}
.nav-mobile.open{display:block}
.nav-mobile a{display:block;padding:16px 0;font-size:18px;color:#1a2332;font-weight:500;border-bottom:1px solid #f5f5f5;text-decoration:none}
.nav-mobile a:hover{color:#1d5fa8}
.nav-mobile .mob-dd-items{display:none;padding-left:16px}
.nav-mobile .mob-dd-items.open{display:block}
.nav-mobile .mob-dd-items a{font-size:15px;color:#6b7787;font-weight:400}
.nav-mobile .mob-cta{margin-top:28px;display:flex;flex-direction:column;gap:12px}
.nav-mobile .mob-cta .btn{display:flex !important;width:100%;justify-content:center;text-align:center;box-sizing:border-box}

/* ── BUTTONS ── */
.btn,.btn-dark,.btn-outline,.btn-contact,.btn-green,.btn-primary{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-size:15px;font-weight:600;
  padding:13px 28px;border-radius:50px;
  border:none;cursor:pointer;transition:all .15s;
  text-decoration:none;white-space:nowrap;
}
.btn-dark,.btn-primary,.btn-contact{background:#1a2332;color:#fff}
.btn-dark:hover,.btn-primary:hover,.btn-contact:hover{background:#2d3a4a;color:#fff}
.btn-green{background:#1a7a45;color:#fff}
.btn-green:hover{background:#156038;color:#fff}
.btn-outline{background:#fff;color:#1a2332;border:1.5px solid #d0d5dd}
.btn-outline:hover{border-color:#1a2332;background:#f5f6f8}
.btn-blue{background:#1d5fa8;color:#fff}
.btn-blue:hover{background:#174d8a;color:#fff}
.btn-sm{padding:9px 20px;font-size:14px}
.btn-lg{padding:16px 36px;font-size:16px}
.arrow-icon{width:16px;height:16px;flex-shrink:0;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;fill:none;vertical-align:middle}
/* SVG Icon system */
.icon-inline{display:inline-flex;align-items:center;vertical-align:middle;margin-right:3px;width:1em;height:1em;flex-shrink:0;overflow:hidden}
.icon-inline svg{width:100%;height:100%;max-width:100%;max-height:100%;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;display:block}
.icon-btn{display:inline-flex;align-items:center;gap:7px}
.icon-btn svg{width:20px;height:20px;flex-shrink:0}

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow{display:inline-flex;align-items:center;gap:8px;background:#eef4fc;border-radius:50px;padding:6px 16px;font-size:13px;font-weight:500;color:#1d5fa8;margin-bottom:24px}
.section-eyebrow{display:block;font-size:11px;font-weight:700;color:#1d5fa8;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}
.section-title{font-size:clamp(32px,4vw,48px);font-weight:800;letter-spacing:-1.5px;color:#1a2332;margin-bottom:16px;line-height:1.08}
.section-subtitle{font-size:17px;color:#6b7787;max-width:580px;line-height:1.7}
.section-header{text-align:center;margin-bottom:56px}
.section-header .section-subtitle{margin:0 auto}
.breadcrumb{font-size:13px;color:#8a94a0;margin-bottom:14px}
.breadcrumb a{color:#8a94a0}
.breadcrumb a:hover{color:#1d5fa8}

/* ── HERO ── */
.hero{background:#fff;padding:80px 0 24px;text-align:center}
.hero h1{font-size:clamp(44px,5.5vw,68px);font-weight:800;line-height:1.05;letter-spacing:-2px;color:#1a2332;margin-bottom:18px}
.hero h1 em{color:#1d5fa8;font-style:normal}
.hero-sub,.lead{font-size:17px;color:#6b7787;line-height:1.7;max-width:580px;margin:0 auto 0}
.hero-sub strong,.lead strong{color:#1a2332;font-weight:600}
.hero-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:32px}
.hero-trust{display:flex;gap:28px;justify-content:center;flex-wrap:wrap;margin-top:28px}
.hero-trust-item{display:flex;align-items:center;gap:7px;font-size:13.5px;color:#8a94a0;font-weight:500}
.hero-trust-item::before{content:'✓';color:#1d5fa8;font-weight:700;font-size:13px}
.hero-note{margin-top:20px;margin-bottom:0;font-size:12.5px;color:#aab0bb}
.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;background:#eef4fc;border:1px solid #d0e4f7;border-radius:50px;padding:6px 16px;font-size:12px;font-weight:600;color:#1d5fa8;letter-spacing:.5px;margin-bottom:22px}
.hero-split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:flex-start}
.hero-content{text-align:left}
.hero-content .hero-sub{margin-left:0;margin-right:0;max-width:100%}
.hero-content .hero-actions{justify-content:center}
.hero-image{border-radius:20px;overflow:hidden;box-shadow:0 20px 60px rgba(26,35,50,.16);flex-shrink:0}
.hero-image img{width:100%;height:460px;object-fit:cover;display:block}
/* Price badge */
.hero-price-badge{display:inline-flex;flex-direction:column;align-items:center;gap:2px;background:#f0faf4;border:1px solid #b6e5cc;border-radius:12px;padding:10px 24px;margin-bottom:20px}
.hero-price-badge .amount{font-size:32px;font-weight:800;color:#1a7a45;line-height:1;white-space:nowrap}
.hero-price-badge .label{font-size:13px;color:#6b7787;font-weight:500}
/* ── HERO HIGHLIGHTS ── */
.hero-highlights{display:flex;flex-direction:column;gap:10px;margin-top:22px;margin-bottom:28px}
.hero-hl-item{display:flex;align-items:center;gap:12px;background:#f8f9fb;border:1.5px solid #e2eaf6;border-radius:10px;padding:11px 16px}
.hero-hl-icon{flex-shrink:0;width:36px;height:36px;display:flex;align-items:center;justify-content:center;background:#eef4fc;border-radius:9px;color:#2563eb}
.hero-hl-icon svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.hero-hl-text{display:flex;flex-direction:column;gap:2px}
.hero-hl-text strong{font-size:13.5px;font-weight:700;color:#1a2332;line-height:1.3}
.hero-hl-text span{font-size:12px;color:#8a94a0;line-height:1.3}
/* Hero right column (desktop: image + highlights below) */
.hero-right{display:flex;flex-direction:column;margin-top:56px}
.hero-hl-mobile{display:none}
.hero-hl-desktop{margin-top:14px;margin-bottom:0}

/* Alert strip */
.alert-strip{background:#fff8f3;border:1px solid rgba(196,90,10,.22);border-left:4px solid #c45a0a;border-radius:10px;padding:14px 20px;max-width:760px;margin:24px auto;font-size:14px;color:#6b7787;display:flex;align-items:center;justify-content:space-between;gap:16px}
.alert-strip-text{display:flex;align-items:center;gap:10px;flex:1}
.alert-strip-icon{width:18px;height:18px;flex-shrink:0;stroke:#c45a0a}
.alert-strip strong{color:#c45a0a}
.alert-strip-btn{white-space:nowrap;flex-shrink:0}

/* ── PRICE STRIP ── */
.price-strip{background:#1a2332;padding:22px 0}
.ps-inner{display:flex;align-items:center;gap:28px;flex-wrap:wrap;justify-content:center}
.ps-price-group{text-align:center;flex-shrink:0;line-height:1}
.ps-price{font-size:38px;font-weight:800;color:#fff;letter-spacing:-1.5px;line-height:1;white-space:nowrap}
.ps-label{font-size:11px;font-weight:600;color:rgba(255,255,255,.4);text-transform:uppercase;letter-spacing:1.5px;margin-top:3px}
.ps-sep{width:1px;height:52px;background:rgba(255,255,255,.12);flex-shrink:0}
.ps-features{display:flex;flex-direction:column;gap:5px}
.ps-features span{font-size:13px;color:rgba(255,255,255,.7);display:flex;align-items:center;gap:6px}
/* Legacy / fallback */
.ps-sub{font-size:12.5px;color:rgba(255,255,255,.45);margin-top:2px}
.price-big{font-size:36px;font-weight:800;color:#fff;letter-spacing:-1px;line-height:1}
.price-sub{font-size:19px;font-weight:500;color:rgba(255,255,255,.75);margin-top:0;letter-spacing:.2px}
@media(max-width:700px){.ps-sep{display:none}.ps-features{flex-direction:row;flex-wrap:wrap;justify-content:center;gap:6px}.ps-features span{font-size:12px}.ps-inner{gap:16px}}

/* ── STATS ── */
.stats,.stats-row{display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid #f0f0f0}
.stats>div,.stat{padding:36px 40px;border-right:1px solid #f0f0f0;text-align:center}
.stats>div:last-child,.stat:last-child{border-right:none}
.stat-num,.stat-n{font-size:32px;font-weight:800;color:#1a2332;letter-spacing:-1px;margin-bottom:4px}
.stat-label,.stat-l{font-size:13px;color:#8a94a0;line-height:1.4}

/* ── STEP CARDS ── */
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.step-card{background:#f8f9fb;border-radius:16px;padding:32px 24px;text-align:center;transition:all .2s}
.step-card:hover{background:#fff;box-shadow:0 8px 32px rgba(26,35,50,.1);transform:translateY(-2px)}
.step-num{width:44px;height:44px;border-radius:50%;background:#1a2332;color:#fff;font-weight:700;font-size:16px;display:flex;align-items:center;justify-content:center;margin:0 auto 18px}
.step-card h3{font-size:16px;font-weight:700;margin-bottom:8px;color:#1a2332}
.step-card p{font-size:14px;color:#6b7787;line-height:1.65}
.step-card a{color:#1d5fa8}

/* Process list style (alternative) */
.steps-list{margin-top:48px;display:flex;flex-direction:column;gap:0}
.step-row{display:grid;grid-template-columns:60px 1fr;gap:24px;padding:28px 0;border-bottom:1px solid #f5f5f5;align-items:start}
.step-row:last-child{border-bottom:none}
.step-n{font-size:13px;font-weight:700;color:#1d5fa8;letter-spacing:.5px;padding-top:4px}
.step-row h4{font-size:17px;font-weight:700;color:#1a2332;margin-bottom:6px}
.step-row p{font-size:14.5px;color:#6b7787;line-height:1.65}

/* ── TRUST CARDS ── */
.trust-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.trust-card,.trust-box{background:#f8f9fb;border-radius:14px;padding:28px 24px}
.trust-card:hover{background:#fff;box-shadow:0 4px 20px rgba(26,35,50,.08)}
.trust-icon,.tb-icon{font-size:28px;margin-bottom:14px;display:block}
.trust-card h3,.trust-box strong{display:block;font-size:15px;font-weight:700;color:#1a2332;margin-bottom:5px}
.trust-card p,.trust-box p{font-size:13.5px;color:#6b7787;line-height:1.55}

/* ── REVIEWS ── */
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:40px}
.rev{background:#fff;border:1px solid #eef0f3;border-radius:14px;padding:24px}
.rev-stars{color:#f0a500;font-size:14px;margin-bottom:12px;letter-spacing:2px}
.rev-text{font-size:14px;color:#6b7787;line-height:1.7;margin-bottom:16px;font-style:italic}
.rev-author{font-size:13.5px;font-weight:700;color:#1a2332}
.rev-author span{font-weight:400;color:#aab0bb}

/* ── FAQ ── */
.faq-list,.faq-wrap{max-width:680px;margin:48px auto 0}
.faq-item{border-bottom:1px solid #f0f0f0}
.faq-q{display:flex;justify-content:space-between;align-items:center;padding:20px 0;cursor:pointer;gap:16px;font-size:15.5px;font-weight:600;color:#1a2332;transition:color .15s}
.faq-q:hover{color:#1d5fa8}
.faq-q::after{content:'+';font-size:22px;color:#c0c8d4;flex-shrink:0;transition:transform .3s}
.faq-item.open .faq-q::after{content:'−';color:#1d5fa8}
.faq-a{font-size:14.5px;color:#6b7787;line-height:1.75;max-height:0;overflow:hidden;transition:max-height .35s ease,padding .35s ease;padding:0}
.faq-item.open .faq-a{max-height:300px;padding-bottom:20px}
.faq-a p{font-size:14.5px;color:#6b7787;line-height:1.75}
.faq-a a{color:#1d5fa8}

/* ── SEO CARDS ── */
.seo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.seo-card{background:#f8f9fb;border-radius:14px;padding:28px}
.seo-card h3{font-size:15px;font-weight:700;margin-bottom:10px;color:#1a2332}
.seo-card p{font-size:14px;color:#6b7787;line-height:1.75}

/* ── BLOG GRID ── */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.blog-card{background:#fff;border:1px solid #eef0f3;border-radius:16px;overflow:hidden;transition:all .2s;color:inherit;display:block;text-decoration:none}
.blog-card:hover{box-shadow:0 8px 32px rgba(26,35,50,.1);transform:translateY(-2px);border-color:#dce3ec}
.blog-card-body{padding:28px 28px 16px}
.blog-card-tag,.blog-tag{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:2px;margin-bottom:14px;display:inline-block;padding:4px 12px;border-radius:4px;background:#eef4fc;color:#1d5fa8}
.blog-card-tag.blue{background:#eef4fc;color:#1d5fa8}
.blog-card-tag.green{background:#f0faf4;color:#1a7a45}
.blog-card-tag.orange{background:#fff0e8;color:#c45a0a}
.blog-card h3{font-size:17px;font-weight:700;margin-bottom:10px;line-height:1.4;color:#1a2332}
.blog-card h3 a{color:#1a2332}
.blog-card h3 a:hover{color:#1d5fa8}
.blog-card p{font-size:14px;color:#6b7787;line-height:1.65}
.blog-card .read-more{font-size:13px;font-weight:600;color:#1d5fa8}
.blog-card-meta{display:flex;gap:16px;padding:12px 28px 20px;font-size:12px;color:#aab0bb;border-top:1px solid #f0f0f0;margin-top:8px}
.blog-card-img{height:180px;overflow:hidden;background:#f0f5ff;border-bottom:1px solid #f0f0f0}
.blog-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.blog-card:hover .blog-card-img img{transform:scale(1.04)}

/* ── PAGE HEADER ── */
.page-header{background:linear-gradient(180deg,#f0f5ff 0%,#fff 100%);padding:56px 0 48px;border-bottom:1px solid #f0f0f0;text-align:center}
.page-header h1{font-size:clamp(32px,4vw,52px);font-weight:800;letter-spacing:-1.5px;margin-bottom:10px}
.page-header p{font-size:17px;color:#6b7787}

/* ── BLOG PAGE TOP ── */
.page-top{background:linear-gradient(180deg,#f0f5ff 0%,#fff 100%);padding:64px 0 52px;border-bottom:1px solid #f0f0f0}
.page-top h1{font-size:clamp(32px,4vw,52px);font-weight:800;letter-spacing:-1.5px;color:#1a2332;margin-bottom:14px;line-height:1.1}
.page-top p{font-size:16.5px;color:#6b7787;max-width:540px;line-height:1.7}

/* ── ARTICLE LAYOUT ── */
.article-layout{display:grid;grid-template-columns:1fr 300px;gap:56px;padding:56px 0 80px;align-items:start}
.article-body h2{font-size:22px;font-weight:700;margin:40px 0 14px;letter-spacing:-.3px;color:#1a2332}
.article-body h3{font-size:17px;font-weight:700;margin:28px 0 10px;color:#1a2332}
.article-body p{font-size:15px;color:#4a5568;line-height:1.85;margin-bottom:16px}
.article-body ul,.article-body ol{margin:16px 0;padding-left:0}
.article-body li{font-size:15px;color:#4a5568;line-height:1.8;margin-bottom:10px;padding-left:22px;position:relative}
.article-body ul li::before{content:'→';position:absolute;left:0;color:#1d5fa8;font-size:13px;top:3px}
.article-body ol{counter-reset:ol-c;list-style:none}
.article-body ol li{counter-increment:ol-c}
.article-body ol li::before{content:counter(ol-c);position:absolute;left:0;color:#1d5fa8;font-size:13px;font-weight:700;top:2px}
.article-body a{color:#1d5fa8;text-decoration:underline}
.article-body strong{font-weight:700;color:#1a2332}
.info-box{background:#eef4fc;border:1px solid rgba(29,95,168,.15);border-left:3px solid #1d5fa8;border-radius:10px;padding:18px 22px;font-size:14.5px;color:#4a5568;margin:24px 0;line-height:1.75}
.info-box strong{color:#1d5fa8}
.warn-box{background:#fff8f3;border:1px solid rgba(196,90,10,.15);border-left:3px solid #c45a0a;border-radius:10px;padding:18px 22px;font-size:14.5px;color:#4a5568;margin:24px 0;line-height:1.75}
.warn-box strong{color:#c45a0a}
.warn-box a{color:#c45a0a}
.article-sidebar{position:sticky;top:84px}
.cta-card{background:#1a2332;border-radius:16px;padding:28px;text-align:center;margin-bottom:20px}
.cta-card h4{font-size:17px;font-weight:700;margin-bottom:10px;color:#fff}
.cta-card p{font-size:13px;color:rgba(255,255,255,.55);margin-bottom:20px}
.cta-card .btn-dark{width:100%;background:#1d5fa8}
.cta-card .btn-dark:hover{background:#174d8a}
.related-card{background:#f8f9fb;border-radius:14px;padding:24px}
.related-card h4{font-size:11px;font-weight:700;margin-bottom:16px;color:#8a94a0;text-transform:uppercase;letter-spacing:2px}
.related-card a{display:block;padding:10px 0;font-size:14px;color:#4a5568;border-bottom:1px solid #f0f0f0;text-decoration:none}
.related-card a:last-child{border:none}
.related-card a:hover{color:#1d5fa8}

/* ── DOC PAGE ── */
.cert-sel{display:flex;gap:12px;justify-content:center;margin-bottom:48px}
.cert-sel-btn{background:#fff;border:2px solid #e8edf2;border-radius:14px;padding:28px 24px;cursor:pointer;transition:all .2s;text-align:left;font-family:'Inter',sans-serif;font-size:15px;font-weight:600;color:#1a2332}
.cert-sel-btn:hover{border-color:#1d5fa8;background:#f5f9ff}
.cert-sel-btn.active-yes{border-color:#1a7a45;background:#f0faf4}
.cert-sel-btn.active-no{border-color:#c45a0a;background:#fff8f3}
.doc-panel,.cert-panel{display:none}
.doc-panel.active,.cert-panel.active{display:block;animation:fadeIn .25s ease}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.doc-grid,.docs-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:20px;margin-bottom:48px}
.doc-card{background:#fff;border:1px solid #e8edf2;border-radius:12px;padding:20px;display:flex;gap:14px;align-items:flex-start;transition:all .15s}
.doc-card:hover{border-color:#c5d9f0;box-shadow:0 4px 16px rgba(29,95,168,.08)}
.doc-card.req{border-left:3px solid #1d5fa8}
.doc-card.key{border-left:3px solid #c45a0a}
.doc-card .doc-icon,.dc-icon{font-size:24px;flex-shrink:0;margin-top:1px}
.doc-card h3{font-size:14.5px;font-weight:700;color:#1a2332;margin-bottom:4px;display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.doc-card p{font-size:13px;color:#6b7787;line-height:1.55}
.badge-required,.dc-badge.blue{font-size:10px;background:#eef4fc;color:#1d5fa8;padding:2px 8px;border-radius:4px;font-weight:700;text-transform:uppercase}
.badge-cert,.dc-badge.orange{font-size:10px;background:#fff0e8;color:#c45a0a;padding:2px 8px;border-radius:4px;font-weight:700;text-transform:uppercase}
.badge-optional{font-size:10px;background:#f5f6f8;color:#8a94a0;padding:2px 8px;border-radius:4px;font-weight:700;text-transform:uppercase}
.doc-note{background:#f8f9fb;border-radius:12px;padding:22px;font-size:14px;color:#6b7787;line-height:1.75;margin-top:32px}
.doc-note strong{color:#1a2332}
.alert{border-radius:10px;padding:16px 20px;margin:28px 0;font-size:14.5px;line-height:1.65;display:flex;gap:12px;align-items:flex-start}
.alert.green{background:#f0faf4;border:1px solid rgba(26,122,69,.2);border-left:3px solid #1a7a45}
.alert.orange{background:#fff8f3;border:1px solid rgba(196,90,10,.2);border-left:3px solid #c45a0a}
.alert strong{color:#1a2332;font-weight:600}
.cta-block{background:#f8f9fb;border-radius:16px;padding:36px;margin-top:48px;display:flex;justify-content:space-between;align-items:center;gap:24px}
.cta-block h3{font-size:22px;font-weight:700;color:#1a2332;margin-bottom:5px}
.cta-block p{font-size:14px;color:#8a94a0}

/* ── STEPPER FORM ── */
.stepper-wrap{max-width:900px;margin:0 auto}
.stepper-layout,.tramite-layout{display:grid;grid-template-columns:1fr 300px;gap:32px;align-items:start;padding:48px 0}
.stepper-bar{background:#fff;border:1px solid #e8edf2;border-radius:16px;overflow:hidden;display:flex;border-bottom:1px solid #f0f0f0;background:#fafafa}
.step-bullet,.sb-step{flex:1;display:flex;align-items:center;gap:10px;padding:14px 16px;font-size:13.5px;font-weight:500;color:#a0aab4;border-right:1px solid #f0f0f0;cursor:pointer;transition:all .15s;position:relative}
.step-bullet:last-child,.sb-step:last-child{border-right:none}
.step-bullet.active,.sb-step.active{color:#1a2332;font-weight:700;background:#fff}
.step-bullet.done,.sb-step.done{color:#1a7a45}
.step-dot,.sb-circle{width:26px;height:26px;border-radius:50%;border:2px solid #d8dde4;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;flex-shrink:0;transition:all .15s}
.step-bullet.active .step-dot,.sb-step.active .sb-circle{border-color:#1a2332;background:#1a2332;color:#fff}
.step-bullet.done .step-dot,.sb-step.done .sb-circle{border-color:#1a7a45;background:#1a7a45;color:#fff}
.step-bullet.locked{opacity:.4;pointer-events:none;cursor:not-allowed}
.step-label small,.sb-lbl small{font-size:11px;color:#a0aab4;font-weight:400;display:block}
.step-bullet.active .step-label small,.sb-step.active .sb-lbl small{color:#8a94a0}
.step-panel,.s-panel{display:none;padding:32px}
.step-panel.active,.s-panel.active{display:block}
.step-panel h2{font-size:22px;font-weight:700;margin-bottom:24px;color:#1a2332}
.f-title{font-size:12px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:#a0aab4;border-bottom:1px solid #f0f0f0;padding-bottom:10px;margin:0 0 18px}
.f-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px}
.f-row{margin-bottom:12px}
.f-row label{display:block;font-size:11.5px;font-weight:700;text-transform:uppercase;letter-spacing:.8px;color:#8a94a0;margin-bottom:6px}
.f-row input,.f-row select,.f-row textarea{width:100%;padding:12px 16px;border:1.5px solid #e0e5ec;border-radius:10px;font-size:14.5px;font-family:'Inter',sans-serif;transition:border-color .15s,box-shadow .15s;background:#fff;color:#1a2332}
.f-row input::placeholder,.f-row textarea::placeholder{color:#b0bac6}
.f-row input:focus,.f-row select:focus,.f-row textarea:focus{border-color:#1d5fa8;outline:none;box-shadow:0 0 0 3px rgba(29,95,168,.1)}
.f-row input[type=file]{padding:12px 16px;background:#fafafa;cursor:pointer;border-style:dashed}
.f-note{font-size:12px;color:#a0aab4;margin-top:4px}
.cert-btn-group,.cert-btns{display:grid;grid-template-columns:1fr 1fr;gap:14px;max-width:500px;margin:0 auto}
.cert-q{text-align:center;padding:8px 0 28px}
.cert-q h3{font-size:22px;font-weight:700;color:#1a2332;margin-bottom:8px;letter-spacing:-.3px}
.cert-q p{font-size:15px;color:#6b7787;margin-bottom:28px}
.cert-btn{background:#fff;border:2px solid #e8edf2;border-radius:14px;padding:22px 18px;text-align:center;cursor:pointer;transition:all .2s;font-family:'Inter',sans-serif}
.cert-btn:hover{border-color:#1d5fa8;background:#f5f9ff}
.cert-btn.sel-yes{border-color:#1a7a45;background:#f0faf4}
.cert-btn.sel-no{border-color:#c45a0a;background:#fff8f3}
.cert-btn .cert-emoji,.cert-btn .cb-icon{font-size:38px;margin-bottom:10px;display:block}
.cert-btn .cert-title,.cert-btn h4{font-size:15px;font-weight:700;color:#1a2332;margin-bottom:4px;font-family:'Inter',sans-serif}
.cert-btn .cert-desc,.cert-btn p{font-size:12.5px;color:#8a94a0;line-height:1.45}
.cert-tip{border-radius:10px;padding:13px 16px;margin-top:18px;font-size:13.5px;line-height:1.6;display:none}
.cert-tip.show{display:block}
.cert-tip.green{background:#f0faf4;border:1px solid rgba(26,122,69,.15);color:#174d30}
.cert-tip.orange{background:#fff8f3;border:1px solid rgba(196,90,10,.15);color:#7a3800}
.step-actions{display:flex;gap:12px;margin-top:24px}
.form-sidebar{background:#fff;border:1px solid #e8edf2;border-radius:16px;padding:28px;position:sticky;top:84px}
.form-sidebar h3{font-size:16px;font-weight:700;margin-bottom:16px;color:#1a2332}
.sidebar-price,.mpb-price{font-size:44px;font-weight:800;color:#1a2332;letter-spacing:-2px;margin-bottom:4px}
.sidebar-price-note,.mpb-note{font-size:13px;color:#8a94a0;margin-bottom:22px}
.sidebar-list li{font-size:13px;color:#4a5568;padding:9px 0;border-bottom:1px solid #f0f0f0;display:flex;align-items:center;gap:10px}
.sidebar-list li:last-child{border:none}
.sidebar-guarantee{background:#f0faf4;border:1px solid rgba(26,122,69,.15);border-radius:10px;padding:14px;margin-top:18px;font-size:13px;color:#6b7787;text-align:center}
.mobile-price-banner{display:none;background:#f0f5ff;border:1px solid rgba(29,95,168,.15);border-radius:14px;padding:18px;text-align:center;margin-bottom:28px}
.check-row{display:flex;gap:12px;align-items:flex-start;margin-bottom:18px}
.check-row input[type=checkbox]{width:18px;height:18px;margin-top:3px;flex-shrink:0;accent-color:#1d5fa8}
.check-row label{font-size:13px;color:#6b7787;line-height:1.6}
.check-row label a{color:#1d5fa8;text-decoration:underline}

/* ── ABOUT ── */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.about-text p{font-size:15px;color:#4a5568;line-height:1.85;margin-bottom:18px}
.about-text strong{color:#1a2332}
.about-card{background:#f8f9fb;border-radius:16px;padding:36px}
.about-card h3{font-size:16px;font-weight:700;margin-bottom:20px;color:#1a2332}
.about-card li{font-size:14px;padding:8px 0;color:#4a5568;border-bottom:1px solid #f0f0f0}
.about-card li:last-child{border:none}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:48px}
.value-card{text-align:center;padding:28px;background:#f8f9fb;border-radius:14px}
.value-card .value-icon{font-size:0;width:52px;height:52px;display:flex;align-items:center;justify-content:center;background:#eef4fc;border-radius:14px;margin:0 auto 14px;color:#2563eb}
.value-icon svg{width:28px;height:28px;stroke:currentColor;fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.value-card h3{font-size:15px;font-weight:700;margin-bottom:6px;color:#1a2332}
.value-card p{font-size:13px;color:#6b7787}
.family-section{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:48px}
.family-card{background:#f8f9fb;border-radius:16px;padding:36px}
.family-card h3{font-size:18px;font-weight:700;margin-bottom:10px;color:#1a2332}
.family-card p{font-size:14px;color:#6b7787;line-height:1.75}
.office-section{margin-top:56px;text-align:center}
.office-section h2{font-size:26px;font-weight:700;margin-bottom:20px;color:#1a2332}
.office-info{display:inline-flex;align-items:center;gap:10px;font-size:15px;color:#6b7787;background:#f8f9fb;padding:16px 28px;border-radius:14px;border:1px solid #eaedf0}

/* ── CONTACT ── */
.contact-layout{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start}
.contact-info h2{font-size:28px;font-weight:700;margin-bottom:16px;color:#1a2332}
.contact-info p{font-size:15px;color:#6b7787;line-height:1.75;margin-bottom:24px}
.contact-item{display:flex;align-items:center;gap:14px;padding:14px 0;font-size:15px;color:#4a5568}
.contact-item .ci-icon{width:44px;height:44px;background:#eef4fc;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#2563eb}
.ci-icon svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.contact-form{background:#f8f9fb;border-radius:16px;padding:36px}
.contact-form h3{font-size:20px;font-weight:700;margin-bottom:6px;color:#1a2332}

/* ── VENTAJAS ── */
.ventajas-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:8px}
.ventaja-card{background:#f8f9fb;border-radius:18px;padding:28px 22px;border:1.5px solid #eaecf0;transition:border-color .18s,box-shadow .18s,transform .18s}
.ventaja-card:hover{border-color:#bdd3f0;box-shadow:0 6px 24px rgba(26,35,50,.09);transform:translateY(-2px)}
.ventaja-icon{font-size:0;width:48px;height:48px;display:flex;align-items:center;justify-content:center;background:#eef4fc;border-radius:12px;margin-bottom:16px;color:#2563eb}
.ventaja-icon svg{width:26px;height:26px;stroke:currentColor;fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.ventaja-card h3{font-size:14.5px;font-weight:700;color:#1a2332;margin-bottom:8px;line-height:1.3}
.ventaja-card p{font-size:13px;color:#6b7787;line-height:1.65;margin:0}

/* ── FOOTER ── */
.site-footer,footer{background:#1a2332;padding:72px 0 0;color:rgba(255,255,255,.6)}
.ft-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:32px;margin-bottom:56px}
.ft-brand h3{font-size:18px;font-weight:800;margin-bottom:14px;color:#fff;letter-spacing:-.3px}
.ft-brand h3 span{color:rgba(255,255,255,.4)}
.ft-brand p{font-size:13px;color:rgba(255,255,255,.45);line-height:1.75}
.ft-brand a{color:rgba(255,255,255,.55);font-size:13px}
.ft-brand a:hover{color:#fff}
.ft-col h4{font-size:11px;font-weight:700;margin-bottom:18px;color:rgba(255,255,255,.3);text-transform:uppercase;letter-spacing:2px}
.ft-col p{font-size:13px;color:rgba(255,255,255,.4);line-height:1.75}
.ft-col a{display:block;padding:4px 0;font-size:13px;color:rgba(255,255,255,.45);transition:color .15s;text-decoration:none}
.ft-col a:hover{color:#fff}
.ft-bot{border-top:1px solid rgba(255,255,255,.08);padding:24px 0;text-align:center}
.ft-bot p{font-size:12px;color:rgba(255,255,255,.25);white-space:normal;word-break:break-word;padding:0 16px}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .nav-links,.nav-center,.nav-actions .btn-outline,.nav-actions .btn-dark,.nav-actions .btn-primary,.nav-right .btn-contact{display:none !important}
  .nav-hamburger{display:flex}
  .hero h1{font-size:40px;letter-spacing:-2px}
  .hero-sub,.lead{font-size:16px}
  .hero-split{grid-template-columns:1fr;gap:32px}
  .hero-content{text-align:center}
  .hero-content .hero-sub{margin:0 auto}
  .hero-content .hero-actions{justify-content:center}
  .hero-image{height:280px}
  .hero-image img{height:280px}
  .stats,.stats-row{grid-template-columns:repeat(2,1fr)}
  .stats>div,.stat{border-right:none;border-bottom:1px solid #f0f0f0}
  .steps-grid{grid-template-columns:1fr 1fr;gap:12px}
  .trust-grid{grid-template-columns:1fr 1fr}
  .ventajas-grid{grid-template-columns:repeat(2,1fr)}
  .reviews-grid{grid-template-columns:1fr}
  .seo-grid{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr 1fr}
  .stepper-layout,.tramite-layout{grid-template-columns:1fr}
  .form-sidebar{display:none}
  .mobile-price-banner{display:block}
  .about-grid{grid-template-columns:1fr}
  .family-section{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr 1fr}
  .contact-layout{grid-template-columns:1fr}
  .article-layout{grid-template-columns:1fr;gap:28px;padding:40px 0 56px}
  .article-sidebar{position:static}
  .ft-grid{grid-template-columns:1fr 1fr}
  .section{padding:48px 0}
  .section-header{margin-bottom:36px}
  /* Alert strip: reducir espacio */
  .alert-strip{margin:0 auto 24px}
  .f-grid{grid-template-columns:1fr}
  .cert-btn-group,.cert-btns{grid-template-columns:1fr}
  .cert-sel{flex-direction:column}
  .doc-grid,.docs-grid{grid-template-columns:1fr}
  .step-actions{flex-direction:column-reverse;gap:10px}
  .step-actions .btn{width:100%;min-height:52px;font-size:16px;justify-content:center}
  .step-actions span{text-align:center;display:block}
  .cta-block{flex-direction:column;text-align:center}
  .price-strip .container{flex-direction:column;text-align:center}
  .container{padding:0 20px}
  nav:not(.site-nav){padding:0 20px}
  .nav-inner{padding:0 16px}
  /* Logo más compacto en móvil */
  .nav-logo .logo-sub{font-size:12px}
  .nav-logo .logo-sep{margin:0 8px}
  /* Mobile price banner polish */
  .mobile-price-banner{border-radius:16px;padding:20px;margin-bottom:24px;border:1.5px solid rgba(29,95,168,.2)}
  .mpb-top{display:flex;flex-direction:column;align-items:center;margin-bottom:14px}
  .mpb-price{font-size:38px;letter-spacing:-1.5px;font-weight:800;color:#1a2332;white-space:nowrap;line-height:1}
  .mpb-note{font-size:13px;color:#6b7787;margin-top:4px}
  /* Trust grid inside mobile price banner */
  .mpb-trust-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
  .mpb-trust-item{font-size:12.5px;color:#4a5568;font-weight:500;background:#f0f5ff;border-radius:8px;padding:8px 10px;text-align:center;line-height:1.4}
  /* Stepper bar mobile */
  .stepper-bar{border-radius:12px}
  /* Contact form */
  .contact-form{padding:28px 20px}
  .contact-info h2{font-size:24px}
  /* Hero right column: reset margin, hide desktop highlights */
  .hero-right{margin-top:0}
  .hero-hl-desktop{display:none}
  .hero-hl-mobile{display:flex;flex-direction:column;gap:10px}
}
@media(max-width:600px){
  .blog-grid{grid-template-columns:1fr}
  .hero h1{font-size:30px;letter-spacing:-1.2px;margin-bottom:14px}
  .hero{padding:36px 0 28px}
  .hero-image{display:none}
  .hero-actions .btn{width:100%;justify-content:center}
  .ps-price{font-size:32px}
  .steps-grid{grid-template-columns:1fr}
  .ventajas-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:1fr}
  .ft-grid{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr}
  .section{padding:36px 0}
  .section-alt{padding:36px 0}
  .section-header{margin-bottom:32px}

  /* ── HOMEPAGE CTA DARK BLOCK ── */
  .home-cta-dark{margin-top:28px !important;padding:28px 20px !important;border-radius:16px !important}
  .home-cta-dark h3{font-size:20px !important;margin-bottom:6px !important}
  .home-cta-dark p{font-size:14.5px !important;margin-bottom:20px !important}
  .home-cta-btn{width:100% !important;justify-content:center !important;font-size:15px !important;padding:14px 20px !important;border-radius:12px !important;box-sizing:border-box !important}

  /* ── MOBILE NAV CONTACT LINK ── */
  .nav-mobile .mob-contact-link{display:flex !important;align-items:center;justify-content:center;text-align:center;padding:14px 28px;font-size:14.5px;color:#1a2332;font-weight:600;text-decoration:none;border:1.5px solid #d0d5dd !important;border-radius:50px;background:#fff;width:100%;box-sizing:border-box}
  .nav-mobile .mob-contact-link:hover{border-color:#1a2332 !important;background:#f5f6f8}

  /* ── STEPPER BAR ── */
  .stepper-bar{flex-direction:row;border-radius:12px;overflow:hidden}
  .step-bullet,.sb-step{
    flex-direction:column;align-items:center;justify-content:center;
    gap:6px;padding:12px 6px;
    border-bottom:none;border-right:1px solid #f0f0f0;
    min-width:0;flex:1
  }
  .step-bullet:last-child,.sb-step:last-child{border-right:none}
  .step-label,.sb-lbl{
    font-size:11px;text-align:center;line-height:1.25;
    display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;
    overflow:hidden;max-width:100%;white-space:normal;font-weight:600
  }
  .step-bullet.active .step-label{color:#1a2332}
  .step-label small,.sb-lbl small{display:none}
  .step-dot,.sb-circle{width:30px;height:30px;font-size:13px;font-weight:700}

  /* ── FORM PANELS ── */
  .f-row input,.f-row select,.f-row textarea{font-size:16px;padding:14px 16px;border-radius:12px}
  .f-row input[type=file]{padding:14px 16px}
  .f-row label{font-size:12px;margin-bottom:7px;letter-spacing:1px}
  .f-note{font-size:12.5px;margin-top:6px;line-height:1.5}
  .step-panel,.s-panel{padding:24px 18px}
  .step-panel h2{font-size:20px;margin-bottom:18px}
  .f-row{margin-bottom:16px}
  .f-grid{gap:0}
  .f-title{margin-bottom:20px}

  /* ── PAGE HEADER (form page) ── */
  .page-header{padding:32px 0 24px}
  .page-header h1{font-size:24px;letter-spacing:-.8px;line-height:1.15}
  .page-header p{font-size:14.5px;line-height:1.6;color:#6b7787;margin-top:6px}
  .section-eyebrow{font-size:10.5px;letter-spacing:2.5px;margin-bottom:10px}

  /* ── CERT BUTTONS ── */
  .cert-btn-group,.cert-btns{grid-template-columns:1fr 1fr;max-width:100%;gap:10px}
  .cert-btn{padding:18px 12px;border-radius:12px}
  .cert-btn .cert-emoji,.cert-btn .cb-icon{font-size:30px;margin-bottom:8px}
  .cert-btn .cert-title,.cert-btn h4{font-size:14px}
  .cert-btn .cert-desc,.cert-btn p{font-size:11.5px;line-height:1.4}
  .cert-tip{font-size:13px;padding:14px 16px;border-radius:10px;margin-top:14px}
  .cert-q p{font-size:14px;margin-bottom:22px}

  /* ── MOBILE PRICE BANNER ── */
  .mobile-price-banner{padding:18px 16px;margin-bottom:20px;border-radius:14px}
  .mpb-price{font-size:36px;letter-spacing:-1.5px}
  .mpb-note{font-size:13px}

  /* ── STEP 4: Override inline styles ── */
  .summary-grid{grid-template-columns:1fr !important;gap:16px !important;padding:18px !important}
  .summary-price{flex-direction:column !important;align-items:center !important;gap:10px !important;text-align:center !important;padding:20px 18px !important;border-radius:14px !important}
  .summary-price strong:last-child{font-size:28px !important;color:#059669}
  .check-row{gap:14px}
  .check-row input[type=checkbox]{width:22px;height:22px;margin-top:1px}
  .check-row label{font-size:13.5px;line-height:1.65}

  /* ── STEP ACTIONS ── */
  .step-actions{margin-top:28px;gap:10px}
  .step-actions .btn{border-radius:14px;font-weight:700}
  .step-actions .btn-primary,.step-actions .btn-green{min-height:56px;font-size:16px}
  .step-actions .btn-outline{min-height:48px;font-size:15px;background:#f8f9fb}

  /* ── HOMEPAGE ── */
  .alert-strip{flex-direction:column;align-items:flex-start;gap:12px;padding:14px 16px;margin:0 0 24px}
  .alert-strip-btn{width:100%;justify-content:center}
  .stats,.stats-row{grid-template-columns:1fr}
  .stats>div,.stat{border-right:none;padding:20px 16px}
  .stat-num,.stat-n{font-size:26px}
  /* Price strip compacto */
  .price-strip{padding:16px 0}
  .ps-inner{gap:12px;padding:0 4px}
  .ps-features{gap:4px}
  .ps-features span{font-size:12px}
  /* Step cards compactas */
  .step-card{padding:22px 16px}
  /* Trust cards compactas */
  .trust-card,.trust-box{padding:18px 16px}

  /* ── BLOG ARTICLE ── */
  .page-top{padding:40px 0 32px}
  .page-top h1{font-size:26px;letter-spacing:-1px}
  .page-top p{font-size:15px}
  .article-body h2{font-size:19px;margin:32px 0 12px}
  .article-body h3{font-size:16px;margin:22px 0 8px}
  .article-body p{font-size:14.5px}
  .info-box,.warn-box{padding:16px 18px;font-size:14px}

  /* ── CONTACT PAGE ── */
  .contact-form{padding:24px 18px;border-radius:14px}
  .contact-form h3{font-size:18px}
  .contact-item{padding:12px 0}

  /* ── FOOTER ── */
  .ft-bot p{font-size:11.5px;line-height:1.6}
  footer,.site-footer{padding:48px 0 0}
  .ft-grid{gap:28px;margin-bottom:36px}
}

@media(max-width:400px){
  .nav-logo .logo-sub,.nav-logo .logo-sep{display:none}
}

/* ── MOBILE HELP BLOCK (form page) ── */
.mob-help-block{display:none}
@media(max-width:900px){
  .mob-help-block{
    display:flex;flex-direction:column;align-items:center;
    text-align:center;
    margin-top:32px;padding:24px 20px;
    background:#f8f9fb;border:1.5px solid #e2eaf6;border-radius:16px;
  }
  .mob-help-text{font-size:18px;font-weight:700;color:#1a2332;margin-bottom:4px}
  .mob-help-sub{font-size:14px;color:#6b7787;margin-bottom:18px;line-height:1.5}
  .mob-help-btn{width:100%;justify-content:center}
}

/* ── COOKIE BANNER (RGPD) ── */
.cookie-banner{display:none;position:fixed;bottom:0;left:0;right:0;z-index:9999;background:#1a2332;color:rgba(255,255,255,.85);padding:18px 24px;box-shadow:0 -4px 24px rgba(0,0,0,.18);font-size:14px;line-height:1.6}
.cookie-banner.show{display:block;animation:cookieSlide .35s ease}
@keyframes cookieSlide{from{transform:translateY(100%)}to{transform:translateY(0)}}
.cookie-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;gap:20px;flex-wrap:wrap;justify-content:space-between}
.cookie-text{flex:1;min-width:260px}
.cookie-text a{color:#7db4f0;text-decoration:underline}
.cookie-buttons{display:flex;gap:10px;flex-shrink:0}
.cookie-btn{padding:10px 22px;border-radius:50px;font-size:14px;font-weight:600;border:none;cursor:pointer;font-family:'Inter',sans-serif;transition:all .15s}
.cookie-btn-accept{background:#1a7a45;color:#fff}
.cookie-btn-accept:hover{background:#156038}
.cookie-btn-reject{background:transparent;color:rgba(255,255,255,.6);border:1.5px solid rgba(255,255,255,.2)}
.cookie-btn-reject:hover{border-color:rgba(255,255,255,.5);color:#fff}
@media(max-width:600px){.cookie-inner{flex-direction:column;text-align:center}.cookie-buttons{width:100%;justify-content:center}}

/* ── HERO B (homepage card layout) ── */
.hero-b{background:#fff;padding:52px 0 0}
.hero-b-grid{display:grid;grid-template-columns:1.15fr 0.85fr;gap:52px;align-items:center}
.hero-b-left h1{font-size:clamp(38px,4.8vw,60px);font-weight:800;line-height:1.05;letter-spacing:-2px;color:#1a2332;margin-bottom:16px}
.hero-b-left h1 em{color:#1d5fa8;font-style:normal}
.hero-b-sub{font-size:16.5px;color:#6b7787;line-height:1.7;margin:0 0 24px;max-width:100%}
.hero-b-sub strong{color:#1a2332;font-weight:600}
.hero-b-checks{display:flex;flex-wrap:wrap;gap:8px 0}
.hero-b-checks span{font-size:13px;color:#4a5568;font-weight:500;display:flex;align-items:center;gap:6px;width:100%}
.hero-b-checks span::before{content:'';display:inline-block;width:18px;height:18px;background:#f0faf4;border:1px solid #b6e5cc;border-radius:50%;flex-shrink:0;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231a7a45' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center;background-size:11px}
.hero-b-card{background:#fff;border:1.5px solid #e2eaf6;border-radius:24px;padding:32px 28px;box-shadow:0 20px 64px rgba(26,35,50,.13)}
.hbc-header{text-align:center;padding-bottom:20px;border-bottom:1px solid #f0f0f0;margin-bottom:18px}
.hbc-price{font-size:48px;font-weight:800;color:#1a7a45;letter-spacing:-2px;line-height:1}
.hbc-price-sub{font-size:12px;color:#8a94a0;margin-top:4px;font-weight:500}
.hbc-features{list-style:none;margin:0 0 22px;padding:0;display:flex;flex-direction:column;gap:10px}
.hbc-features li{font-size:13.5px;color:#374151;display:flex;align-items:center;gap:10px;font-weight:500}
.hbc-features li::before{content:'✓';color:#1a7a45;font-weight:700;font-size:14px;flex-shrink:0;width:18px}
.hbc-cta{width:100%;justify-content:center;font-size:16px;padding:16px 28px}
.hbc-note{text-align:center;font-size:11.5px;color:#aab0bb;margin-top:12px}
.hero-b-photo{margin-top:40px;border-radius:20px;overflow:hidden;box-shadow:0 12px 40px rgba(26,35,50,.1);max-height:300px}
.hero-b-photo img{width:100%;height:300px;object-fit:cover;display:block;object-position:center 35%}
@media(max-width:900px){
  .hero-b{padding:40px 0 24px}
  .hero-b-grid{grid-template-columns:1fr;gap:28px}
  .hero-b-left{text-align:center}
  .hero-b-checks{justify-content:center;flex-direction:column;align-items:center;gap:10px}
  .hero-b-checks span{width:100%;max-width:320px;text-align:left}
}
@media(max-width:600px){
  .hero-b{padding:32px 0 24px}
  .hero-b-photo{display:none}
  .hbc-price{font-size:42px}
}

/* ── LANG DROPDOWN (desktop compact hover dropdown, built by JS) ── */
.lang-dd{position:relative;display:none;align-items:center;margin-right:4px}
.lang-dd-btn{display:flex;align-items:center;gap:4px;background:none;border:1.5px solid #e8edf2;cursor:pointer;font-size:12.5px;font-weight:600;color:#4a5568;padding:5px 9px;border-radius:8px;font-family:'Inter',sans-serif;transition:all .15s;white-space:nowrap;line-height:1}
.lang-dd-btn:hover,.lang-dd:hover .lang-dd-btn{border-color:#c5d5e8;background:#f8f9fb;color:#1a2332}
.lang-dd-menu{display:none;position:absolute;top:calc(100% + 4px);right:0;background:#fff;border:1.5px solid #e8edf2;border-radius:10px;padding:5px;min-width:96px;box-shadow:0 8px 24px rgba(26,35,50,.1);z-index:200}
.lang-dd:hover .lang-dd-menu{display:block}
.lang-dd-item{display:block;padding:7px 12px;font-size:13px;font-weight:600;color:#4a5568;border-radius:6px;text-decoration:none;white-space:nowrap;transition:all .15s}
.lang-dd-item:hover{background:#f5f6f8;color:#1a2332}
.lang-dd-item.lang-dd-act{color:#1a2332;background:#f0f4ff}
@media(min-width:901px){.lang-dd{display:flex}}

/* ── LANG MOBILE NAV (visible in nav bar on mobile, built by JS) ── */
.nav-lang-mob{display:none;align-items:center;gap:0;margin-right:6px}
.lang-m{font-size:11.5px;font-weight:700;color:#8a94a0;padding:4px 5px;border-radius:5px;text-decoration:none;line-height:1;transition:color .15s}
.lang-m.lang-m-act{color:#1a2332}
.lang-m:hover{color:#1d5fa8}
@media(max-width:900px){.nav-lang-mob{display:flex}}

/* ── TESTIMONIALS ── */
.testimonials-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.testimonial-card{background:#f8f9fb;border:1px solid #e8edf2;border-radius:16px;padding:28px 24px}
.testimonial-stars{font-size:18px;color:#f59e0b;margin-bottom:12px;letter-spacing:2px}
.testimonial-text{font-size:15px;line-height:1.7;color:#374151;margin-bottom:16px;font-style:italic}
.testimonial-author strong{display:block;font-size:14px;font-weight:700;color:#1a2332}
.testimonial-author span{font-size:13px;color:#8a94a0}
@media(max-width:700px){.testimonials-grid{grid-template-columns:1fr}}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float{position:fixed;bottom:24px;right:24px;z-index:999;width:56px;height:56px;background:#25d366;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;box-shadow:0 4px 16px rgba(37,211,102,.45);transition:transform .2s,box-shadow .2s;text-decoration:none}
.whatsapp-float:hover{transform:scale(1.1);box-shadow:0 6px 24px rgba(37,211,102,.6)}
.whatsapp-float svg{width:30px;height:30px}
@media(max-width:600px){.whatsapp-float{bottom:16px;right:16px;width:50px;height:50px}.whatsapp-float svg{width:26px;height:26px}}
