﻿/* Marca el menú CONTACTO */
.navbar-expand-lg .navbar-nav .nav-link,
.nav-fixed,
.navbar .navbar-brand {
    color: #000;
}

.contactoMenu {
    font-weight: bold;
}

/* ===== HERO CONTACTO (formulario + foto) ===== */

.contact-hero {
    margin-top: 110px; /* separa del header fijo */
}

.contact-hero-left {
    background-color: transparent; /* naranja Alya aprox */
    padding: 60px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    max-width: 480px;
    width: 100%;
}

    .contact-form-card h2 {
        font-weight: 700;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .contact-form-card .small-label {
        font-size: 0.85rem;
        color: #555;
        margin-bottom: 2px;
        font-weight: 500;
    }

    .contact-form-card .form-control {
        background-color: #f8f9fa;
        border: 1px solid #e9ecef;
        font-size: 0.9rem;
    }

    .contact-form-card textarea.form-control {
        min-height: 130px;
        resize: vertical;
    }

    .contact-form-card .btn-contact {
        background-color: #000;
        color: #fff;
        font-weight: 600;
        border: none;
        padding: 10px;
        border-radius: 5px;
        width: 100%;
        transition: background-color .3s;
    }

        .contact-form-card .btn-contact:hover {
            background-color: #17a2b8;
            color: #fff;
            border-color: #17a2b8;
        }

    /* checkbox */
    .contact-form-card .form-check-input[type="checkbox"] {
        appearance: auto !important;
        -webkit-appearance: auto !important;
        -moz-appearance: auto !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: inline-block !important;
        width: 16px !important;
        height: 16px !important;
        margin: 0 8px 0 0 !important;
        border: 1px solid #000 !important;
        background-color: #fff !important;
        accent-color: #000 !important;
    }

    .contact-form-card .form-check-label {
        display: inline-block;
        margin: 0;
        vertical-align: middle;
        font-size: 0.85rem;
    }

/* lado derecho hero (foto + overlay “Contacto”) */
.contact-hero-right {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
}

    .contact-hero-right::before {
        content: "";
        position: absolute;
        inset: 0;

    }

.contact-hero-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
}

/* ===== SECCIÓN INFERIOR: ¿Necesitas ayuda? + MAPA + FOTO ===== */

.contact-info-section {
    background-color: #f7f7f7;
    padding: 70px 0;
}

    .contact-info-section h2 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 1.6rem;
    }

    .contact-info-section ul {
        padding-left: 0;
        list-style: none;
        margin-bottom: 25px;
    }


.btn-contact:disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}

.no-resize {
    resize: none !important;
}
        .contact-info-section ul li {
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

            .contact-info-section ul li i {
                margin-right: 8px;
            }

.map-wrapper iframe {
    border: 0;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-photo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

    .contact-photo img {
        width: 100%;
        display: block;
    }


.contact-hero .form-check {
    padding-left: 0rem;
}

@media (max-width: 991.98px) {
    .contact-hero-right {
        display: none; /* en móvil solo mostramos el bloque naranja con el formulario */
    }

    .contact-hero-left {
        min-height: calc(100vh - 120px);
    }
}
