/* Archivo: styles.css */

/* Reset de márgenes y padding para asegurar consistencia entre navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; /* Color de fondo opcional */
    background-image: url(imagenes/fondo.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.full-width-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    flex-direction: column; /* Cambiado a columna para apilar logos */
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 350px; /* Ajusta este valor a tus necesidades */
    margin-bottom: 35px; /* Espacio entre logos */
}

.logo2 {
    max-width: 100%;
    height: auto;
    width: 250px; /* Ajusta este valor a tus necesidades */
    margin-bottom: 10px; /* Espacio entre logos */
}

.content {
    width: 100%;
    max-width: 800px; /* Ajusta este valor a tus necesidades */
    text-align: center;
}

.section-title {
    margin-top: 10px;
    font-size: 24px; /* Ajusta este valor a tus necesidades */
}

.download-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px; /* Ajusta este valor a tus necesidades */
    background-color: rgba(255, 255, 255, 0.8); /* Blanco con transparencia al 20% */
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.download-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.download-button:hover {
    background-color: #0056b3;
}

.download-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px; /* Espacio entre logos */
    flex-direction: row;
    justify-content: center;
}

.download-logo {
    width: 100px; /* Ajusta este valor a tus necesidades */
    height: auto;
    align-items: center;
}

/* Media query para pantallas pequeñas */
@media (max-width: 600px) {
    .logo {
        width: 100px; /* Tamaño del logo para pantallas pequeñas */
        width: 175px; /* Ajusta este valor a tus necesidades */
    }
    .logo2 {
        max-width: 100%;
        height: auto;
        width: 150px; /* Ajusta este valor a tus necesidades */
    }

    .section-title {
        font-size: 20px; /* Ajusta el tamaño del texto para pantallas pequeñas */
        font-weight: bold;
    }

    .download-section {
        flex-direction: column;
        align-items: center;
    }

    .download-logos {
        flex-direction: row;
        justify-content: center;
    }

    .download-logo {
        width: 80px; /* Ajusta este valor a tus necesidades */
    }
}
