/* 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/background2.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;
}

.coproduccion { 
    width: 60%;
}

.coproduccion2 { 
    width: 80%;
}

.textoBrillo {
    font-size: xx-large;
    margin: 30px;
    color: #FFFFFF;
    font-weight: bold;
    font-style: italic;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
             0 0 20px rgba(255, 255, 255, 0.6),
             0 0 30px rgba(255, 255, 255, 0.4);
}

.textovideos {
    font-size: larger;
    margin-top: 20px;
    font-weight: bold;
    color: white;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 150px; /* 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;
    font-weight: bolder;
    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: 30px; /* Espacio entre logos */
}

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

/* Media query para pantallas pequeñas */
@media (max-width: 600px) {
    .logo {
        width: 100px; /* Tamaño del logo para pantallas pequeñas */
    }

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

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

    .textoBrillo {
        font-size: large;
        margin: 10px;
        color: #FFFFFF;
        font-weight: bold;
        font-style: italic;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.6),
                 0 0 30px rgba(255, 255, 255, 0.4);
    }

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

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

    .coproduccion2 { 
        width: 90%;
    }
}
