:root {
    --primary-color: #8C1D18; 
    --rojo-ladrillo: #A63A2A; 
    --text-dark: #0A2E4E;  
    --text-enegro: #0A0F1F;
    --sub-titulos:#0B3C5D; 
    --text-light: #64748b;    
    --bg-light: #f8fafc;      
    --white: #ffffff;

    --size-h1: 2.9rem;
    --size-h2: 1.8rem;
    --size-h3: 1.2rem;
    --size-p: 1.05rem;
}

h1 { font-size: var(--size-h1); line-height: 1.2; }
h2 { font-size: var(--size-h2); line-height: 1.3; }
h3 { font-size: var(--size-h3); line-height: 1.4; }
p  { font-size: var(--size-p);  line-height: 1.6; }

@media (max-width: 768px) {
    :root {
        --size-h1: 2rem;
        --size-h2: 1.4rem;
        --size-h3: 1.0rem;
        --size-p: 0.85rem;
    }
}


.neuro-hero {
    height: 80vh;
    min-height: 400px;
    background-color: var(--bg-light); 
    background-image: url('../img/conexiones sin fondo- escritorio.webp'), linear-gradient(135deg, #0A2E4E 0%, #051829 100%);
    background-size: auto 100%; 
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: #ffffff; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}


/* 2. TABLETS */
@media (max-width: 1024px) {
    .neuro-hero {
        background-size: cover;
    }
}

/* 3. MÓVILES */
@media (max-width: 768px) {
    .neuro-hero {
        height: 70vh; 
        min-height: 350px;
        padding: 0 15px;
        background-image: url('../img/conexiones\ sin\ fondo\ -\ celular.webp'), linear-gradient(135deg, #0A2E4E 0%, #051829 100%);
        background-position: top center;
    }
}

.glow-effect {
    display: none; 
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.badge-neuro {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: var(--size-p);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cbd5e1;
    display: inline-block;
    margin-bottom: 20px;
}

.neuro-hero h1 {
    font-size: var(--size-h1);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-desc {
    font-size: var(--size-p);
    color: var(--bg-light);
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

:root {
    --btn-bg: #A63A2A;
    --btn-bg-hover: #8e3123;
    --btn-text: #ffffff;
    --btn-padding-y: 0.8rem;
    --btn-padding-x: 2rem;
    --btn-radius: 0.5rem;
    --btn-font-size: 1rem;
    --btn-shadow: 0 10px 20px rgba(166, 58, 42, 0.3);
}
    

.btn-neuro {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    border-radius: var(--btn-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--btn-font-size);
    border: 1px solid transparent;
    box-shadow: var(--btn-shadow);
    font-size: 14px;
    padding: 10px 10px;

    transition: 
        background-color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.3s ease;
}

/* Hover */
.btn-neuro:hover {
    background-color: var(--btn-bg-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(166, 58, 42, 0.4);
}

/* Click */
.btn-neuro:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(166, 58, 42, 0.2);
}

/* --- 2. ZONA DEL PROBLEMA (ESTILO ALERTA) --- */
.problem-zone {
    background-color: #fff;
}

.problem-box {
    display: flex;
    flex-direction: column; 
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .problem-box { flex-direction: row; align-items: flex-start; }
}

.problem-header { flex: 1; }

.problem-header h2 {
    font-size: var(--size-h2);
    color: #0A0F1F;
    line-height: 1.2;
}

.underline-red {
    position: relative;
    z-index: 1;
}

.underline-red::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(166, 58, 42, 0.2);
    z-index: -1;
}

.problem-body { flex: 1; }

.lead-text {
    font-size: var(--size-h3);
    margin-bottom: 30px;
    color: #334155;
}

.insight-card {
    background: #FFF5F5;
    border-left: 4px solid #A63A2A;
    padding: 25px;
    border-radius: 0 10px 10px 0;
    display: flex;
    gap: 20px;
}

.icon-alert {
    background: #A63A2A;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.insight-card h4 {
    color: #8C1D18;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* --- 3. NEURO-ESTADÍSTICAS --- */
.dark-section {
    background-color: #0A0F1F; 
    color: white;
    position: relative;
}

.section-header-dark {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-dark h2 {
    color: white;
    font-size: var(--size-h2);
    margin-bottom: 15px;
}

.section-header-dark p {
    color: #94a3b8;
    font-size: var(--size-p);
}

.neuro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
    max-width: 800px; 
    margin: 0 auto;
}

@media (min-width: 950px) { 
    .neuro-grid > div:last-child:nth-child(4) {
        grid-column: 2;
    }
}

.brain-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    overflow: hidden;
}

.brain-card:hover {
    transform: translateY(-10px);
    border-color: #A63A2A;
    background: rgba(255, 255, 255, 0.06);
}

.card-number {
    font-size: var(--size-h1);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05); 
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}

.brain-card h3 {
    color: #fff;
    font-size: var(--size-h3);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.brain-card p {
    color: #cbd5e1;
    font-size: var(--size-p);
    position: relative;
    z-index: 1;
}

.brain-card.highlight {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(166, 58, 42, 0.5);
}

/* --- 4. RESULTADOS --- */
.results-section {
    background: #f8fafc;
}

.results-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.text-side { flex: 1; min-width: 300px; }
.visual-side { flex: 1; min-width: 300px; display: flex; justify-content: center;}

.subtitle {
    color: #64748b;
    margin-bottom: 30px;
    font-size: var(--size-p);
}

.metric-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
}

.metric-item:hover { transform: translateX(10px); border-color: #A63A2A; }

.check-circle {
    color: #10b981;
    background: #ecfdf5;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.metric-text { font-size: 1rem; color: #1e293b; }

/* Gráfica Abstracta CSS */
.graph-card {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
    padding-bottom: 50px;
}

.graph-bar {
    width: 60px;
    background: #d94e3b;
    border-radius: 10px 10px 0 0;
    position: relative;
    transition: height 1s ease;
}

.graph-bar span {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--size-p);
    font-weight: 600;
    color: #64748b;
}

.graph-bar.active {
    background: linear-gradient(to top, #04875b, #10b981);
    box-shadow: 0 0 20px rgba(166, 58, 42, 0.4);
}

.graph-line {
    position: absolute;
    top: 40%;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed #cbd5e1;
    z-index: 0;
}

/* --- 5. SERVICIOS (LISTA MODULAR) --- */
.systems-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.system-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.system-row:hover {
    border-color: #0A2E4E;
    box-shadow: 0 10px 25px rgba(10, 46, 78, 0.1);
}

.sys-info h3 {
    margin: 0;
    color: #0A2E4E;
    font-size: var(--size-h3);
}

.sys-info span {
    color: #64748b;
    font-size: var(--size-p);
}

.sys-arrow {
    color: #A63A2A;
    font-weight: 700;
    font-size: var(--size-p);
    text-transform: uppercase;
}

.system-row.featured {
    background: #0A2E4E;
    border-color: #0A2E4E;
}

.system-row.featured h3, 
.system-row.featured .sys-info span {
    color: white;
}

.system-row.featured .sys-arrow {
    color: #fff;
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 50px;
}

/* --- 6. CTA FINAL --- */
.final-cta {
    background: linear-gradient(135deg, #fff3f2, #fff3f2) !important;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.final-cta h2 {
    color: var(--text-dark) !important;
    font-size: var(--size-h2);
    margin-bottom: 0px;
}

.btn-neuro-white {
    background: white;
    color: #A63A2A;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: var(--size-h3);
    transition: transform 0.3s;
    display: inline-block;
}

.btn-neuro-white:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- MEDIA QUERIES PARA RESPONSIVE --- */
@media (max-width: 768px) {
    .system-row { flex-direction: column; align-items: flex-start; gap: 15px; }
    .sys-arrow { align-self: flex-end; }
    .metric-list { gap: 10px; }
}

/* --- Pagina Nosotros --- */
.hero-nosotros {
    height: 50vh;
    min-height: 250px;
    background: linear-gradient(135deg, #0A2E4E 0%, #051829 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-nosotros h1 {
    color: var(--white);
    margin: 0;
}

.hero-nosotros h1 span {
    color: var(--rojo-ladrillo);
}

/* --- HISTORIA Y TEXTOS --- */
.destacado-texto {
    color: var(--text-dark);
    font-weight: 600;
    font-size: var(--size-h3);
}

.cita-estrategica {
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
    font-size: var(--size-h3);
    font-style: italic;
    color: var(--text-dark);
    font-weight: 600;
    background: #f8fafc;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- MISIÓN Y VISIÓN --- */
.seccion-gris {
    background-color: var(--bg-light);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.grid-dos-columnas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card-filosofia {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.card-filosofia:hover {
    transform: translateY(-5px);
}

.card-icono {
    font-size: 3rem;
    margin-bottom: 20px;
}

.lista-check {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.lista-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.lista-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--rojo-ladrillo);
    font-weight: bold;
}

.texto-fuerte {
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 20px;
    font-size: 1.1rem;
}

/* --- VALORES CORE --- */
.grid-valores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card-valor {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 20px;
    width: calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-valor:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.valor-numero {
    width: 50px;
    height: 50px;
    background: var(--rojo-ladrillo);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.card-valor h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.card-valor p {
    font-size: var(--size-p);
    color: var(--text-enegro);
    margin: 0;
}

/* Ajuste Responsivo para Valores */
@media (max-width: 900px) {
    .card-valor {
        width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .card-valor {
        width: 100%;
    }
}
/* --- Formulario de contacto --- */
.contacto-header {
    text-align: center;
    margin-bottom: 50px;
}

.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Columna Izquierda */
.contacto-info {
    background: linear-gradient(135deg, var(--text-dark) 0%, #051829 100%);
    color: var(--white);
    padding: 50px 40px;
}

.contacto-info h3 {
    color: var(--white);
    font-size: var(--size-h3);
    margin-bottom: 20px;
}

.contacto-info p {
    color: #cbd5e1;
    margin-bottom: 30px;
}

.info-lista {
    list-style: none;
    padding: 0;
}

.info-lista li {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.info-lista li strong {
    display: block;
    color: var(--rojo-ladrillo);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-lista li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.info-lista li a:hover {
    color: var(--rojo-ladrillo);
}

/* Columna Derecha (Formulario) */
.contacto-formulario {
    padding: 50px 40px;
}

.form-grupo {
    margin-bottom: 25px;
}

.form-grupo label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Estilos de los inputs y textarea */
.form-neuvia input,
.form-neuvia select,
.form-neuvia textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-enegro);
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.form-neuvia input:focus,
.form-neuvia select:focus,
.form-neuvia textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(166, 58, 42, 0.1);
}

.form-neuvia textarea {
    resize: vertical; 
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 15px;
}

@media (max-width: 900px) {
    .contacto-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contacto-info {
        padding: 40px 20px;
        order: -1; 
    }
    
    .contacto-formulario {
        padding: 40px 20px;
    }
}
/* --- BOTÓN WHATSAPP FLOTANTE --- */
.whatsapp-flotante {
    position: fixed; /* Cambiado a fixed para que flote al hacer scroll */
    bottom: 30px !important;
    right: 30px !important; /* Lo anclamos a la derecha */
    left: auto !important;  /* Liberamos el lado izquierdo */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 99999 !important; 
    transition: all 0.3s ease-in-out;
}

/* El tamaño del icono dentro del círculo */
.whatsapp-flotante svg {
    width: 35px;
    height: 35px;
    fill: #FFFFFF;
}

.whatsapp-flotante:hover {
    transform: scale(1.1) translateY(-5px); 
    box-shadow: 0px 12px 25px rgba(37, 211, 102, 0.4); 
}

/* Ajuste para teléfonos móviles */
@media (max-width: 768px) {
    .whatsapp-flotante {
        bottom: 20px;
        flex-direction: row !important;
        right: 20px;
        width: 55px; 
        height: 55px;
    }
    .whatsapp-flotante svg {
        width: 30px;
        height: 30px;
    }
}

/* --- SERVICIOS GRID (AJUSTE PARA MÓVILES) --- */
@media (max-width: 768px) {
    
    #servicios .container {
        overflow: visible !important;
        padding-right: 0 !important; 
    }
    #servicios .servicios-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; 
        overflow-x: auto !important;  
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        justify-content: flex-start !important; 
        padding: 20px 20px 40px 5px !important; 
        scroll-padding-left: 20px !important;  
        scrollbar-width: none !important;
    }
    #servicios .servicios-grid::-webkit-scrollbar {
        display: none !important;
    }
    #servicios .servicios-grid .card {
        flex: 0 0 85% !important; 
        width: 85% !important;
        max-width: 85% !important;
        scroll-snap-align: start !important; 
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
    }
}

/* --- BOTÓN COTIZAR WHATSAPP --- */
.cotizacion-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 75px 0 50px 0; 
}

.btn-whatsapp-cotizar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366; 
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
    margin-top: 40px; 
}

.btn-whatsapp-cotizar:hover {
    background-color: #128C7E; 
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
    color: #ffffff; 
}

/* --- 1. Encabezado de Planes --- */
.hero-planes {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.hero-planes h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hero-planes h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-planes .hero-desc {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
}

/* --- 2. Botones de WhatsApp Generales --- */
.btn-wa {
    display: inline-block;
    padding: 12px 24px;
    background-color: #25D366;
    color: #ffffff; 
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-wa:hover {
    background-color: #1ea44d;
}

/* Botón de WhatsApp ancho completo (para dentro de las tarjetas de planes) */
.btn-wa.full-width {
    display: block;
    text-align: center;
    min-width: 120px;
    max-width: 250px;
    box-sizing: border-box;
    font-size: 14px;
    padding: 10px 10px;
    margin: 0 auto;
}

.objeciones-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* 1. Caja principal con más espacio para contener el botón cómodamente */
.objeciones-box {
    background: var(--white);
    padding: 40px 50px 50px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 900px;
    width: 100%;
    text-align: center;
    border-top: 5px solid var(--primary-color);
    box-sizing: border-box; 
}

.objeciones-box h3 {
    color: var(--text-dark);
    margin-bottom: 35px;
    font-size: 1.8rem;
}


.objeciones-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px; 
    margin-bottom: 40px;
    text-align: left;
}

.objeciones-list li {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    color: var(--text-enegro);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease;
}

.objeciones-list li:hover {
    transform: translateY(-3px);
}

.objeciones-footer-text {
    margin-bottom: 25px;
    color: var(--text-light);
    font-weight: 500;
}

.btn-wa-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-size: 13px;
    padding: 10px 10px;
}

.btn-wa-large:hover {
    background-color: #1ebe57;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}


.titulo-planes-container {
    padding-top: 40px;
}
.titulo-planes {
    text-align: center;
    margin-bottom: 3rem;
    font-size: var(--size-h1);
    color: #0f172a;
}

@media (max-width: 768px) {
    .objeciones-list {
        grid-template-columns: 1fr; 
    }
    .objeciones-box {
        padding: 30px 20px; 
    }
}


.objeciones-section-premium {
    padding: 60px 0;
    background-color: #f8fafc;
    width: 100%;
}

.objeciones-box-premium {
    background: #ffffff !important;
    padding: 40px 50px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    max-width: 900px !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    border-top: 5px solid #8C1D18 !important;
    box-sizing: border-box !important;
}

.objeciones-titulo {
    color: #0A2E4E !important;
    margin-top: 0 !important;
    margin-bottom: 35px !important;
    font-size: var(--size-h1) !important;
    font-weight: 800 !important;
}

ul.objeciones-grid-lista {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 auto 40px auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    text-align: left !important;
}

ul.objeciones-grid-lista li {
    background-color: #f8fafc !important;
    padding: 20px !important;
    border-radius: 8px !important;
    border-left: 4px solid #8C1D18 !important;
    color: #0A0F1F !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

.objeciones-texto-footer {
    color: #0A0F1F !important;
    margin-bottom: 25px !important;
    font-size: 1.05rem !important;
}


a.btn-wa-cierre {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #16a34a !important;
    color: #ffffff !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

a.btn-wa-cierre:hover {
    background-color: #15803d !important;
    transform: translateY(-2px);
}

/* Adaptación a móviles */
@media (max-width: 768px) {
    ul.objeciones-grid-lista {
        grid-template-columns: 1fr !important;
    }
    .objeciones-box-premium {
        padding: 30px 20px !important;
    }
    a.btn-wa-cierre {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

.btn-wa-large i, .btn-wa i {
    font-size: 1.5em; 
    vertical-align: middle;
}