/* style.css - Hoja de estilos de LinkAdvisors */

:root {
    /* Colors */
    --color-primary-dark: #0B1D3E;
    --color-primary-light: #1a2947;
    --color-accent-blue: #2B5EBC;
    --color-accent-gold: #F4AB3A;
    --color-text-white: #FFFFFF;
    --color-text-gray: #4B5563;
    --color-bg-light: #F9FAFB;
    --color-whatsapp: #25D366;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --container-width: 1280px;
    --header-height: 90px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-primary-dark);
    line-height: 1.7;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    position: relative; /* Ensure body establishes a stacking context if needed */
}

/* Ensure sections stack correctly */
section {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--color-whatsapp);
    color: white;
    border: 2px solid var(--color-whatsapp);
}

.btn-primary:hover {
    background-color: #1fad53;
    border-color: #1fad53;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--color-accent-gold);
    color: var(--color-primary-dark);
    border: none;
}

.btn-gold:hover {
    background-color: #e09b30;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 171, 58, 0.3);
}

.btn-special-renta {
    background-color: #E63946; /* Rojo intenso */
    color: white;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    box-shadow: 0 4px 6px rgba(230, 57, 70, 0.2);
}

.btn-special-renta:hover {
    background-color: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(230, 57, 70, 0.3);
    color: white;
}

.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.title-wrapper .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent-gold);
    margin: 1rem auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    transition: var(--transition-smooth);
    z-index: 1000;
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
    background: rgba(11, 29, 62, 0.95);
    backdrop-filter: blur(10px);
    height: 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: none;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ESTILOS DEL LOGO */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    max-height: 50px;
    width: auto;
    transition: var(--transition-smooth);
    /* Filtro para volver el logo blanco sobre fondo oscuro */
    filter: brightness(0) invert(1); 
}

/* Mantener el logo blanco incluso al hacer scroll si el header es oscuro */
header.scrolled .logo-img {
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent-gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active-nav {
    color: var(--color-accent-gold) !important;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}

/* Hero Section */
/* Hero Section - Configuración Desktop (Web) */
.hero {
    min-height: 100vh; /* Changed from height: 100vh to min-height */
    height: auto;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2600') no-repeat center center/cover;
    position: relative;
    display: flex;
    /* IMPORTANTE: En web queremos que esté centrado verticalmente */
    align-items: center; 
    justify-content: center;
    color: white;
    text-align: left;
    padding-top: var(--header-height); /* Add top padding to account for fixed header */
    padding-bottom: 4rem; /* Ensure content doesn't hit bottom edge immediately */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 29, 62, 0.9) 0%, rgba(11, 29, 62, 0.7) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding-top: 0; /* Limpieza de seguridad */
}

.hero-content {
    padding-top: var(--header-height);
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    margin-bottom: 2rem;
    display: block;
}

.hero-problems {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.problem-item i {
    color: var(--color-accent-gold);
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 50%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Decorative Elements */
.hero-decor {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to left, rgba(43, 94, 188, 0.1), transparent);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    pointer-events: none;
}

/* Services */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--color-bg-light);
    color: var(--color-accent-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--color-primary-dark);
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary-dark);
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-gray);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--color-accent-gold);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
}

/* Process */
.process {
    background-color: var(--color-bg-light);
    position: relative;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 1rem;
}

.step-item {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--color-accent-blue);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    flex-shrink: 0; /* IMPRESCINDIBLE: Evita que el icono se aplaste */
    z-index: 5;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-accent-gold);
    color: var(--color-primary-dark);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-content {
    width: 100%;
}

