/********** Template CSS Unificado y Corregido **********/
:root {
    --primary: #FF800F;
    --secondary: #001064;
    --light: #F6F7F8;
    --dark: #010A35;
}

/*** Back to top ***/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Buttons ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 400;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img { max-height: 45px; }
    .navbar .navbar-nav { margin-top: 20px; margin-bottom: 15px; }
    .navbar .nav-item .dropdown-menu { padding-left: 30px; }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
        transition: .5s;
    }
}

/*** Header Carousel (ARREGLADO) ***/
.carousel-caption {
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;      /* mantiene subtítulo abajo */
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(1, 10, 53, .8);
    z-index: 1;
}

.carousel-caption h1 {
    margin-bottom: 15px !important; /* SEPARA TITULO Y SUBTITULO */
}

.carousel-caption p {
    margin-top: 0 !important;       /* asegura que quede debajo */
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/*** Page Header ***/
.page-header {
    background: linear-gradient(rgba(1, 10, 53, .8), rgba(1, 10, 53, .8)),
                url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}

/*** Facts ***/
.facts {
    position: relative;
}

.facts * { position: relative; z-index: 1; }

.facts::after {
    position: absolute;
    content: "";
    width: 100%; height: 100%;
    top: 0; left: 0;
    background: rgba(1, 10, 53, .8);
}

/*** Quote Section ***/
@media (min-width: 992px) {
    .container.quote { max-width: 100% !important; }
}

/*** Services ***/
.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

/*** About Fix ***/
.about .d-flex.align-items-center img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    height: auto;
    width: 50px;
}

/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0; height: 100%;
    top: 0; left: 0;
    background: rgba(1, 10, 53, .8);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    opacity: 0; z-index: 3;
}

.team-item:hover .team-img .team-social {
    opacity: 1;
    transition-delay: .3s;
}

/*** Testimonials ***/
.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px; transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

/*** Footer ***/
.footer {
    color: #7F8499;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #7F8499;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

/* ========================================================= */
/* =============== SLIDER DE CLIENTES ====================== */
/* ========================================================= */
.slider-clientes {
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
    padding: 40px 0;
}

.slider-track {
    display: flex;
    width: calc(200px * 12);
    animation: scroll2 20s linear infinite;
}

.slider-item {
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-item img {
    width: 160px;
    height: auto;
    object-fit: contain;
}

@keyframes scroll2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); }
}

/*********************************************************/
/* 🔵 EFECTO PROFESIONAL PARA IMÁGENES DE SERVICIOS      */
/*********************************************************/

.service-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
}

.service-item img {
    transition: 0.4s ease;
}

.service-item:hover img {
    transform: scale(1.05);
    filter: brightness(55%);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 92, 182, 0.65);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: 0.4s ease;
    padding: 20px;
}

.service-item:hover .service-overlay {
    opacity: 1;
}
