.contacto-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

.contacto-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: left;
}

@media (min-width: 768px) {
    .contacto-section {
        flex-direction: row; /* Cambia a disposición horizontal en pantallas grandes */
        text-align: left;
    }
}

.contacto-info {
    flex: 1; /* Ocupa la mitad del ancho disponible */
    max-width: 500px;
}

.contacto-title {
    font-size: 3rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.contacto-name {
    font-size: 2rem;
    font-weight: bold;
    color: #333333;
}

.contacto-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.contacto-details p {
    font-size: 1rem;
    color: #555555;
    margin: 10px 0;
}

.contacto-image {
    flex: 1; /* Ocupa la otra mitad del ancho disponible */
    text-align: center;
}

.contacto-image img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-footer {
    display: flex;
    width: 70%;
    justify-content: center;
    margin: 0 auto;
}