.step-item:hover .step-icon {
    background: var(--color-accent-blue);
    color: white;
    transform: scale(1.1);
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Why Us */
.why-us {
    background: linear-gradient(rgba(11, 29, 62, 0.95), rgba(11, 29, 62, 0.95)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&q=80&w=2600') fixed center/cover;
    color: white;
}

.why-us .section-title {
    color: white;
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    text-align: left;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-card i {
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ */
.faq {
    background: white;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: var(--color-accent-blue);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f9fafb;
}

.accordion-content p {
    padding: 1.5rem;
    color: var(--color-text-gray);
}

.accordion-item.active .accordion-content {
    max-height: 250px;
}

.accordion-item.active .accordion-header {
    background: #f0f7ff;
    color: var(--color-accent-blue);
}

.accordion-item .icon {
    transition: transform 0.3s;
}

.accordion-item.active .icon {
    transform: rotate(180deg);
}

/* Contact */
.contact {
    background: white;
    padding-top: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.contact-info {
    background: var(--color-primary-dark);
    padding: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--color-accent-blue);
    opacity: 0.2;
    border-radius: 50%;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item i {
    color: var(--color-accent-gold);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-item p,
.info-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-form {
    background: white;
    padding: 4rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full {
    grid-column: span 2;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 0 4px #eef2ff;
}

/* Footer */
footer {
    background: #050E21;
    color: white;
    padding: 5rem 0 2rem;
    border-top: 5px solid var(--color-accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent-gold);
    padding-left: 5px;
}

/* --- CORRECCIÓN DEFINITIVA DE COLOR EN EL FOOTER --- */
.article-footer {
    margin-top: 70px; /* Separación amplia con la sección anterior */
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
    background-color: transparent !important; /* Fuerza a eliminar cualquier fondo oscuro heredado */
    background: none !important;
}

.footer-box {
    background-color: #f8fafc !important; /* Fondo gris/azul ultra-claro limpio */
    background: #f8fafc !important;
    border-left: 4px solid var(--color-accent-gold) !important; /* Línea dorada de marca */
    border-radius: 8px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-box p {
    margin-bottom: 0 !important;
    color: #4B5563 !important; /* Texto gris oscuro de alta legibilidad */
    font-size: 1rem;
    line-height: 1.6;
}

.footer-box strong {
    color: #0B1D3E !important; /* Resalta LinkAdvisors en el azul oscuro primario */
    font-weight: 700;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Floating WhatsApp Removed per request */
/* .fw-button { ... } */

/* --- RESPONSIVE OPTIMIZADO (Sin conflictos) --- */

/* --- RESPONSIVE CALIBRADO (Solución Final) --- */

/* 1. Tablets y Laptops Pequeñas (Pantallas medianas) */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    .hero {
        /* Aquí DESACTIVAMOS el centrado para controlar la bajada manualmente */
        align-items: flex-start; 
        
        /* Ajuste Tablet: Un espacio moderado */
        padding-top: 140px; 
        
        height: auto;
        min-height: 100vh;
        padding-bottom: 4rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        margin-top: 1rem;
        line-height: 1.2;
    }

    .hero-actions { justify-content: center; flex-direction: column; width: 100%; }
    .hero-problems { display: inline-block; text-align: left; margin: 2rem auto; max-width: 450px; }
    
    .why-grid, .form-grid, .contact-wrapper, .footer-grid { grid-template-columns: 1fr !important; }
    .contact-info, .contact-form { padding: 2rem; }
    
    .timeline-line { display: none; }
    .timeline-steps { flex-direction: column; gap: 2rem; }
    .step-item { flex-direction: row; text-align: left; align-items: flex-start; }
    .step-icon { margin-right: 1rem; margin-bottom: 0; }
}

/* 2. Celulares (Móvil Vertical) - Ajuste Fino */
@media (max-width: 500px) {
    .hero {
        /* REDUCIDO: De 160px bajamos a 125px. 
           Esto subirá el contenido eliminando el espacio sobrante,
           pero respetando el logo. */
        padding-top: 125px; 
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-problems {
        max-width: 100%;
    }
}
/* --- ESTILOS PARA PÁGINA ESPECIAL EMPRENDEDORES --- */

/* Partner Box Styles */
.partner-box {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    margin-top: 2rem;
}

.partner-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-gold);
    color: var(--color-primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(244, 171, 58, 0.4);
}

.partner-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Checklist Grid Styles */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.check-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent-blue);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.check-icon {
    color: var(--color-accent-blue);
    flex-shrink: 0;
}

.check-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

.check-item p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin: 0;
}

/* Radio Button Styles */
.radio-item {
    display: block;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-text-gray);
}

.radio-item input {
    margin-right: 10px;
    accent-color: var(--color-accent-gold);
}

/* --- AGREGAR AL FINAL DE STYLE.CSS --- */

/* Ajustes para el Formulario Vertical */
.radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* Espacio entre cada opción */
}

.radio-item {
    display: flex; /* Asegura alineación icono-texto */
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-text-gray);
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.radio-item:hover {
    background: #f3f4f6;
}

.radio-item input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent-gold);
}

/* Ajuste para reutilizar la grilla de 'why-us' en documentacion */
/* Aseguramos que los iconos en la seccion checklist sean visibles si el fondo es oscuro */
#checklist .why-card i {
    color: var(--color-accent-gold);
}
/* --- AGREGAR AL FINAL DE STYLE.CSS --- */

/* Ajustes para el Formulario Vertical */
.radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* Espacio entre cada opción */
}

.radio-item {
    display: flex; /* Asegura alineación icono-texto */
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-text-gray);
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.radio-item:hover {
    background: #f3f4f6;
}

.radio-item input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent-gold);
}

/* Ajuste para reutilizar la grilla de 'why-us' en documentacion */
/* Aseguramos que los iconos en la seccion checklist sean visibles si el fondo es oscuro */
#checklist .why-card i {
    color: var(--color-accent-gold);
}

/* --- SECCIÓN BLOG --- */
.blog-grid {
    display: grid;
    /* Esto obliga a que los artículos se pongan uno al lado del otro */
    /* Se ajustarán automáticamente: 2 columnas en desktop, 1 en móvil */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch; /* Asegura que todas las tarjetas tengan la misma altura */
}

.blog-card {
    background: var(--color-text-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%; /* Permite que el contenido interno se expanda */
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--color-primary-dark); /* Fallback */
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-category {
    color: var(--color-accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
}

.btn-read-more {
    color: var(--color-accent-blue);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.btn-read-more:hover {
    gap: 0.8rem;
}

/* Contenedor de la tabla para evitar que se corte en móviles */
.comparison-container {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Sombra elegante */
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 700px;
}

/* Encabezado elegante */
.comparison-table th {
    background-color: var(--color-primary-dark);
    color: white;
    padding: 20px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-bottom: 3px solid var(--color-accent-gold); /* Detalle en dorado */
}

/* Filas y celdas */
.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    color: var(--color-text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

/* Efecto cebra */
.comparison-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

/* Hover para mejorar la navegación visual */
.comparison-table tr:hover {
    background-color: #f4f7fa;
}

/* Estilo para los iconos de estado */
.status-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.check-positive { color: #27ae60; } /* Verde éxito */
.alert-neutral { color: #8e8e8e; }  /* Gris neutro */

.text-center {
    text-align: center;
}