/* Estilos Generales y Reseteo */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Fondo pizarra oscuro */
    color: #f8fafc; /* Texto claro */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
}

/* Contenedor Principal */
.container {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tarjeta de Contenido */
.content-card {
    background: #1e293b; /* Fondo de la tarjeta un poco más claro */
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    width: 100%;
    margin-bottom: 24px;
}

/* Icono de Construcción */
.logo-area {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.construction-icon {
    background-color: rgba(245, 158, 11, 0.1); /* Fondo ámbar sutil */
    border: 2px solid #f59e0b; /* Borde ámbar/construcción */
    color: #f59e0b;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.construction-icon svg {
    width: 40px;
    height: 40px;
}

/* Tipografía */
h1 {
    font-size: 24pt;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.025em;
}

.subtitle {
    font-size: 11pt;
    color: #94a3b8;
    margin-bottom: 32px;
}

/* Barra de Progreso */
.progress-container {
    margin-bottom: 36px;
    text-align: left;
}

.progress-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 9.5pt;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 600;
}

.progress-bar-bg {
    background-color: #334155;
    border-radius: 9999px;
    height: 8px;
    overflow: hidden;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #f59e0b, #eab308);
    height: 100%;
    border-radius: 9999px;
}

/* Sección de Información y Botón */
.info-section {
    border-top: 1px solid #334155;
    padding-top: 24px;
}

.info-section p {
    font-size: 10.5pt;
    color: #94a3b8;
    margin-bottom: 16px;
}

.btn-contact {
    display: inline-block;
    background-color: #3b82f6; /* Azul moderno */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 10pt;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-contact:hover {
    background-color: #2563eb;
}

.btn-contact:active {
    transform: scale(0.98);
}

/* Pie de página */
footer {
    font-size: 9pt;
    color: #64748b;
    text-align: center;
}

/* Animaciones */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Adaptabilidad Móvil */
@media (max-width: 480px) {
    .content-card {
        padding: 30px 20px;
    }
    h1 {
        font-size: 20pt;
    }
}
