/* Estilos para la sección de página en construcción */
.construction-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.construction-content {
    max-width: 600px;
    margin: 0 auto;
}

.construction-icon {
    margin-bottom: 30px;
}

.construction-icon i {
    font-size: 4rem;
    color: #0F4C81;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.construction-content h2 {
    font-size: 2.5rem;
    color: #0F4C81;
    margin-bottom: 20px;
    font-family: 'Great Vibes', cursive;
}

.construction-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.construction-progress {
    margin-top: 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0F4C81, #D4AF37);
    border-radius: 4px;
    animation: progress-animation 3s ease-in-out infinite;
    width: 60%;
}

@keyframes progress-animation {
    0% {
        width: 30%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 30%;
    }
}

.progress-text {
    font-size: 1rem;
    color: #0F4C81;
    font-style: italic;
}

/* Estilos responsive para el banner */
@media (max-width: 900px) {
    .hermandad-banner {
        height: 300px !important;
    }
    .hermandad-banner .white-box,
    .hermandad-banner .text-container {
        width: 90% !important;
        max-width: 600px;
    }
    .hermandad-banner .white-box {
        height: 100px !important;
    }
    .hermandad-banner .text-container {
        width: calc(90% - 40px) !important; /* Mismo ancho que la caja menos padding */
    }
    .hermandad-banner h1 {
        font-size: 2.8rem !important;
    }
}

@media (max-width: 480px) {
    .hermandad-banner .white-box {
        height: 150px !important;
    }
    .hermandad-banner .text-container {
        width: calc(90% - 30px) !important;
        padding: 5px 15px !important;
    }
    .hermandad-banner h1 {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
    }
}

/* Responsivo para la sección de construcción */
@media (max-width: 768px) {
    .construction-section {
        padding: 60px 15px;
    }
    
    .construction-content h2 {
        font-size: 2rem;
    }
    
    .construction-content p {
        font-size: 1.1rem;
    }
    
    .construction-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .construction-content h2 {
        font-size: 1.8rem;
    }
    
    .construction-content p {
        font-size: 1rem;
    }
    
    .construction-icon i {
        font-size: 2.5rem;
    }
}
