/* Estilos para la página "En Construcción" */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0D0D0D;
    color: #FFFFFF;
    /* Asegúrate de tener 'hero-bg.jpg' en tu carpeta 'assets' */
    background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('assets/fondo-landing.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 1rem;
}

.container {
    max-width: 600px;
}

.logo {
    width: 220px; /* Logo más grande */
    height: auto;
    margin-bottom: 2.5rem;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1rem;
    color: #B0B0B0;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los items */
    gap: 1.5rem; /* Espacio entre los items */
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem; /* Espacio entre icono y texto */
    font-size: 1.1rem;
    font-weight: 600;
    color: #f5f5f5; /* Un blanco más suave */
}

.contact-item i {
    font-size: 1.8rem;
    color: #D46A1B; /* Color Naranjo Principal */
}

/* --- ESTILOS CORREGIDOS PARA LOS LINKS --- */
.contact-item a,
.contact-item a:visited { /* Añadimos :visited para forzar el color */
    color: #f5f5f5; /* Mismo color que el texto */
    text-decoration: none; /* Sin subrayado */
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D46A1B; /* Se pone naranjo al pasar el mouse */
}
/* -------------------------------------- */


@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    .logo {
        width: 180px; /* Ajuste para móviles */
    }
    .contact-item {
        font-size: 1rem;
    }
}