/* Estilos específicos para la landing Cobertura */

/* 1. Hero Section */
.cobertura-hero {
    position: relative;
    padding: 200px 0;
    color: var(--color-text-inverse);
    text-align: center;
    overflow: hidden;
}

.cobertura-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/4-Cobertura/orion-cobertura-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.cobertura-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.cobertura-hero .container {
    position: relative;
    z-index: 2;
}

.cobertura-hero h1 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 992px) {
    .cobertura-hero {
        padding: 140px 0;
    }

    .cobertura-hero h1 {
        font-size: 44px;
    }
}

/* 2. Sección Introducción */
.cobertura-intro {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-background-light);
    overflow: hidden;
}

.cobertura-intro .container {
    position: relative;
    z-index: 1;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text .subtitle {
    display: block;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.intro-text h2 {
    font-size: clamp(32px, 4vw, 42px);
    color: var(--color-text-main);
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.intro-media img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsivo para Introducción */
@media (max-width: 992px) {
    .intro-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cobertura-intro {
        padding: 80px 0;
    }
}

/* 3. Sección de Envíos (Tabla) */
.cobertura-shipping {
    padding: 0 0 140px;
    background-color: var(--color-background-light);
}

.shipping-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.shipping-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color-text-main);
    margin-bottom: 24px;
    font-weight: 700;
}

.shipping-header .subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 12px;
}

.shipping-header p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.shipping-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    /* Asegura legibilidad en scroll horizontal */
    font-family: 'Outfit', sans-serif;
}

.shipping-table thead th {
    background-color: #8f9194;
    /* Color solicitado por el usuario */
    color: #ffffff;
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    border: none;
}

/* Redondear esquinas del thead a través del contenedor responsive */
.shipping-table thead tr:first-child th:first-child {
    border-top-left-radius: 12px;
}

.shipping-table thead tr:first-child th:last-child {
    border-top-right-radius: 12px;
}

.shipping-table tbody td {
    padding: 20px 24px;
    border-bottom: 1px solid #eeeeee;
    font-size: 15px;
    color: var(--color-text-main);
    line-height: 1.5;
    vertical-align: middle;
}

.shipping-table tbody tr:last-child td {
    border-bottom: none;
}

.shipping-table tbody tr:hover {
    background-color: #f9f9f9;
}

.shipping-table strong {
    color: #212121;
    font-weight: 600;
}

/* Responsivo para la tabla */
@media (max-width: 768px) {
    .shipping-header {
        margin-bottom: 40px;
    }

    .cobertura-shipping {
        padding: 60px 0 100px;
    }
}

/* 4. Sección de Beneficios */
.cobertura-benefits {
    padding: 0 0 120px 0;
    background-color: var(--color-background-light);
}

.benefits-header {
    text-align: center;
    margin-bottom: 70px;
}

.benefits-header h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    color: var(--color-text-main);
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.benefit-item img {
    width: 140px;
    /* Tamaño completo basado en el diseño anterior */
    height: 140px;
    object-fit: contain;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.benefit-item:hover img {
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 18px;
    color: var(--color-text-main);
    margin-bottom: 16px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Responsivo para Beneficios */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cobertura-benefits {
        padding: 80px 0;
    }

    .benefit-item img {
        width: 120px;
        height: 120px;
    }
}

/* 5. Sección FAQ */
.cobertura-faq {
    padding: 0px 0 120px 0;
    background-color: var(--color-background-light);
}

.faq-title {
    text-align: center;
    font-size: clamp(26px, 3.5vw, 36px);
    color: var(--color-text-main);
    margin-bottom: 60px;
    font-weight: 700;
}

/* 6. Sección CTA Final */
.cobertura-cta {
    position: relative;
    padding: 120px 0;
    background-image: url('/4-Cobertura/orion-cobertura-CTA-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
}

.cobertura-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: #212121;
    margin-bottom: 24px;
    font-weight: 600;
}

.cobertura-cta p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.cobertura-cta p a {
    color: #212121;
    font-weight: 600;
    text-decoration: underline;
}

.cta-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #212121;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-whatsapp-btn:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.cta-whatsapp-btn img {
    width: 24px;
    height: 24px;
}

/* Ajustes finales de responsividad */
@media (max-width: 768px) {
    .cobertura-cta {
        padding: 80px 20px;
    }
}