#mapa {
    max-width: 100%;
    height: 380px;
    border-radius: 12px;
}

/* ===== CONTACTOS ===== */

.contactos-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.contactos-info,
.contactos-form {
    background: #fff;
    border: 2px solid #ffffff;
    padding: 25px;
    height: 100%;
}

/* TEXTO IZQUIERDA */
.contactos-info h3 {
    font-size: 26px;
    color: #1e6fff;
    font-weight: 600;
}

.contactos-info h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contactos-info p {
    font-size: 14px;
    line-height: 1.6;
}

.contactos-info .horario {
    margin-top: 15px;
}

/* VIDEO */
.contactos-video {
    margin-top: 20px;
    border: 2px solid #ffffff;
    overflow: hidden;
    border-radius: 12px;   /* 👈 AQUÍ */
}

.contactos-video video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* FORMULARIO */
.contactos-form label {
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
}

.contactos-form .form-control {
    border-radius: 0;
    border: 2px solid #1e6fff;
}

/* SWITCH AREA */
.area-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.switch {
    position: relative;
    width: 46px;
    height: 22px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 20px;
    cursor: pointer;
}

.slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 2px;
    top: 2px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.switch input:checked + .slider {
    background: #1e6fff;
}

.switch input:checked + .slider::before {
    transform: translateX(24px);
}

/* BOTÓN */
.btn-enviar {
    background: #1e6fff;
    color: #fff;
    border: none;
    padding: 10px 35px;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-enviar:hover {
    background: #0d4fdc;
}

/* Whatsapp */


/* CTA WhatsApp */

.whatsapp-cta {
    margin-top: 5px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.whatsapp-cta span {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.btn-whatsapp {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid #25D366;
    color: #25D366;
    font-size: 14px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: #fff;
}
