  /* SWIPER PRINCIPAL */
   .myslider-destaque {
    max-width: 824px;
   }

        .main-swiper {
            width: 100%;
            height: 500px;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            position: relative;
        }

        .swiper-slide {
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        /* IMAGEM DE FUNDO */
        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: brightness(0.7);
            transition: transform 0.5s ease;
        }

        .swiper-slide-active .slide-bg {
            transform: scale(1.05);
        }

        /* CONTEÚDO DO SLIDE */
        .slide-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            color: white;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
        }

        /* CATEGORIA E DATA */
        .slide-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .slide-category {
            background-color: var(--color-primary);
            color: white;
            padding: 6px 12px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .slide-date {
            color: rgba(255,255,255,0.9);
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
        }

        /* TÍTULO */
        .slide-title {
            color: #fff;
            font-size: 32px;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 10px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        /* DESCRIÇÃO */
        .slide-description {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 20px;
            max-width: 700px;
            color: rgba(255,255,255,0.95);
        }

        /* BOTÃO */
        .slide-button {
            display: inline-block;
            background-color: var(--color-primary);
            color: white;
            padding: 10px 25px;
            border-radius: 3px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 0.5px;
            transition: background-color 0.3s;
            align-self: flex-start;
        }

        .slide-button:hover {
            background-color: var(--color-primary-hover);
        }

        /* CONTADOR DO SLIDE ATUAL */
        .slide-counter {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 8px 15px;
            border-radius: 3px;
            font-size: 16px;
            font-weight: bold;
            z-index: 3;
        }

        /* SETAS DE NAVEGAÇÃO */
        .swiper-button-next,
        .swiper-button-prev {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.9);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 18px;
            color: #333;
            font-weight: bold;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--color-primary);
        }

        .swiper-button-next:hover:after,
        .swiper-button-prev:hover:after {
            color: white;
        }

        /* THUMBNAILS ABAIXO */
        .thumbnails-swiper {
            width: 100%;
            height: 100px;
            margin-top: 10px;
            background: #f8f8f8;
        }

        /* 👇 FORÇA ALINHAMENTO À ESQUERDA */
        .thumbnails-swiper .swiper-wrapper {
            justify-content: flex-start !important;
            padding-left: 0 !important;
            margin-left: 0 !important;
        }

        /* CORRIGIDO: position: relative adicionado */
        .thumbnail-slide {
            width: 120px;
            height: 70px;
            
            overflow: hidden;
            position: relative;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s;
            border: 3px solid transparent;
        }

        .thumbnail-slide.swiper-slide-thumb-active {
            opacity: 1;
            border-color: var(--color-primary);
            transform: scale(1.05);
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }

        .thumbnail-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* MARCADORES À ESQUERDA */
        .thumbnail-number {
            position: absolute;
            top: 5px;
            left: 5px;
            background: rgba(0,0,0,0.7);
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
            z-index: 2;
        }

        /* RESPONSIVIDADE */
        @media (max-width: 992px) {
            .main-swiper {
                height: 450px;
            }
            .slide-title {
                font-size: 28px;
            }
            .slide-description {
                font-size: 15px;
            }
            .slide-content {
                padding: 30px;
            }
            .thumbnail-slide {
                width: 100px;
                height: 60px;
            }
        }

        @media (max-width: 768px) {
            .main-swiper {
                height: 400px;
            }
            .slide-title {
                font-size: 24px;
            }
            .slide-description {
                font-size: 14px;
                margin-bottom: 15px;
            }
            .slide-content {
                padding: 25px;
            }
            .slide-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                margin-bottom: 12px;
            }
            .swiper-button-next,
            .swiper-button-prev {
                width: 35px;
                height: 35px;
            }
            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 16px;
            }
            .thumbnail-slide {
                width: 90px;
                height: 55px;
            }
            .slide-counter {
                top: 15px;
                left: 15px;
                padding: 6px 12px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .main-swiper {
                height: 350px;
            }
            .slide-title {
                font-size: 20px;
            }
            .slide-description {
                font-size: 13px;
            }
            .slide-content {
                padding: 20px;
            }
            .swiper-button-next,
            .swiper-button-prev {
                width: 30px;
                height: 30px;
            }
            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 14px;
            }
            .thumbnails-swiper {
                height: 80px;
                padding: 10px;
            }
            .thumbnail-slide {
                width: 80px;
                height: 50px;
            }
            .slide-counter {
                top: 10px;
                left: 10px;
                padding: 5px 10px;
                font-size: 13px;
            }
        }

