:root {
    --bs-primary: #2563eb;
    --bs-primary-rgb: 37, 99, 235;

    --bs-warning: #f97316;
    --bs-warning-rgb: 249, 115, 22;

    /* Mapeo del gris de Mandde */
    --mandde-gray: #6b7280;
    --azul-mandde: #022f73;
    --naranja-mandde: #ff6f00;
}

body {

}

footer {
    background-color: var(--azul-mandde);
}
.text-naranja {
    color: var(--naranja-mandde);
}

.text-mandde-gray {
    color: var(--mandde-gray) !important;
}
.no-link-text {
    text-decoration: none !important;
    color: inherit !important;
}

.tracking-form-bg {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 1rem; /* rounded-3 de Bootstrap es 0.5rem, lo forzamos a 1rem */
}

.form-control.focus-ring-warning:focus {
    border-color: var(--bs-warning);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-warning-rgb), 0.25);
}

.shadow-text {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-bg-animation img {
    animation: kenburns 20s ease-out infinite;
}
@keyframes kenburns {
    0% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.mix-blend-multiply {
    mix-blend-mode: multiply;
}

.min-h-450 {
    min-height: 450px;
}
.object-cover {
    object-fit: cover;
}

.hover-effect {
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}
.hover-effect:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
}

.hover-effect-sm {
    transition: all 0.3s;
}
.hover-effect-sm:hover {
    transform: scale(1.05);
}

.service-card-effect {
    transition: all 0.3s;
}
.service-card-effect:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.grayscale-hover {
    filter: grayscale(100%);
    transition: all 0.3s;
}
.grayscale-hover:hover {
    filter: grayscale(0%);
    color: var(--bs-gray-800) !important;
}

.social-icon-effect {
    transition: all 0.3s;
}
.social-icon-effect:hover {
    transform: scale(1.1);
    color: white !important;
}

.logo-mandde {
    width: 180px;
    height: auto;
    transition: width 200ms ease, transform 150ms ease;
}

.oculto {
    display: none !important;
}

#services-servicios{
    .card {
        height: 250px !important;
    }
}

.text-mandde-gray-justify {
    text-align: justify;
}



@media (max-width: 767.98px) {
    .logo-mandde {
        width: 90px; /* más pequeño en móvil */
    }
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 1rem 1.25rem;
        z-index: 1050;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;

        min-width: 350px;
    }

    .navbar-collapse .nav-link {
        padding: .6rem 0;
        font-size: 1.05rem;
    }

    .navbar-toggler {
        border: none;
        width: 48px;
        height: 40px;
    }
}


