/* css/contacto.css */

/* === Banner de Contáctenos — igual al estilo swiper de las otras páginas === */
.elementor-repeater-item-contacto .swiper-slide-bg {
    /* La imagen se define inline en el HTML */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
}

/* Altura del slide de contactenos */
.elementor-repeater-item-contacto {
    height: 550px;
}

/* ===== SECCIÓN FORMULARIO + MAPA ===== */
.contacto-content {
    background-color: #ffffff;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacto-content h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #000;
    font-weight: bold;
}

.contacto-grid {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
}

.contacto-form-col {
    flex: 1;
    background-color: #f1f2f2;
    padding: 40px;
    border-radius: 10px;
}

.contacto-form-group {
    margin-bottom: 20px;
}

.contacto-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
}

.contacto-form-group input,
.contacto-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.contacto-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contacto-submit-btn {
    background-color: #1a4231;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.contacto-submit-btn:hover {
    background-color: #123023;
}

.contacto-policy {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #555;
    gap: 10px;
}

.contacto-policy input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 2px;
    width: auto;
}

.contacto-info-col {
    flex: 1;
}

.contacto-info-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: bold;
}

.contacto-info-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.contacto-info-col ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #1a4231;
    font-weight: 500;
}

.contacto-map {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .contacto-grid {
        flex-direction: column;
    }
    .elementor-repeater-item-contacto {
        height: 350px;
    }
}
