.hero-sectionContactanos {
    background-image: url('../public/images/contactanos.webp');
    background-size: cover;
    background-position: center;
    min-height: 350px;
    display: flex;
    flex-direction: column; 
    align-items: center;   
    justify-content: center; 
    position: relative;
    text-align: center;
    padding: 20px;
    color: white; 
}


.hero-sectionContactanos h1, 
.hero-sectionContactanos h2 {
    margin: 0;
    width: 100%;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.contact-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    background-image: url('../public/images/fondo5.webp');
    background-size: cover;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-container {
    flex: 2 1 600px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-container h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #1a0033;
    text-align: center;
    border-bottom: 3px solid #6a1b9a;
    padding-bottom: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 5px;
    color: #666;
}

.contact-form input, 
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #6a1b9a;
    outline: none;
    box-shadow: 0 0 5px rgba(106, 27, 154, 0.2);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: #6a1b9a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover { background: #4a148c; }


.info-container {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-block {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 5px solid #6a1b9a;
}

.info-block h3 {
    color: #6a1b9a;
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.contact-detail a { text-decoration: none; color: inherit; font-weight: 600; }

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 10px;
}


@media (max-width: 768px) {
    .form-row { 
        flex-direction: column; 
    }
    
    .hero-sectionContactanos { 
        min-height: 250px; 
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-sectionContactanos h1, 
    .hero-sectionContactanos h2 {
        width: 100%;
        margin: 0 auto;
        display: block;
        text-align: center;
        font-size: 1.8rem; 
    }

    .hero-sectionContactanos p,
    .hero-sectionContactanos .breadcrumbs {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
}