﻿/* ============================================
   HERO SECTION (como ya lo tenías)
   ============================================ */
.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) #c41f1f !important;
}

/* Hero Section - Fondo completo sin márgenes */
.hero-section-full {
    background-color: #001529;
    color: white;
    padding: 90px 0 50px;
    width: 100%;
    margin: 0;
    height: 300px;
    position: relative;
}

/* Elimina el margen del navbar si aún existe */
.navbar {
    margin-bottom: 0 !important;
}

/* Estilos específicos para el encabezado de la imagen */
.comunicado-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

    .comunicado-header h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .comunicado-header .subtitle {
        font-size: 1.4rem;
        font-weight: 300;
        line-height: 1.4;
        opacity: 0.9;
        color: rgba(255, 255, 255, 0.95);
    }

/* Fondo del hero con imagen */
.hero-section-full {
    margin-bottom: 20px;
    /* background-image: linear-gradient(rgba(0, 21, 41, 0.8), rgba(0, 21, 41, 0.9)), url('/imagenes/centrocomercialvallechico1.png');*/
    background-image: linear-gradient(rgba(0, 21, 41, 0.6), rgba(0, 21, 41, 0.7)), url('/imagenes/centrocomercialvallechico1.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================
   TARJETAS DE INFORMACIÓN (nuevo CSS)
   ============================================ */

.cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent, #D7DF23);
}


    .info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--accent, #D7DF23);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

        .info-card:hover::before {
            transform: scaleX(1);
        }

        .info-card:hover .card-title {
            color: var(--accent, #D7DF23);
        }

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #1C2A59;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
}

    .card-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--accent, #D7DF23);
        border-radius: 2px;
        transition: width 0.3s ease;
    }

.info-card:hover .card-title::after {
    width: 60px;
}

.card-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

    .card-text strong {
        color: #1C2A59;
        font-weight: 600;
    }

/* ============================================
   ESTILOS ADICIONALES (que ya tenías)
   ============================================ */
.section-title {
    color: #001529;
    border-bottom: 2px solid #001529;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 0 px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/************/
/* Highlight Box Mejorado */

/* Contenedor principal para mantener misma alineación */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Asegurar que las cards-row y el highlight-box tengan mismo ancho */
.cards-row,
.highlight-box-container {
    max-width: 1100px; /* Mismo ancho máximo */
    margin: 0 auto;
}

/* Highlight Box simple y alineado */
.highlight-box-simple {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #1C2A59;
    max-width: 1100px; /* Mismo ancho que cards-row */
}

    .highlight-box-simple h4 {
        color: #1C2A59;
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .highlight-box-simple h4::before {
            content: "●";
            color: #1C2A59;
            font-size: 1.5rem;
        }

    .highlight-box-simple ol {
        padding-left: 1.5rem;
        margin-bottom: 0;
    }

    .highlight-box-simple li {
        margin-bottom: 0.8rem;
        color: #4a5568;
        line-height: 1.5;
    }

        .highlight-box-simple li:last-child {
            margin-bottom: 0;
        }

        .highlight-box-simple li::marker {
            font-weight: 700;
            color: #1C2A59;
        }


/***********/

.fecha-limite {
    background: linear-gradient(135deg, #1C2A59 0%, #0d1a3d 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 35px 0;
    box-shadow: 0 8px 20px rgba(28, 42, 89, 0.2);
    font-family: 'Montserrat', sans-serif;
}

    .fecha-limite h3 {
        color: #13c2c2;
        font-weight: 600;
        margin-bottom: 1rem;
    }

.firma {
    text-align: right;
    font-style: italic;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 2px solid #dee2e6;
    font-family: 'Montserrat', sans-serif;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cards-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        padding: 1.25rem;
    }
}