@font-face {
    font-family: 'Cocogoose Oficial';
    src: url('../fonts/Cocogoose-Pro-Regular-trial.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cocogoose Oficial';
    src: url('../fonts/Cocogoose-Pro-Bold-trial.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat Oficial';
    src: url('../fonts/Montserrat-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --bg-midnight-navy: #262E44;   
    --color-ivory-glow: #F0E8CC;   
    --color-progress-sky: #10AED8;
    --color-strategic-coral: #EF5857; 
    --color-insight-yellow: #FBB043;
    --fuente-titulos: 'Cocogoose Oficial', sans-serif;
    --fuente-cuerpo: 'Montserrat Oficial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-midnight-navy);
    color: var(--color-ivory-glow);
    font-family: var(--fuente-cuerpo);
    overflow-x: hidden;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }

.num-fixed {
    font-family: var(--fuente-cuerpo) !important;
    font-weight: 700;
}

.contenedor-bloque {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.contenedor-bloque-grande {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.subtitulo-seccion {
    font-family: var(--fuente-titulos);
    font-size: 2.6rem;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

#compatibility {
    visibility: hidden;
}

.subtitulo-seccion-light {
    font-family: var(--fuente-titulos);
    font-size: 2.6rem;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* HEADER */
.sitio-header {
    width: 100%;
    padding: 1.2rem 8%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(38, 46, 68, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(240, 232, 204, 0.08);
}
.contenedor-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-enlace {
    display: block;
    text-decoration: none;
}
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.menu-principal {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-principal a {
    text-decoration: none;
    color: #cdd5e2;
    font-family: var(--fuente-cuerpo);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.menu-principal a:hover {
    color: var(--color-strategic-coral);
}

/* BOTONES */
.button {
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 6.25rem;
    color: var(--color-ivory-glow);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--fuente-cuerpo);
    font-size: 1.15rem;
    font-weight: 700;
    gap: 0.363636em;
    justify-content: center;
    letter-spacing: -0.01em;
    line-height: 1.04545;
    overflow: hidden;
    padding: 1.2rem 3rem;
    position: relative;
    text-decoration: none;
    z-index: 1;
}
.boton-nav-especifico {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
}
@media (hover: hover) {
    .button.button--stroke:hover {
        color: var(--bg-midnight-navy);
        text-decoration: none;
    }
}
.button--stroke:after {
    bottom: 0; left: 0; position: absolute; right: 0; top: 0;
    border: 0.125rem solid var(--color-strategic-coral);
    border-radius: 6.25rem;
    content: ""; pointer-events: none;
}
.button__label {
    position: relative; text-align: center;
    transition: color 50ms cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 2;
}
.button--stroke:hover .button__label {
    transition: color 0.15s cubic-bezier(0.76, 0, 0.24, 1);
}
.button__flair {
    bottom: 0; left: 0; pointer-events: none; position: absolute; right: 0; top: 0; z-index: 1;
}
.button--stroke .button__flair {
    transform: scale(0); transform-origin: 0 0; will-change: transform;
}
.button__flair:before {
    aspect-ratio: 1/1; background-color: var(--color-strategic-coral);
    border-radius: 50%; content: ""; display: block; left: 0; pointer-events: none;
    position: absolute; top: 0; transform: translate(-50%, -50%); width: 170%;
}

/* HERO */
.hero-section {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 12rem 2rem 8rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.bg-grid {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(240, 232, 204, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 232, 204, 0.04) 1px, transparent 1px);
    background-size: 60px 60px; z-index: 0; pointer-events: none;
}
.flair { position: absolute; pointer-events: none; z-index: 0; will-change: transform; }
.flair-1 { top: 15%; right: 12%; width: 380px; opacity: 0.12; filter: blur(3px); }
.flair-2 { bottom: 15%; left: 8%; width: 220px; opacity: 0.06; transform: rotate(-25deg); }
.flair-shape { border: 2px solid transparent; border-radius: 50%; opacity: 0.15; }
.shape-1 { top: 25%; left: 20%; width: 50px; height: 50px; border-color: var(--color-strategic-coral); }
.shape-2 { bottom: 35%; right: 25%; width: 90px; height: 90px; border-color: var(--color-progress-sky); }
.shape-3 { top: 70%; left: 75%; width: 25px; height: 25px; background-color: var(--color-insight-yellow); border: none; }
.contenido-hero { max-width: 1100px; position: relative; z-index: 2; }
.tagline-profesional { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 6px; color: var(--color-progress-sky); margin-bottom: 2rem; font-weight: 700; }
.titulo-principal { font-family: var(--fuente-titulos); font-size: 4.2rem; line-height: 1.25; margin-bottom: 2.5rem; color: #ffffff; text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3); }
.subtitulo { font-size: 1.35rem; margin-bottom: 4.5rem; color: #c8d1e0; line-height: 1.8; font-weight: 300; max-width: 850px; margin-left: auto; margin-right: auto; }

/* PROBLEMA */
.seccion-problema { background-color: #1E2536; }
.grid-problema { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 4rem; max-width: 1000px; margin: 0 auto; }
.hover-3d { background: rgba(255, 255, 255, 0.02); padding: 3.5rem 3rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.05); border-left: 4px solid var(--color-insight-yellow); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease; }
.hover-3d:hover, .hover-3d.is-active { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: var(--color-strategic-coral) !important; }
.texto-problema h3 { color: var(--color-insight-yellow); font-size: 1.6rem; margin-bottom: 2rem; font-family: var(--fuente-titulos); line-height: 1.35; }
.texto-problema p { font-weight: 300; color: #d1d9e6; font-size: 1.1rem; line-height: 1.8; }

/* AUTORIDAD */
.seccion-autoridad { background-color: #1A2030; width: 100%; }
.autor-split { display: flex; align-items: center; width: 100%; min-height: 100vh; }
.split-imagen { flex: 1; width: 50%; height: 100vh; overflow: hidden; position: relative; }
.split-imagen img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: brightness(0.9); }
.split-texto { flex: 1; width: 50%; padding: 4rem 2rem 4rem 4rem; display: flex; align-items: center; justify-content: flex-start; }
.wrapper-texto { max-width: 600px; }
.wrapper-texto p { font-size: 1.15rem; line-height: 1.9; color: #d1d9e6; margin-bottom: 2rem; font-weight: 300; }
.wrapper-texto strong { color: var(--color-progress-sky); font-weight: 600; }
.firma-autoridad { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.firma-linea-mask { overflow: hidden; margin-bottom: 0.5rem; }
.firma-nombre { display: block; font-family: var(--fuente-titulos); font-size: 2.4rem; color: var(--color-progress-sky); line-height: 1.1; letter-spacing: 1px; }
.firma-cargo { display: block; font-family: var(--fuente-cuerpo); font-size: 1.1rem; color: var(--color-insight-yellow); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
.firma-decoracion { display: flex; align-items: center; margin-top: 1.5rem; opacity: 0.8; }
.firma-circ { width: 8px; height: 8px; border: 2px solid var(--color-insight-yellow); border-radius: 50%; margin-right: 15px; }
.firma-line { height: 1px; width: 60px; background-color: var(--color-progress-sky); }

/* CERTIFICACIONES */
.seccion-certificaciones {
    background-color: #1E2536; padding: 3.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03); border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.grid-certificaciones {
    display: flex; justify-content: center; align-items: center; gap: 4.5rem; flex-wrap: wrap;
    max-width: 1300px; margin: 0 auto; padding: 0 2rem;
}
.img-certificado {
    max-height: 140px; width: auto; object-fit: contain; filter: brightness(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.img-certificado:hover { transform: scale(1.1) translateY(-3px); filter: brightness(1); }

/* DIAGNÓSTICO QUIZ */
.seccion-diagnostico { background-color: var(--bg-midnight-navy); }
.quiz-container {
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px; padding: 4rem; max-width: 900px; margin: 0 auto;
    position: relative; min-height: 450px; box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.quiz-view { width: 100%; }
.quiz-badge {
    display: inline-block; padding: 0.4rem 1.2rem; background: rgba(16, 174, 216, 0.1);
    color: var(--color-progress-sky); border: 1px solid rgba(16, 174, 216, 0.3);
    border-radius: 50px; font-size: 0.9rem; font-weight: 700; margin-bottom: 1.5rem;
    text-transform: uppercase; letter-spacing: 1px;
}
#quiz-intro h3 { font-family: var(--fuente-titulos); font-size: 2.4rem; color: #ffffff; line-height: 1.2; margin-bottom: 1.5rem; }
#quiz-intro p { font-size: 1.15rem; color: #cdd5e2; line-height: 1.8; font-weight: 300; margin-bottom: 2.5rem; }
.btn-quiz-primary { background-color: var(--color-strategic-coral); color: #ffffff; border: none; padding: 1.2rem 2.5rem; font-family: var(--fuente-cuerpo); font-size: 1.1rem; font-weight: 700; border-radius: 50px; cursor: pointer; transition: background-color 0.3s ease, transform 0.3s ease; box-shadow: 0 10px 20px rgba(239, 88, 87, 0.2); }
.btn-quiz-primary:hover { background-color: #d94b4a; transform: translateY(-2px); }
.quiz-header { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.5rem; }
.quiz-progress-text { font-size: 0.95rem; color: var(--color-insight-yellow); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.quiz-progress-bar { width: 100%; height: 6px; background: rgba(255, 255, 255, 0.05); border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: var(--color-insight-yellow); transition: width 0.4s ease; }
.pregunta-activa { font-family: var(--fuente-titulos); font-size: 1.8rem; color: #ffffff; line-height: 1.3; margin-bottom: 2.5rem; }
.grid-opciones { display: flex; flex-direction: column; gap: 1rem; }
.btn-opcion { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); padding: 1.5rem 2rem; border-radius: 8px; color: #cdd5e2; font-family: var(--fuente-cuerpo); font-size: 1.05rem; text-align: left; line-height: 1.5; cursor: pointer; transition: all 0.2s ease; }
.btn-opcion:hover { background: rgba(16, 174, 216, 0.05); border-color: var(--color-progress-sky); color: #ffffff; transform: translateX(5px); }
.spinner-audit { width: 60px; height: 60px; border: 4px solid rgba(255, 255, 255, 0.1); border-left-color: var(--color-insight-yellow); border-radius: 50%; animation: spin 1s linear infinite; margin: 3rem auto 2rem auto; }
@keyframes spin { 100% { transform: rotate(360deg); } }
#quiz-loader h3 { font-family: var(--fuente-titulos); color: var(--color-insight-yellow); font-size: 1.8rem; margin-bottom: 0.5rem; }
#quiz-loader p { color: #b4bccb; font-size: 1.1rem; }
.result-badge { background: rgba(239, 88, 87, 0.1); color: var(--color-strategic-coral); border-color: rgba(239, 88, 87, 0.3); }
.resultado-titulo { font-family: var(--fuente-titulos); font-size: 2.4rem; color: #ffffff; margin-bottom: 2rem; line-height: 1.1; }
.resultado-cuerpo { background: rgba(0, 0, 0, 0.2); padding: 2.5rem; border-radius: 8px; border-left: 4px solid var(--color-strategic-coral); margin-bottom: 2.5rem; }
.resultado-sub { color: var(--color-progress-sky); font-size: 1.1rem; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.resultado-cuerpo p { color: #cdd5e2; font-size: 1.1rem; line-height: 1.7; font-weight: 300; }
.resultado-cta { text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 2rem; }
.resultado-cta p { color: var(--color-insight-yellow); font-size: 1.15rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.5; }
.nota-captura { display: flex; align-items: center; gap: 1.2rem; background: rgba(255, 255, 255, 0.03); border-left: 3px solid var(--color-insight-yellow); padding: 1.2rem 1.5rem; border-radius: 6px; margin: 1.5rem auto 2.5rem auto; max-width: 650px; text-align: left; }
.nota-captura span { font-size: 1.8rem; }
.nota-captura p { color: #cdd5e2; font-size: 0.95rem; margin: 0; line-height: 1.5; font-weight: 300; }
.nota-captura strong { color: var(--color-insight-yellow); font-weight: 600; }

/* SIMULADOR DE ESCALAMIENTO Y TECH PITCH */
.seccion-simulador {
    --primary: #4f46e5; --primary-hover: #4338ca;
    --success: #10b981; --warning: #f59e0b; --danger: #f43f5e; 
    --info: #0ea5e9; --dream: #a855f7; --ghost: #64748b; --creative: #ec4899;
    --bg-card: #18181b;
    --text-main: #f8fafc; --text-muted: #a1a1aa;
    --border: #27272a;
    background-color: #09090b; 
    padding: 6rem 2rem;
    font-family: 'Inter', var(--fuente-cuerpo);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.seccion-simulador .sim-contenedor { max-width: 1200px; margin: auto; }

/* PITCH TECNOLÓGICO PERSUASIVO */
.tech-showcase-header { text-align: center; max-width: 900px; margin: 0 auto 40px auto; }
.tech-badge-top { display: inline-block; background: rgba(99, 102, 241, 0.1); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.3); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.tech-title { font-family: var(--fuente-titulos); font-size: 2.8rem; color: #ffffff; line-height: 1.1; margin-bottom: 1.5rem; }
.tech-description { font-size: 1.15rem; color: #cdd5e2; line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
.tech-description strong { color: var(--color-insight-yellow); font-weight: 600; }
.tech-bullets { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.t-bullet { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); padding: 10px 20px; border-radius: 8px; color: #f8fafc; font-size: 0.95rem; font-weight: 600; }
.tech-demo-instruction { background: linear-gradient(90deg, rgba(16, 174, 216, 0.1) 0%, rgba(239, 88, 87, 0.05) 100%); border-left: 3px solid var(--color-progress-sky); padding: 1.5rem; border-radius: 8px; text-align: left; max-width: 700px; margin: 0 auto; }
.tech-demo-instruction p { margin: 0; color: #ffffff; font-size: 1.05rem; line-height: 1.6; font-family: var(--fuente-cuerpo); }

/* WIZARD DEL SIMULADOR */
.seccion-simulador .wizard-card { background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border); padding: 40px; max-width: 600px; margin: 30px auto; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.seccion-simulador .wizard-step { display: none; }
.seccion-simulador .wizard-step.active { display: block; animation: simFadeIn 0.4s ease-in-out; }

.seccion-simulador .progress-bar-wrap { background: #27272a; border-radius: 10px; height: 6px; width: 100%; margin-bottom: 30px; overflow: hidden; }
.seccion-simulador .progress-bar-fill { background: var(--primary); height: 100%; width: 33%; transition: width 0.3s ease; }

.seccion-simulador .wizard-question { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; font-family: var(--fuente-titulos); line-height: 1.2; }
.seccion-simulador .wizard-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; display: block; }

.seccion-simulador .wizard-input-wrap { position: relative; margin-bottom: 25px; }
.seccion-simulador .wizard-input-wrap .currency-symbol { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); font-size: 20px; font-weight: 900; color: var(--text-muted); }

.seccion-simulador input[type="number"] { width: 100%; padding: 15px 15px 15px 35px; background: #09090b; border: 2px solid var(--border); border-radius: 10px; color: #fff; font-size: 20px; font-weight: 700; box-sizing: border-box; transition: 0.2s; font-family: var(--fuente-cuerpo); }
.seccion-simulador input[type="number"].no-symbol { padding-left: 15px !important; }
.seccion-simulador input[type="number"]:focus { border-color: var(--primary); outline: none; background: #0c0c12; }

.seccion-simulador .wizard-nav { display: flex; justify-content: space-between; gap: 15px; margin-top: 30px; }
.seccion-simulador .btn-nav { padding: 14px 28px; border-radius: 8px; font-weight: 700; cursor: pointer; border: none; font-size: 14px; transition: 0.2s; flex: 1; text-align: center; font-family: var(--fuente-cuerpo); }
.seccion-simulador .btn-next { background: var(--primary); color: #fff; }
.seccion-simulador .btn-next:hover { background: var(--primary-hover); }
.seccion-simulador .btn-back { background: #27272a; color: var(--text-muted); }
.seccion-simulador .btn-back:hover { background: #3f3f46; color: #fff; }

.seccion-simulador .live-helper-text { font-size: 13px; color: var(--success); font-weight: 700; display: block; margin-top: 8px; min-height: 20px; }

/* DASHBOARD FINAL SIMULADOR */
.seccion-simulador #dashboard-resultado { display: none; animation: simFadeInUp 0.6s ease-in-out; }
.seccion-simulador .main-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.seccion-simulador .simulador-card { background: var(--bg-card); border-radius: 16px; padding: 25px; border: 1px solid var(--border); display: flex; flex-direction: column;}
.seccion-simulador .card-title { font-size: 16px; font-weight: 800; margin-bottom: 25px; display: flex; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 15px; color: #fff; font-family: var(--fuente-titulos); }

.seccion-simulador .date-btn { background: #18181b; color: var(--text-muted); border: 1px solid #3f3f46; padding: 12px 20px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; transition: 0.2s; font-family: var(--fuente-cuerpo); }
.seccion-simulador .date-btn:hover { background: #27272a; color: white; }
.seccion-simulador .date-btn.active { background: rgba(79, 70, 229, 0.2); color: #818cf8; border-color: var(--primary); box-shadow: 0 0 10px rgba(79, 70, 229, 0.2); }

.seccion-simulador .money-box { background: rgba(16, 185, 129, 0.04); border: 1px solid rgba(16, 185, 129, 0.2); padding: 18px; border-radius: 12px; margin-bottom: 15px; }
.seccion-simulador .money-box .kpi-label { font-size: 12px; color: #34d399; font-weight: 800; display: flex; align-items: center; margin-bottom: 6px; text-transform: uppercase;}
.seccion-simulador .money-box .kpi-value { color: #34d399; font-size: 26px; font-weight: 900; }

.seccion-simulador .net-box { background: rgba(139, 92, 246, 0.04); border: 1px solid rgba(139, 92, 246, 0.2); padding: 18px; border-radius: 12px; margin-bottom: 15px; }
.seccion-simulador .net-box .kpi-label { font-size: 12px; color: #d8b4fe; font-weight: 800; display: flex; align-items: center; margin-bottom: 6px; text-transform: uppercase;}
.seccion-simulador .net-box .kpi-value { color: #d8b4fe; font-size: 26px; font-weight: 900; }

.seccion-simulador .finance-mini-box { background: #121215; padding: 15px; border-radius: 10px; border: 1px solid #27272a; text-align: center; display: flex; flex-direction: column; justify-content: center; position: relative;}
.seccion-simulador .finance-mini-box .kpi-label { font-size: 11px; color: var(--text-muted); font-weight: 700; margin-bottom: 6px; justify-content: center; display: flex; text-transform: uppercase;}
.seccion-simulador .finance-mini-box .kpi-value { font-size: 18px; font-weight: 900; color: #fff; }

.seccion-simulador .advanced-row { grid-column: span 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: 25px; margin-top: 10px;}
.seccion-simulador .advanced-card { background: #18181b; border-radius: 16px; border: 1px solid var(--border); padding: 25px; display: flex; flex-direction: column; }

.seccion-simulador .simulator-section { grid-column: span 2; background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%); border: 2px dashed #6366f1; padding: 40px; border-radius: 16px; margin-top: 20px; box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);}
.seccion-simulador .sim-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: center; }
.seccion-simulador .result-box { background: rgba(255,255,255,0.02); padding: 25px; border-radius: 12px; text-align: center; border: 1px solid rgba(255,255,255,0.08); }
.seccion-simulador .result-label { font-size: 11px; color: #94a3b8; font-weight: 800; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px;}
.seccion-simulador .result-val { font-size: 28px; font-weight: 900; color: #fff; }

.seccion-simulador input[type=range] { -webkit-appearance: none; appearance: none; background: transparent; padding: 0; border: none; }
.seccion-simulador input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; height: 24px; width: 24px; border-radius: 50%; background: #6366f1; cursor: pointer; margin-top: -10px; box-shadow: 0 0 10px rgba(99,102,241,0.6); }

.seccion-simulador input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 6px; cursor: pointer; background: #3f3f46; border-radius: 4px; }

.seccion-simulador .tech-exclusive-banner { background: linear-gradient(90deg, rgba(16, 174, 216, 0.1) 0%, rgba(239, 88, 87, 0.05) 100%); border: 1px solid rgba(16, 174, 216, 0.3); border-radius: 12px; padding: 25px 30px; display: flex; align-items: center; gap: 20px; margin: 40px auto 10px auto; text-align: left; }
.seccion-simulador .tech-icon { font-size: 3rem; background: rgba(255, 255, 255, 0.05); padding: 15px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.1); }
.seccion-simulador .tech-content h4 { color: var(--color-progress-sky); font-family: var(--fuente-titulos); font-size: 1.2rem; margin-bottom: 8px; }
.seccion-simulador .tech-content p { color: #cdd5e2; font-size: 0.95rem; margin: 0; line-height: 1.6; font-family: var(--fuente-cuerpo); }
.seccion-simulador .tech-content strong { color: #ffffff; }

.seccion-simulador .cta-box-public { background: rgba(244, 63, 94, 0.05); border: 2px solid rgba(244, 63, 94, 0.3); padding: 35px; border-radius: 16px; text-align: center; margin-top: 30px; animation: simPublicGlow 3s infinite; }
@keyframes simPublicGlow {
    0% { border-color: rgba(244, 63, 94, 0.3); box-shadow: 0 0 0 rgba(244, 63, 94, 0); }
    50% { border-color: rgba(244, 63, 94, 0.6); box-shadow: 0 0 25px rgba(244, 63, 94, 0.15); }
    100% { border-color: rgba(244, 63, 94, 0.3); box-shadow: 0 0 0 rgba(244, 63, 94, 0); }
}
.seccion-simulador .public-whatsapp-btn { background: #25d366; color: #fff; border: none; padding: 18px 40px; font-size: 16px; font-weight: 900; border-radius: 8px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-top: 20px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); transition: 0.2s; text-transform: uppercase; letter-spacing: 0.5px; font-family: var(--fuente-cuerpo); }
.seccion-simulador .public-whatsapp-btn:hover { background: #128c7e; transform: translateY(-2px); box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4); }

.seccion-simulador .tooltip-icon { background: #3f3f46; color: #a1a1aa; width: 16px; height: 16px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; cursor: help; margin-left: 6px; font-weight: 900; position: relative; transition: 0.2s;}
.seccion-simulador .tooltip-icon:hover { background: var(--primary); color: #fff; }
.seccion-simulador .tooltip-icon .tooltip-content { display: none; position: absolute; bottom: 130%; left: 50%; transform: translateX(-50%); background: #1e1e24; color: #f8fafc; padding: 15px; border-radius: 10px; font-size: 12px; width: 260px; z-index: 9999; font-weight: 400; text-align: left; line-height: 1.5; border: 1px solid #3f3f46; box-shadow: 0 15px 35px rgba(0,0,0,0.6); text-transform: none; letter-spacing: normal; white-space: normal;}
.seccion-simulador .tooltip-icon .tooltip-content::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border-width: 6px; border-style: solid; border-color: #1e1e24 transparent transparent transparent; }
.seccion-simulador .tooltip-icon:hover .tooltip-content { display: block; }

@keyframes simFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes simFadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* MÉTODO */
#metodo { padding-top: 5rem; }
#metodo .subtitulo-seccion { margin-bottom: 2rem; }
.introduccion-metodo { font-size: 1.4rem; margin: 0 auto 3.5rem auto; color: #b4bccb; font-weight: 300; text-align: center; max-width: 850px; line-height: 1.7; }
.grid-pasos { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3.5rem; }
.paso-card { background: rgba(255, 255, 255, 0.03); padding: 3.5rem 2.5rem; border-radius: 8px; border-top: 4px solid var(--color-progress-sky); position: relative; overflow: hidden; border-left: 1px solid rgba(255,255,255,0); border-right: 1px solid rgba(255,255,255,0); border-bottom: 1px solid rgba(255,255,255,0); }
.paso-card::after { content: attr(data-paso); position: absolute; bottom: -2rem; right: -1rem; font-family: var(--fuente-cuerpo); font-size: 10rem; font-weight: 900; color: rgba(255, 255, 255, 0.03); line-height: 1; z-index: 0; pointer-events: none; transition: color 0.4s ease; }
.paso-card:hover::after, .paso-card.is-active::after { color: rgba(239, 88, 87, 0.08); }
.paso-card h4, .paso-card p { position: relative; z-index: 1; }
.paso-card h4 { font-family: var(--fuente-titulos); font-size: 1.35rem; margin-bottom: 1.5rem; color: var(--color-progress-sky); }
.paso-card p { font-weight: 300; font-size: 1.05rem; color: #cdd5e2; line-height: 1.7; }

/* SERVICIOS */
.seccion-servicios { background-color: var(--bg-midnight-navy); border-top: 1px solid rgba(255, 255, 255, 0.03); }
.grid-servicios { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3.5rem; margin-top: 4rem; }
.card-servicio { background: rgba(255, 255, 255, 0.02); padding: 3.5rem 2.5rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.05); border-top: 4px solid var(--color-insight-yellow); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease; }
.card-servicio:hover, .card-servicio.is-active { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: var(--color-strategic-coral); }
.numero-bg { position: absolute; top: -30px; right: -20px; font-size: 14rem; color: rgba(255, 255, 255, 0.02); font-weight: 900; line-height: 1; z-index: 0; pointer-events: none; transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.4s ease; }
.card-servicio:hover .numero-bg, .card-servicio.is-active .numero-bg { transform: scale(1.1) rotate(-10deg); color: rgba(239, 88, 87, 0.06); }
.card-servicio-contenido { position: relative; z-index: 1; display: flex; flex-direction: column; flex-grow: 1; }
.card-servicio h3 { font-family: var(--fuente-titulos); font-size: 1.4rem; color: var(--color-progress-sky); margin-bottom: 1rem; line-height: 1.3; }
.card-servicio h3 span { color: var(--color-ivory-glow); font-size: 1.1rem; display: block; margin-top: 0.5rem; font-family: var(--fuente-cuerpo); font-weight: 400; }
.servicio-tagline { font-size: 1.1rem; color: var(--color-insight-yellow); font-style: italic; margin-bottom: 1.5rem; font-weight: 400; }
.card-servicio p { font-weight: 300; color: #cdd5e2; font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; flex-grow: 1; }
.servicio-resultado { color: var(--color-ivory-glow); font-weight: 400; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 1.5rem; margin-bottom: 0 !important; }
.servicio-resultado strong { color: var(--color-strategic-coral); font-weight: 700; }

/* RESULTADOS PRO */
.seccion-resultados-legado { background-color: var(--bg-midnight-navy); border-top: 1px solid rgba(255, 255, 255, 0.03); position: relative; overflow: hidden; }
.grid-resultados-pro { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3.5rem; margin-top: 5rem; }
.card-resultado-animado { background: rgba(255, 255, 255, 0.02); padding: 4rem 3rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.05); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease; opacity: 0; transform: translateY(60px); }
.card-resultado-animado:hover, .card-resultado-animado.is-active { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.card-alma { border-top: 4px solid var(--color-strategic-coral); }
.card-motor { border-top: 4px solid var(--color-insight-yellow); }
.card-socio { border-top: 4px solid var(--color-progress-sky); }
.card-alma:hover { border-color: var(--color-strategic-coral); }
.card-motor:hover { border-color: var(--color-insight-yellow); }
.card-socio:hover { border-color: var(--color-progress-sky); }
.ai-sparkle { position: absolute; top: 2rem; right: 2rem; font-size: 1.6rem; color: rgba(255, 255, 255, 0.2); pointer-events: none; z-index: 1; transition: color 0.4s ease, transform 0.4s ease; }
.card-resultado-animado:hover .ai-sparkle, .card-resultado-animado.is-active .ai-sparkle { transform: rotate(25deg); }
.pulse-bg { position: absolute; top: 50%; left: 50%; width: 20px; height: 20px; border-radius: 50%; opacity: 0; pointer-events: none; z-index: 0; transform: translate(-50%, -50%); }
.card-resultado-animado.is-active .pulse-bg { animation: activationPulse 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
@keyframes activationPulse { 0% { opacity: 0; width: 20px; height: 20px; } 50% { opacity: 0.3; } 100% { opacity: 0; width: 400px; height: 400px; } }
.card-resultado-contenido { position: relative; z-index: 2; display: flex; flex-direction: column; flex-grow: 1; }
.card-resultado-animado h3 { font-family: var(--fuente-titulos); font-size: 3.8rem; color: var(--color-strategic-coral); margin-bottom: 1.5rem; line-height: 1.1; letter-spacing: -2px; }
.card-motor h3 { color: var(--color-insight-yellow); }
.card-socio h3 { color: var(--color-progress-sky); }
.card-alma:hover .ai-sparkle { color: var(--color-strategic-coral); }
.card-motor:hover .ai-sparkle { color: var(--color-insight-yellow); }
.card-socio:hover .ai-sparkle { color: var(--color-progress-sky); }
.card-alma .pulse-bg { background-color: var(--color-strategic-coral); }
.card-motor .pulse-bg { background-color: var(--color-insight-yellow); }
.card-socio .pulse-bg { background-color: var(--color-progress-sky); }
.etiqueta-resultado { font-size: 1.15rem; color: var(--color-insight-yellow); font-style: italic; margin-bottom: 2rem; font-weight: 600; }
.descripcion-resultado { font-weight: 300; color: #cdd5e2; font-size: 1.05rem; line-height: 1.8; flex-grow: 1; }

/* TESTIMONIOS Y CARRUSEL DINÁMICO */
.seccion-testimonios { background-color: #1E2536; border-top: 1px solid rgba(255, 255, 255, 0.02); }
.badge-google-global { text-align: center; margin-bottom: 4rem; }
.badge-google-text span { font-family: var(--fuente-titulos); font-size: 3.2rem; font-weight: 700; letter-spacing: -2px; }
.g-letter { color: #4285F4; }
.o1-letter { color: #EA4335; }
.o2-letter { color: #FBBC05; }
.g2-letter { color: #4285F4; }
.l-letter { color: #34A853; }
.e-letter { color: #EA4335; }
.rating-stars-global { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 0.5rem; }
.stars-only { color: var(--color-insight-yellow); font-size: 1.8rem; letter-spacing: 2px; }
.rating-num { color: #ffffff; font-family: var(--fuente-cuerpo) !important; font-weight: 700; font-size: 1.6rem; }
.badge-google-global p { font-size: 1.1rem; color: #b4bccb; margin-top: 0.5rem; font-weight: 300; }

.contenedor-resenas { position: relative; padding-bottom: 3rem; }
.testimonials-carousel { max-width: 1300px; margin: 3rem auto 0 auto; overflow: hidden; }
.testimonials-track { display: flex; gap: 3.5rem; padding: 1rem 0 2rem 0; transition: transform 0.5s ease-in-out; }
.testimonials-track .card-testimonio { flex-shrink: 0; width: 400px; max-width: 85vw; white-space: normal; }

.carousel-dots { display: flex; justify-content: center; gap: 12px; margin-top: 2rem; width: 100%; }
.carousel-dots .dot { width: 10px; height: 10px; background-color: rgba(255, 255, 255, 0.2); border-radius: 50%; cursor: pointer; transition: background-color 0.3s ease; border: none; }
.carousel-dots .dot.is-active { background-color: #EF5857; }
.carousel-dots .dot:hover { background-color: rgba(239, 88, 87, 0.5); }

.card-testimonio { background: rgba(255, 255, 255, 0.02); padding: 3rem 2.5rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.04); display: flex; flex-direction: column; }
.card-testimonio:hover, .card-testimonio.is-active { border-color: rgba(255, 255, 255, 0.15); }
.testimonio-header { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.5rem; }
.avatar-iniciales { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; background: rgba(255, 255, 255, 0.03); }
.text-alma { color: var(--color-progress-sky); border: 1px solid var(--color-progress-sky); }
.text-motor { color: var(--color-insight-yellow); border: 1px solid var(--color-insight-yellow); }
.text-socio { color: var(--color-strategic-coral); border: 1px solid var(--color-strategic-coral); }
.testimonio-header h4 { font-family: var(--fuente-cuerpo); font-weight: 700; font-size: 1.15rem; color: #ffffff; }
.testimonio-fecha { font-size: 0.85rem; color: #8c97a8; }
.stars-card { color: var(--color-insight-yellow); font-size: 1.2rem; margin-bottom: 1.5rem; letter-spacing: 2px; }
.testimonio-cuerpo { font-weight: 300; font-size: 1.05rem; color: #cdd5e2; line-height: 1.7; font-style: italic; }

/* TRAYECTORIA LOGOS */
.texto-descripcion-trayectoria { font-size: 1.2rem; color: #cdd5e2; font-weight: 300; margin: 0 auto 4.5rem auto; text-align: center; max-width: 850px; line-height: 1.7; }
.ticker-marcas { background: transparent; padding: 2rem 0; width: 100%; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%); }
.marcas-wrapper { display: flex; align-items: center; gap: 7rem; flex-wrap: nowrap; width: max-content; }
.logo-marca { max-height: 120px; width: auto; object-fit: contain; filter: grayscale(100%) brightness(1.5); opacity: 0.7; transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease; }
.logo-marca:hover { opacity: 1; filter: grayscale(0%) brightness(1); transform: scale(1.1); }

/* PREGUNTAS FRECUENTES (FAQS) */
.seccion-faqs { background-color: #1A2030; border-top: 1px solid rgba(255, 255, 255, 0.03); }
.faq-accordion { max-width: 950px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.2rem; }
.faq-category-title { color: var(--color-progress-sky); font-family: var(--fuente-titulos); font-size: 1.4rem; margin: 2rem 0 0.5rem 0; text-align: left; }
.faq-item { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 8px; overflow: hidden; transition: border-color 0.3s ease; }
.faq-item:hover, .faq-item.is-open { border-color: var(--color-progress-sky); }
.faq-question { width: 100%; background: transparent; border: none; padding: 1.8rem 2.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; gap: 1.5rem; }
.faq-question span:first-child { font-family: var(--fuente-cuerpo); font-size: 1.2rem; font-weight: 700; color: #ffffff; line-height: 1.4; }
.faq-icon { width: 20px; height: 20px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background-color: var(--color-progress-sky); transition: transform 0.3s ease; }
.faq-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq-item.is-open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-icon::before { transform: rotate(180deg); background-color: var(--color-strategic-coral); }
.faq-answer { height: 0; overflow: hidden; position: relative; }
.faq-answer-inner { padding: 0 2.5rem 2rem 2.5rem; }
.faq-answer-inner p { color: #cdd5e2; font-size: 1.05rem; line-height: 1.8; font-weight: 300; margin-bottom: 0.5rem; }
.faq-answer-inner ul { margin: 10px 0 0 20px; padding: 0; }
.faq-answer-inner li { margin-bottom: 8px; color: #cdd5e2; font-size: 1.05rem; font-weight: 300; line-height: 1.6; }
.faq-answer-inner strong { color: #ffffff; font-weight: 600; }

/* CIERRE */
.seccion-cierre { text-align: center; background: linear-gradient(180deg, var(--bg-midnight-navy) 0%, #151A27 100%); padding: 10rem 2rem; position: relative; clear: both; }
.bloque-slogan { display: flex; flex-direction: column; align-items: center; margin-bottom: 6rem; line-height: 1.05; }
.linea-slogan { font-family: var(--fuente-titulos); font-size: 4.5rem; letter-spacing: -1px; }
.color-coral { color: var(--color-strategic-coral); text-shadow: 0px 4px 15px rgba(239, 88, 87, 0.4); }
.color-ivory { color: var(--color-ivory-glow); text-shadow: 4px 4px 0px #151A27; }
.texto-legado { font-family: var(--fuente-cuerpo); color: var(--color-strategic-coral); font-size: 2.2rem; font-weight: 300; margin-bottom: 3.5rem; line-height: 1.2; max-width: 750px; margin-left: auto; margin-right: auto; letter-spacing: -0.5px; }
.titulo-final { font-family: var(--fuente-titulos); font-size: 5rem; color: var(--color-ivory-glow); margin-bottom: 4rem; line-height: 0.95; letter-spacing: -2px; text-shadow: 4px 4px 0px #151A27; }
.zona-cta-final { margin-top: 2rem; }
.split-text-target { opacity: 0; }
.split-text-target div { -webkit-font-smoothing: antialiased; -moz-font-smoothing: antialiased; will-change: transform; }

.lag-text { display: inline-block; }

/* RESPONSIVO */
@media (max-width: 1024px) { .menu-principal { display: none; } }
@media (max-width: 768px) {
    .sitio-header { padding: 1rem 5%; }
    .logo-img { height: 45px; } 
    .boton-nav-especifico { display: inline-flex; padding: 0.6rem 1.2rem; font-size: 0.85rem; }
    .hero-section { padding: 10rem 1.5rem 6rem 1.5rem; }
    .titulo-principal { font-size: 2.5rem; margin-bottom: 1.5rem; }
    .subtitulo { font-size: 1.1rem; }
    .tagline-profesional { font-size: 0.8rem; letter-spacing: 5px; }
    .flair, .bg-grid { display: none; }
    .contenedor-bloque { padding: 5rem 1.5rem; }
    .subtitulo-seccion, .subtitulo-seccion-light { font-size: 1.5rem; margin-bottom: 2.5rem; text-align: center !important; }
    .grid-problema { grid-template-columns: 1fr; gap: 4rem; }
    .texto-problema h3 { font-size: 1.4rem; }
    .autor-split { flex-direction: column; text-align: center; }
    .split-imagen { width: 100%; height: 50vh; } 
    .split-texto { width: 100%; padding: 4rem 1.5rem; }
    .wrapper-texto p { font-size: 1rem; margin-bottom: 1.5rem; }
    .firma-autoridad { align-items: center; display: flex; flex-direction: column; }
    .firma-nombre { font-size: 1.8rem; }
    .firma-cargo { font-size: 0.9rem; }
    .firma-decoracion { justify-content: center; }
    .introduccion-metodo { font-size: 1.1rem; margin-bottom: 3rem; }
    .grid-pasos { grid-template-columns: 1fr; gap: 2rem; }
    .paso-card { padding: 2rem 1.5rem; }
    .paso-card::after { font-size: 7rem; right: 0; }
    .grid-servicios { grid-template-columns: 1fr; gap: 2rem; }
    .card-servicio { padding: 2.5rem 1.5rem; }
    .grid-resultados-pro { grid-template-columns: 1fr; gap: 2.5rem; }
    .card-resultado-animado { padding: 3rem 2rem; }
    .card-resultado-animado h3 { font-size: 2.8rem; }
    .ai-sparkle { top: 1.5rem; right: 1.5rem; font-size: 1.3rem; }
    .seccion-certificaciones { padding: 2rem 0; }
    .grid-certificaciones { gap: 2.5rem; }
    .img-certificado { max-height: 85px; } 
    .quiz-container { padding: 2.5rem 1.5rem; min-height: 480px; }
    #quiz-intro h3 { font-size: 1.6rem; }
    .pregunta-activa { font-size: 1.4rem; }
    .btn-opcion { padding: 1.2rem 1.5rem; font-size: 1rem; }
    .resultado-titulo { font-size: 1.8rem; }
    .resultado-cuerpo { padding: 1.5rem; }
    .nota-captura { flex-direction: column; text-align: center; gap: 0.5rem; padding: 1.5rem; }
    
    /* SIMULADOR MOBILE FIXES */
    .seccion-simulador { padding: 4rem 1.5rem; }
    .tech-showcase-header { text-align: left; }
    .tech-title { font-size: 1.8rem; }
    .tech-description { font-size: 1rem; }
    .tech-bullets { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .seccion-simulador .main-grid { grid-template-columns: 1fr; }
    .seccion-simulador .advanced-row { grid-template-columns: 1fr; }
    .seccion-simulador .responsive-sim-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    .seccion-simulador .capacidad-panel { border-left: none !important; padding-left: 0 !important; border-top: 1px dashed #3f3f46; padding-top: 30px; }
    .seccion-simulador .sim-grid { grid-template-columns: 1fr 1fr; }
    .seccion-simulador .wizard-card { padding: 25px 15px; margin: 20px auto; }
    .seccion-simulador .wizard-question { font-size: 1.4rem; }
    .seccion-simulador .tech-exclusive-banner { flex-direction: column; text-align: center; padding: 20px; }
    
    .faq-category-title { font-size: 1.2rem; }
    .faq-question { padding: 1.5rem; }
    .faq-question span:first-child { font-size: 1.05rem; }
    .faq-answer-inner { padding: 0 1.5rem 1.5rem 1.5rem; }
    .badge-google-text span { font-size: 2.5rem; }

    .card-testimonio { width: 320px; padding: 2rem 1.5rem; }
    .texto-descripcion-trayectoria { font-size: 1rem; margin-bottom: 3rem; }
    .ticker-marcas { padding: 1.5rem 0; }
    .marcas-wrapper { gap: 4rem; }
    .logo-marca { max-height: 80px; }
    .seccion-cierre { padding: 6rem 1.5rem; }
    .linea-slogan { font-size: 2.4rem; }
    .color-ivory { text-shadow: 2px 2px 0px #151A27; }
    .texto-legado { font-size: 1.4rem; margin-bottom: 2.5rem; }
    .titulo-final { font-size: 3.2rem; margin-bottom: 3rem; text-shadow: 2px 2px 0px #151A27; }
    .hover-3d:hover { transform: none; box-shadow: none; border-color: inherit !important; }
}

/* FIX SLIDER WARNING */
.seccion-simulador input[type=range] { 
    -webkit-appearance: none; 
    appearance: none; 
    background: transparent; 
    padding: 0; 
    border: none; 
}
.seccion-simulador input[type=range]::-webkit-slider-thumb { 
    -webkit-appearance: none; 
    appearance: none; 
    height: 24px; 
    width: 24px; 
    border-radius: 50%; 
    background: #6366f1; 
    cursor: pointer; 
    margin-top: -10px; 
    box-shadow: 0 0 10px rgba(99,102,241,0.6); 
}
@keyframes spin { 100% { transform: rotate(360deg); } }