    .main-slider {
            position: relative;
            width: 100%;
            height: 80vh;
            max-height: 800px;
            overflow: hidden;top:90px;
            margin-bottom:90px;
        }

        .main-slider .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 80vh;
            max-height: 800px;
        }

        .main-slider .slide-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .slide-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #00000015;
            mix-blend-mode: multiply;
            z-index: 2;
        }

        .slide-content {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1400px;
            padding: 0 40px;
            display: flex;
            flex-direction: column;
        }

        .text-content {
            max-width:70%;
            padding-left: 100px;
            position: relative;
        }

        .top-dots {
            position: absolute;
            left: 0;
            width: 80px;
            opacity: 0.7;
            z-index:10;
        }

        .bottom-dots {
            position: absolute;
            bottom: 50px;
            right: 0;
            width: 80px;
            opacity: 0.7;
            transform: rotate(180deg);
            z-index:10;
        }

        .small-text {
            font-size: 16px;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 2px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .highlight-text {
            font-size: 48px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 30px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.2s; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .slide-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--principal);
            color: var(--white);
            text-decoration: none;
            border-radius:10px;
            font-weight: bold;
            font-size: 14px;
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.4s;
            align-self: flex-start;
        }

        .slide-button:hover {
            background-color: var(--principalHover);
        }

        .main-slider .swiper-pagination {
            bottom: 40px !important;
        }

        .main-slider .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: transparent;
            border: 2px solid white;
            opacity: 1;
            margin: 0 8px !important;
        }

        .main-slider .swiper-pagination-bullet-active {
            background: var(--white);
        }

        .custom-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            max-width: 1400px;
            left: 50%;
            transform: translateX(-50%) translateY(-50%);
            z-index: 10;
            pointer-events: none;
        }

        .custom-prev, .custom-next {
            pointer-events: all;
            cursor: pointer;
            width:45px;
            height:45px;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            opacity:0.9;
            transition: all 0.3s ease;
        }

        .custom-prev:hover, .custom-next:hover {
            opacity:1;
        }

        .custom-prev {
            left: 20px;
        }

        .custom-next {
            right: 20px;
        }

        .custom-prev::after, .custom-next::after {
            content: '';
            display: block;
            width: 15px;
            height: 15px;
            border-top: 3px solid var(--principal);
            border-left: 3px solid var(--principal);
        }

        .custom-prev::after {
            transform: rotate(-45deg);
            margin-right: -5px;
        }

        .custom-next::after {
            transform: rotate(135deg);
            margin-left: -5px;
        }

        .swiper-slide-active .small-text,
        .swiper-slide-active .highlight-text,
        .swiper-slide-active .slide-button {
            opacity: 1;
            transform: translateY(0);
        }


        @media(max-width:600px){
            .slide-content{padding:0px;}
            .main-slider {height:100vh;top:75px;}
            .main-slider .swiper-slide {height:100vh;}
            .highlight-text{font-size:30px;}
            .text-content {max-width:80%;padding-left:70px}
            .custom-prev, .custom-next {width:35px;height:35px;}
            .custom-prev::after, .custom-next::after { width: 10px;height: 10px;}
            .custom-prev { left: 10px;}
            .custom-next { right: 10px;}
        }
