/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background-color: #f7f6f2;
    width: 100%;
    max-width: 500px;
    height: calc(50vh - 40px); /* Asegura un margen uniforme arriba y abajo */
    padding: 30px 20px;
    border-radius: 0px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center; /* Coloca los elementos al principio */
    text-align: center;
}

.header .logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto 15px; /* Reduce el espaciado debajo del logo */
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px; /* Espaciado más pequeño entre íconos */
    margin-bottom: 15px; /* Reduce la separación debajo de las redes sociales */
}

.social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espaciado uniforme entre botones */
}

.buttons a {
    display: block;
    width: 100%; /* Asegura que todos los botones tengan el mismo tamaño */
    max-width: 350px; /* Limita el ancho máximo de los botones */
    padding: 12px 20px; /* Ajusta el tamaño del botón */
    background-color: transparent;
    color: #917363;
    border: 1px solid #bba38c;
    text-decoration: none;
    border-radius: 0px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 0 auto;
    text-align: center; /* Centra el texto dentro de los botones */
}

.buttons a:hover {
    background-color: #8c5b46;
    color: #fff;
}

/* Media Queries para Responsividad 
@media (max-width: 768px) {
    .container {
        max-width: 90%;
        height: calc(70vh - 30px);
        padding: 20px 15px;
    }

    .header .logo {
        max-width: 250px;
        margin-bottom: 10px; 
    }

    .buttons a {
        font-size: 12px;
        padding: 10px 15px;
    }

    .social-icons a img {
        width: 25px;
        height: 25px;
        margin: 0 auto 50px;
    }
    .header .logo {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto 50px; 
    }
}*/
/*
@media (max-width: 480px) {
    .container {
        padding: 15px;
        height: calc(90vh - 20px);        
    }

    .buttons a {
        font-size: 11px;
        padding: 8px 12px;
    }

    .social-icons a img {
        width: 20px;
        height: 20px;
        margin: 0 auto 50px;
    }
    .header .logo {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto 50px; 
     
}
}*/
/* iPhone 13, 14 Pro Max y 11 */
@media screen and (max-width: 430px) {
    .container {
        padding: 15px;
        height: calc(80vh - 20px);        
    }

    .buttons a {
        font-size: 11px;
        padding: 8px 12px;
    }

    .social-icons a img {
        width: 20px;
        height: 20px;
        margin: 0 auto 50px;
    }
    .header .logo {
        width: 150%;
        max-width: 100%;
        height: auto;
        margin: 0 auto 50px; 
     
}
}
