.inicio {
    background-image: url('/inequivoco/img/inicio.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
    position: relative;

    /* Aplica un desenfoque sutil al fondo */
}

.inicio::before {

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Superposición oscura */

}

.contenido {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 20px;
    /* z-index: 2000; */
}

.contenido h1 {
    font-size: 4rem;
    font-family: 'Garamond', serif;
    /* Fuente más elegante */
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    /* Sombra suave en el texto */
    animation: fadeIn 2s ease-out;
}

.contenido p {
    font-size: 1.5rem;
    margin-top: 10px;
    animation: fadeIn 3s ease-out;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta {
    display: inline-block;
    background-color: #c9a773;
    padding: 12px 30px;
    margin-top: 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    /* Añadir transición al tamaño */
}

.cta:hover {
    background-color: #e5533c;
    transform: scale(1.1);
    /* Efecto de aumento al hacer hover */
}

.logo-container {
    text-align: center;
    /* Centra el logo */
    margin: 20px 0;
    /* Espacio alrededor del logo */
}

.logo {

    width: 70vw;
    /* Ajusta el tamaño del logo */
    height: auto;
    /* Mantiene las proporciones del logo */
    /* Sombra suave en el texto */
    animation: fadeIn 2s ease-out;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.5));
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}