body {
    margin: 0;
    font-family: "Lexend", sans-serif;
    background-size: cover;
    color: #fff4da;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #183D2D;
    font-size: 24px;
    overflow: hidden;
}

.header {
    padding: 60px 20px 20px;
    animation: fadeInUp 1.2s ease-out;
}

.header__titulo {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.2s;
}

@media screen and (min-width: 768px) {
    .header__titulo {
        font-size: 84px;
        margin-bottom: 30px;
    }
}

a {
    text-decoration: none;
}

.btn {
    background-color: #fff4da;
    font-size: 16px;
    color: #183D2D;
    padding: 14px 48px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.4s;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .btn {
        font-size: 20px;
    }
}

.btn:hover {
    background-color: #ffd770 ; 
    color: #1c2f27;
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}


.inicio {
    position: relative;
    background-image: url(../images/inicio.png);
    background-position: 50% 70%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.inicio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); 
    z-index: 1;
}

.inicio > * {
    position: relative;
    z-index: 2;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
