/* Reset básico para remover márgenes y paddings por defecto */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales del cuerpo */
body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('fondo3.jpg') no-repeat center center/cover;
    color: #ffffff;
}

/* Filtro para el fondo */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* Filtro oscuro */
    z-index: 1;
}

/* Contenedor principal */
.coming-soon-container {
    text-align: center;
    z-index: 2;
    position: relative;
}

/* Estilos para el logo */
.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

/* Estilos del texto */
h1 {
    font-size: 2em;
    color: #02734A; /* Color personalizado */
}

/* Estilos para los enlaces de contacto */
.contact-links {
    margin-top: 20px;
}

.contact-links a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    text-decoration: none;
    color: #ffffff;
    background-color: #02734A;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-links a:hover {
    background-color: #025f3b;
}

/* Responsividad */
@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }

    h1 {
        font-size: 1.5em;
    }
}
