/* ===== ESTILOS DE LA PÁGINA DE CONSTRUCCIÓN ===== */
/* Maracaibo Bajo Cero - Sitio Web en Construcción */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Control de visibilidad - DESACTIVAR PARA HACER PÚBLICA */
.construction-mode {
    display: block; /* Cambiar a 'none' para desactivar construcción */
}

.main-content {
    display: none; /* Cambiar a 'block' para mostrar contenido principal */
}

/* Efectos de nieve */
.snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Header con logo */
.construction-header {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.construction-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.5));
    animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(96, 165, 250, 0.8)); }
}

/* Contenedor principal */
.construction-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}

/* Título principal */
.construction-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #60a5fa, #93c5fd, #dbeafe);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-shimmer 3s ease-in-out infinite;
}

@keyframes title-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.construction-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
    color: #cbd5e1;
    font-weight: 400;
}

/* Mensaje importante sobre la pista */
.ice-rink-status {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: status-pulse 3s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.status-icon {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    animation: status-bounce 2s ease-in-out infinite;
}

@keyframes status-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.status-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.status-description {
    font-size: 1.3rem;
    color: #d1fae5;
    line-height: 1.6;
    margin-bottom: 20px;
}

.status-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    margin-top: 15px;
}

/* Escena de construcción */
.construction-scene {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(96, 165, 250, 0.2);
    position: relative;
    overflow: hidden;
}

.scene-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #60a5fa;
}

/* Funcionalidades en construcción */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    border: 2px solid rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 15px 30px rgba(96, 165, 250, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 3rem;
    color: #60a5fa;
    margin-bottom: 15px;
    animation: feature-glow 2s ease-in-out infinite;
}

@keyframes feature-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.8)); }
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f3f4f6;
}

.feature-description {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.5;
}

/* Técnicos trabajando */
.technicians-title {
    text-align: center;
    color: #60a5fa;
    margin: 30px 0 20px 0;
    font-size: 1.5rem;
}

.technicians {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.technician {
    text-align: center;
    animation: technician-work 2s ease-in-out infinite;
}

.technician:nth-child(2) {
    animation-delay: 1s;
}

@keyframes technician-work {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    75% { transform: translateY(-3px) rotate(-1deg); }
}

.technician-icon {
    font-size: 4rem;
    color: #1e40af;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.technician-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.technician-status {
    font-size: 0.9rem;
    color: #475569;
    font-style: italic;
}

/* Barra de progreso */
.progress-section {
    text-align: center;
    margin-bottom: 40px;
}

.progress-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #60a5fa;
}

.progress-bar {
    width: 100%;
    max-width: 500px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 2px solid rgba(96, 165, 250, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #3b82f6, #1d4ed8);
    width: 75%;
    border-radius: 8px;
    animation: progress-pulse 2s ease-in-out infinite;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* Mensaje de espera */
.wait-message {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: message-pulse 3s ease-in-out infinite;
}

@keyframes message-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.wait-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    animation: wait-bounce 2s ease-in-out infinite;
}

@keyframes wait-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.wait-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.wait-description {
    font-size: 1.1rem;
    color: #fecaca;
    line-height: 1.6;
}

/* Botón de notificación */
.notification-section {
    text-align: center;
    margin-bottom: 40px;
}

.notification-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.notification-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Footer */
.construction-footer {
    text-align: center;
    padding: 30px 20px;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ===== INVITACIÓN DESTACADA A INSTAGRAM ===== */
/* Este es el elemento principal que solicitaste destacar */

.instagram-invitation {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(131, 58, 180, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: instagram-glow 3s ease-in-out infinite;
}

.instagram-invitation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: instagram-shine 4s ease-in-out infinite;
}

@keyframes instagram-glow {
    0%, 100% { 
        box-shadow: 0 20px 40px rgba(131, 58, 180, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 25px 50px rgba(131, 58, 180, 0.5);
        transform: scale(1.02);
    }
}

@keyframes instagram-shine {
    0% { transform: rotate(0deg) translateX(-100%); }
    100% { transform: rotate(360deg) translateX(100%); }
}

.instagram-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: instagram-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

@keyframes instagram-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.instagram-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.instagram-handle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.instagram-description {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 500;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #833AB4;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.instagram-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    color: #FD1D1D;
}

.instagram-button i {
    font-size: 1.3rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .construction-title {
        font-size: 2.5rem;
    }
    
    .status-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .technicians {
        gap: 20px;
    }
    
    .technician-icon {
        font-size: 3rem;
    }
    
    .instagram-invitation {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .instagram-title {
        font-size: 1.8rem;
    }
    
    .instagram-handle {
        font-size: 1.5rem;
        padding: 8px 16px;
    }
    
    .instagram-description {
        font-size: 1.1rem;
    }
    
    .instagram-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .construction-title {
        font-size: 2rem;
    }
    
    .status-title {
        font-size: 1.8rem;
    }
    
    .construction-scene {
        padding: 20px;
    }
    
    .technicians {
        flex-direction: column;
        gap: 15px;
    }
    
    .instagram-invitation {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .instagram-title {
        font-size: 1.6rem;
    }
    
    .instagram-handle {
        font-size: 1.3rem;
        padding: 6px 12px;
    }
    
    .instagram-description {
        font-size: 1rem;
    }
    
    .instagram-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}
