/* COMPORTAMIENTO GLOBAL */
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

/* ANIMACIÓN FADE IN UP (Para el Hero) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.2s;
}

/* HEADER STICKY */
#header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.98);
}

/* ACORDEÓN FAQ */
details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

/* MAPA RESPONSIVO */
iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.2);
}

/* FOCUS INPUTS */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #0077C8;
    box-shadow: 0 0 0 3px rgba(0, 119, 200, 0.1);
}