/* --- CONFIGURACIÓN BASE DEL CUERPO --- */
body {
    background: #231f20;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Cambiado a min-height por si los botones apilados ocupan más espacio */
    overflow: hidden; 
    position: relative;
}

/* --- ADAPTACIÓN DEL GIF DE FONDO --- */
.gif-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gif-background img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.35; 
    filter: sepia(1) hue-rotate(5deg) saturate(2) brightness(0.8);
    mix-blend-mode: screen; 
}

/* --- NUEVO: CONTENEDOR DE BOTONES --- */
.button-container {
    display: flex;
    flex-direction: row; /* Lado a lado en escritorio */
    gap: 30px; /* Espacio entre los botones */
    z-index: 1;
    padding: 20px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

/* --- BOTONES LUXURY --- */
.btn {
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    color: rgba(223, 190, 106, 0.9);
    text-decoration: none;
    /* Ajustamos el padding para que sea más flexible */
    padding: 20px 60px;
    box-sizing: border-box;
    
    background: linear-gradient(270deg, rgba(223,190,106,0.5), rgba(146,111,52,0.3), rgba(34,34,34,0.1), rgba(34,34,34,0.1));
    background-size: 300% 300%;
    background-position: 1% 50%;
    
    border-radius: 15px;
    border: 1px solid rgba(223, 190, 106, 0.3);
    
    transition: all 0.7s ease-out;
    cursor: pointer;
}

/* --- EFECTO GLASSMORPHISM --- */
.glass-effect {
    box-shadow: 10px 10px 20px -10px rgba(0, 0, 0, 0.6); 
    border-right: 1px solid rgba(223, 190, 106, 0.2);
    border-bottom: 1px solid rgba(223, 190, 106, 0.2);
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
}

/* --- EFECTO HOVER --- */
.btn:hover {
    color: #fff;
    border: 1px solid rgba(223, 190, 106, 0.8);
    background-position: 99% 50%;
    box-shadow: 0px 0px 20px rgba(223, 190, 106, 0.3); 
}

/* =========================================
   MEDIA QUERIES (MAGIA RESPONSIVE)
   ========================================= */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column; /* Apila los botones uno encima del otro */
        align-items: center;    /* Los centra horizontalmente */
        gap: 20px;              /* Reduce un poco el espacio entre ellos en móvil */
    }

    .btn {
        width: 100%;            /* Ocupa el ancho disponible */
        max-width: 280px;       /* Evita que sean excesivamente anchos */
        padding: 18px 20px;     /* Reduce el relleno horizontal para que quepan bien */
        letter-spacing: 0.2em;  /* Ajusta un poco el espaciado de las letras */
    }
}