/* styles.css - Estilos para la página en desarrollo de CBEC */

/* Importar fuente limpia (opcional, desde Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600&display=swap');

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: #1a2b3c;
    line-height: 1.5;
}

/* Contenedor principal */
.container {
    max-width: 750px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 20, 30, 0.25);
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Estilo del logo / encabezado */
.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #003366; /* Azul institucional, inspirado en energía/combustible */
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0,51,102,0.1);
}

.slogan {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    border-bottom: 2px solid #ffaa00;
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Área del mensaje principal */
.message {
    margin: 2.5rem 0 2rem 0;
}

.message h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* barra decorativa */
.bar {
    width: 80px;
    height: 4px;
    background-color: #ffaa00; /* amarillo energía */
    margin: 1.2rem auto;
    border-radius: 4px;
}

.message p {
    font-size: 1.2rem;
    color: #2c3e50;
    max-width: 550px;
    margin: 0 auto 1rem auto;
}

.message .small {
    font-size: 1rem;
    color: #4a5f73;
    font-weight: 400;
    background: rgba(255, 170, 0, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    display: inline-block;
    border: 1px dashed #ffaa00;
}

/* Pie de página */
.footer {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: #5a6f82;
    border-top: 1px solid rgba(0, 51, 102, 0.15);
    padding-top: 1.8rem;
}

.footer p {
    opacity: 0.8;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 500px) {
    .container {
        padding: 2rem 1.5rem;
        border-radius: 2rem;
    }

    .logo h1 {
        font-size: 2.8rem;
    }

    .slogan {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .message h2 {
        font-size: 1.8rem;
    }

    .message p {
        font-size: 1rem;
    }
}