@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

html, body {
    font-family: "Mulish", sans-serif;
    font-style: normal;
    scroll-behavior: smooth;
}

.carousel-container {
            max-width: 800px;
            width: 100%;
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            height: 500px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.3s ease;
            height: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: none;
        }



        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #1e2a655f;
            border: 0px;
            color: white;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.2s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-nav:hover {
            background: #1E2A65;
        }

        .carousel-nav.prev {
            left: 20px;
        }

        .carousel-nav.next {
            right: 20px;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 10;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.284);
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .indicator.active {
            background: #1e2a658e;
        }

        .indicator:hover {
            background: #1e2a65;
        }

        .indicator.active:hover {
            background: #1e2a65;
        }



        @media (max-width: 768px) {
            .carousel-wrapper {
                height: 400px;
            }
            
            .carousel-nav {
                font-size: 1.5rem;
                padding: 10px 15px;
            }
            
            .slide-overlay {
                padding: 20px;
            }
            
            .slide-title {
                font-size: 1.2rem;
            }
            
            .slide-description {
                font-size: 0.9rem;
            }
        }

.nav-button {
    color: white;
    text-decoration: none;
    font-size: 15px;
    border: none;
    background: none;
    font-weight: 600;
    margin-right: 15px;
}

.nav-button::before {
    margin-left: auto;
}

.nav-button::after, .nav-button::before {
    content: '';
    width: 0%;
    height: 2px;
    background: #FF7309;
    display: block;
    transition: 0.5s;
}

.nav-button:hover::after, .nav-button:hover::before {
    width: 100%;
}

.navbar-sys {
    height: 70px;
    z-index: 1000;
}

.bg-sys-primary {
    background: #1E2A65;
    color: white;
}

.bg-sys-secondary {
    background: #FF7309;
    color: white;
}

.btn-sys-primary {
    background: #FF7309;
    color: white;
}

    .btn-sys-primary:hover {
        background: #cf5900;
        color: white;
    }

.btn-sys-secondary {
    background: #1E2A65;
    color: white;
}

    .btn-sys-secondary:hover {
        background: #1d2d7e;
        color: white;
    }

.btn-sys-outline-primary {
    background: white;
    border: 1px #FF7309 solid;
    color: #FF7309;
}

    .btn-sys-outline-primary:hover {
        background: #FF7309;
        color: white;
    }

.btn-sys-outline-secondary {
    background: transparent;
    border: 1px #1E2A65 solid;
    color: #1E2A65;
}

    .btn-sys-outline-secondary:hover {
        background: #1E2A65;
        color: white;
    }



.btn:focus,
.btn:active,
.btn.active {
    outline: none !important;
    box-shadow: none !important;
}

.text-sys-primary {
    color: #FF7309;
}

.text-sys-secondary {
    color: #1E2A65;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler.active {
    outline: none !important;
    box-shadow: none !important;
}

.slider {
    background-image: url(https://i.postimg.cc/nLRWrf2z/Servicios1.jpg);
    background-size: cover;
    background-position-y: 40%;
    background-position-x: 50%;
    animation: serviceSlideAnimation 15s infinite 1s;
}

.gradientSlider {
    background: #03071a88;
}

    .gradientSlider > h1 {
        font-size: clamp(16px, 6vw, 90px);
    }

    p {
        font-size: clamp(16px, 3vw, 30px);
        color: #c4c4c4;
    }

@keyframes serviceSlideAnimation {
    30% {
        background-image: url(https://i.postimg.cc/dt2Sdy6g/Servicios2.jpg);
        background-size: cover;
    }
    60% {
        background-image: url(https://i.postimg.cc/sXGT2Q16/Servicios3.jpg);
        background-size: cover;
    }
}

.card-header{
    background: white;
    border-bottom: none;
}

.contact-icon{
    width: 55px;
    height: 55px;
}

.home-content-card{
    border-radius: 15px;
}

.brands > img{
    width: 120px;
    height: auto;
    padding: 0;
    margin: 0;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.brands{
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(100px, 1fr)
    );
    gap: 40px;
}