/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
header {
    text-align: center;
    padding: 20px;
    background-color: #fff;
}

.header-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.header-images img {
    max-width: 20%;
    height: auto;
    border-radius: 8px;
}

/* Main */
main {
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 40px;
    margin-top: 60px;
}

/* Botón de descarga principal */
.download-button a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #11a318;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    margin-bottom: 80px;
}

.download-button a:hover {
    background-color: #11a318;
}

.download-button a i {
    margin-right: 10px;
}

/* Secciones */
section {
    margin: 40px 0;
}

/* Contenedor de cada sección */
.section-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    margin-bottom: 50px;
}

.button-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Dos columnas por defecto */
    gap: 20px; /* Espacio entre botones */
    justify-content: center;
    padding: 0 20px;
}

/* Botones de PDF */
.pdf-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    color: #11a318;
    text-decoration: none;
    /*border: 1px solid #11a318;*/
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.pdf-button:hover {
    background-color: #11a318;
    color: #fff;
}

.pdf-button i {
    font-size: 2em;
    margin-bottom: 10px;
}

.description {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: black;
    font-weight: bold;
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #11a318;
    color: #fff;
    margin-top: 40px;
}
