/* proximamente.css - Estilos para la página de En Construcción de IT Gas */

.construction-section {
    padding: 150px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.construction-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}

.construction-title {
    font-size: 4rem;
    font-weight: 800;
    color: #0d2e5e;
    margin-top: 60px; /* Más espacio arriba (iconos) */
    margin-bottom: 40px; /* Más espacio abajo (texto) */
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(13, 46, 94, 0.1);
}

.construction-text {
    font-size: 1.25rem;
    color: #0d2e5e; /* Oscurecido para más contraste */
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-align: justify; /* Texto justificado */
}

.icon-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.animated-icon {
    font-size: 5rem;
    color: #98c717; /* Verde lima del tema */
    filter: drop-shadow(0 10px 15px rgba(152, 199, 23, 0.3));
}

/* Animaciones CSS */
.floating {
    animation: floating 3s ease-in-out infinite;
}

.spinning {
    animation: spinning 10s linear infinite;
}

.bouncing {
    animation: bouncing 2s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes spinning {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bouncing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(13, 46, 94, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.shape-1 { top: -100px; left: -100px; }
.shape-2 { bottom: -100px; right: -100px; }

/* Estilos del Header Simplificado */
.header-1 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.header-main {
    padding: 10px 0 !important;
}

/* Forzar visibilidad del Menú Principal (Navegación) */
.main-menu ul li a {
    color: #0d2e5e !important;
}

.header-btn h6 a,
.header-btn h6 i {
    color: #0d2e5e !important;
}

/* Asegurar visibilidad de títulos */
.construction-title, .construction-text {
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 768px) {
    .construction-title { font-size: 2.5rem; }
    .animated-icon { font-size: 3.5rem; }
    .icon-container { gap: 20px; }
}
