/* Contenido principal */
.main-content {
    background-color: white;
    text-align: center;
    padding: 20px;
}


h2 {
    font-size: 18px;
    color: #666;
}

form {
    margin: 20px auto;
    width: 60%;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #3399ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #007bff;
}

/* Sección de íconos */
.icons-section {
    display: flex;
    justify-content: center; /* Centramos los íconos */
    gap: 20px;
    margin: 10px 0;
    padding: 10px;
    flex-wrap: wrap;
    overflow: visible;
    height: auto;
}

.icons-section::-webkit-scrollbar {
    height: 8px;
}

.icons-section::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.icons-section::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

.icon {
    text-align: center;
    font-size: 12px;
    color: #666;
}

.icon img {
    width: 50px;
    height: 50px;
}

.icon p {
    margin-top: 5px;
}

.icon-button {
    flex: 0 0 auto;
    width: 100px;
    display: inline-block;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    background-color: #f0f0f0;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.icon-button:hover {
    background-color: #e0e0e0;
}

/* Botón PDF */
.pdf-boton {
    color: white;
    background-color: rgb(21, 76, 134);
    border: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pdf-boton:hover {
    background-color: rgb(196, 148, 51);
    text-decoration: none;
    color: white;
}

@media (min-width: 720px){

    h2{
        padding-top: 40px;
    }

}