/* Información de contacto */
.contact-info {
    background-color: #F9F9F9;
    padding: 2rem;
    text-align: center;
    margin-top: 50px;
}

.contact-info h1 {
    font-size: 2rem;
}

.contact-info h1:hover {
    color: #0600b6;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease-in-out;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info h2:hover {
    color: #0600b6;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease-in-out;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.info-box {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
}

.info-item {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-item a {
    color: #0B0C90;
    text-decoration: none;
}

/* Formulario de contacto */
.contact-form {
    padding: 2rem;
    background-color: #f1f1f1;
    text-align: center;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-form form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-size: 1rem;
    color: #555;
}

.contact-form input, 
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.contact-form button {
    padding: 1rem;
    border: none;
    background-color: #0B0C90;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.info-item h3 i {
    color: #0077b6;
    margin-right: 0.5rem; /* Separación entre el icono y el texto */
    font-size: 1.2rem; /* Tamaño del icono */
}

.info-item h3 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-atencion {
    width: 50px;
    margin-left: 0 auto;
}
.div-descripcion {
    font-size: 1rem;
    text-align: center;
}


/* Responsive */
@media (max-width: 600px) {
    .info-box {
        flex-direction: column;
        align-items: center;
    }
}
