
        .fancybox__container {
            --fancybox-bg: rgba(10, 20, 10, 0.95);
        }

        .fancybox__caption {
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 70%, transparent 100%) !important;
            padding: 40px 30px 25px !important;
            text-align: left !important;
        }

        .fancybox-title-custom {
            color: var(--cor-secundaria);
            font-weight: 900;
            text-transform: uppercase;
            font-size: 1.3rem;
            margin-bottom: 5px;
            display: block;
        }

        .fancybox-desc-custom {
            color: #fff;
            font-size: 1rem;
            line-height: 1.5;
            opacity: 0.9;
        }

        .section-title-wrapper { text-align: center; margin-bottom: 3rem; opacity: 0; transform: translateY(20px); transition: all 0.8s ease; }
        .section-title-wrapper.active { opacity: 1; transform: translateY(0); }
        .section-title {
			font-size: 2.5rem;
		font-weight: 900;
		color: var(--cor-primaria);
		text-transform: uppercase;
		letter-spacing: -1px; 
}
        .section-title span { color: var(--cor-secundaria); }
        .title-underline { width: 80px; height: 4px; background: var(--cor-secundaria); margin: 15px auto 0; border-radius: 2px; }

        .progress-bar-container { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: rgba(255,255,255,0.2); z-index: 30; pointer-events: none; }
        .progress-bar-fill { height: 100%; background: var(--cor-primaria); width: 0%; transition: none; }
        
        /* BULLETS DO BANNER - CORES PRIMÁRIA E SECUNDÁRIA */
        .swiper-pagination-bullet { 
            background: var(--cor-primaria) !important; 
            opacity: 0.5; 
            width: 12px; 
            height: 12px; 
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            border: 2px solid rgba(255,255,255,0.3);
        }
        .swiper-pagination-bullet:hover {
            opacity: 0.8;
            transform: scale(1.2);
        }
        .swiper-pagination-bullet-active { 
            opacity: 1; 
            width: 36px; 
            border-radius: 6px; 
            background: var(--cor-secundaria) !important; 
            border-color: var(--cor-secundaria);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
        }
        
        .swiper-button-next, .swiper-button-prev { 
            background: rgba(255, 255, 255, 0.85); 
            width: 48px !important; height: 48px !important; 
            border-radius: 50%; color: var(--cor-primaria) !important; 
            box-shadow: 0 4px 20px rgba(0,0,0,0.15); backdrop-filter: blur(5px);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .swiper-button-next:hover, .swiper-button-prev:hover { 
            background: var(--cor-secundaria); color: #fff !important; transform: scale(1.15); 
        }

        /* SETAS DA GALERIA - POSICIONADAS ACIMA */
        .galeria-navigation-wrapper {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            margin-bottom: 20px;
            padding-right: 10px;
        }
        .galeria-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cor-primaria), #1a3a20);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(44, 82, 52, 0.3);
            border: none;
            font-size: 18px;
        }
        .galeria-btn:hover {
            background: linear-gradient(135deg, var(--cor-secundaria), #c4a030);
            transform: scale(1.1) translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }
        .galeria-btn:active {
            transform: scale(0.95);
        }
        .galeria-btn.swiper-button-disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }

        /* CARDS DA GALERIA - DESIGN MODERNO */
        .card-historia {
            display: block;
            height: 100%;
            position: relative;
        }
        .card-historia-inner {
            position: relative;
            height: 100%;
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0,0,0,0.05);
        }
        .card-historia:hover .card-historia-inner {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            border-color: var(--cor-secundaria);
        }
        .card-historia-image {
            position: relative;
            height: 240px;
            overflow: hidden;
        }
        .card-historia-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .card-historia:hover .card-historia-image img {
            transform: scale(1.1);
        }
        .card-historia-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .card-historia:hover .card-historia-overlay {
            opacity: 1;
        }
        .btn-action-overlay { 
            position: absolute; 
            top: 50%; 
            left: 50%; 
            transform: translate(-50%, -50%) scale(0.8);
            width: 70px; 
            height: 70px; 
            background: rgba(255,255,255,0.95); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: var(--cor-primaria); 
            font-size: 22px; 
            opacity: 0; 
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
            pointer-events: none; 
            z-index: 20;
        }
        .card-historia:hover .btn-action-overlay { 
            opacity: 1; 
            transform: translate(-50%, -50%) scale(1); 
        }
        .card-historia-content {
            padding: 24px;
            position: relative;
        }
        .card-historia-badge {
            position: absolute;
            top: -18px;
            left: 24px;
            background: linear-gradient(135deg, var(--cor-secundaria), #c4a030);
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }
        .card-historia-title {
            font-weight: 900;
            font-size: 1.25rem;
            color: var(--cor-primaria);
            text-transform: uppercase;
            letter-spacing: -0.5px;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .card-historia-desc {
            font-size: 0.9rem;
            color: #6b7280;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .card-historia-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #f0f0f0;
        }
        .card-historia-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--cor-primaria);
            font-weight: 700;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        .card-historia:hover .card-historia-link {
            color: var(--cor-secundaria);
            gap: 12px;
        }

        /* TIMELINE MELHORADO COM MAIS EFEITOS */
        .timeline-box { 
            position: relative; 
            overflow: hidden; 
            background: linear-gradient(135deg, var(--cor-primaria) 0%, #1a3a20 50%, #0f2615 100%); 
            color: white; 
        }
        .timeline-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
            animation: timeline-glow 15s ease-in-out infinite;
        }
        @keyframes timeline-glow {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30%, 30%); }
        }
        .timeline-particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }
        .timeline-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--cor-secundaria);
            border-radius: 50%;
            opacity: 0;
            animation: particle-float 8s ease-in-out infinite;
        }
        .timeline-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .timeline-particle:nth-child(2) { left: 30%; animation-delay: 2s; }
        .timeline-particle:nth-child(3) { left: 50%; animation-delay: 4s; }
        .timeline-particle:nth-child(4) { left: 70%; animation-delay: 6s; }
        .timeline-particle:nth-child(5) { left: 90%; animation-delay: 1s; }
        @keyframes particle-float {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100px) scale(1); opacity: 0; }
        }
        .timeline-line-bg { 
            position: absolute; 
            left: 30px; 
            top: 0; 
            width: 2px; 
            height: 100%; 
            background: rgba(255, 255, 255, 0.1); 
        }
        .timeline-line-dynamic { 
            position: absolute; 
            left: 30px; 
            top: 0; 
            width: 2px; 
            height: 0%; 
            background: linear-gradient(180deg, var(--cor-secundaria), rgba(212, 175, 55, 0.3)); 
            transition: height 1.8s cubic-bezier(0.4, 0, 0.2, 1); 
            box-shadow: 0 0 20px var(--cor-secundaria), 0 0 40px rgba(212, 175, 55, 0.3); 
        }
        .timeline-item-card { 
            position: relative; 
            background: rgba(255, 255, 255, 0.03); 
            border: 1px solid rgba(255, 255, 255, 0.08); 
            padding: 1.5rem; 
            border-radius: 1rem; 
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
            backdrop-filter: blur(12px); 
            margin-left: 15px;
            overflow: hidden;
        }
        .timeline-item-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s ease;
        }
        .js-timeline-item.active .timeline-item-card::before {
            left: 100%;
        }
        .js-timeline-item.active .timeline-item-card { 
            background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)); 
            border-color: rgba(212, 175, 55, 0.5); 
            transform: translateX(8px); 
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
        }
        .timeline-dot { 
            position: absolute; 
            left: -6px; 
            top: 23px; 
            height: 14px; 
            width: 14px; 
            border-radius: 50%; 
            background: rgba(255,255,255,0.3); 
            z-index: 10; 
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05); 
        }
        .js-timeline-item.active .timeline-dot { 
            background: var(--cor-secundaria); 
            box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.3), 0 0 20px var(--cor-secundaria); 
            transform: scale(1.2);
        }
        .timeline-dot::after {
            content: '';
            position: absolute;
            inset: 3px;
            background: #fff;
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .js-timeline-item.active .timeline-dot::after {
            opacity: 1;
        }
        .timeline-year {
            display: inline-block;
            background: linear-gradient(135deg, var(--cor-secundaria), #c4a030);
            color: #1a1a1a;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .timeline-title {
            color: white;
            font-weight: 900;
            font-size: 1.4rem;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .timeline-desc {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.75);
            font-weight: 400;
            line-height: 1.7;
        }

        .card-mvv { transition: all 0.4s ease; border-left: 5px solid var(--cor-primaria); background: #fff; }
        .card-mvv:hover { transform: translateY(-5px); border-left-color: var(--cor-secundaria); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
        .mvv-icon-wrapper { width: 64px; height: 64px; border-radius: 18px; background: linear-gradient(135deg, var(--cor-primaria), #000); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; }

        .bg-numero-card { background-color: #f9fafb; transition: all 0.4s; border: 2px solid transparent; }
        .bg-numero-card:hover { background-color: white; border-color: var(--cor-secundaria); transform: translateY(-8px); }
          
   .hero-section { position: relative; overflow: hidden; width: 100%; background: #000; }


  @media (max-width: 767px) {
.hero-section {
     display:none;
 }
 .py-16{
	     padding-top: 2rem !important;
 }
 .mb-24{
	 margin-bottom: 1rem !important;
 }
 .mt-24{
	margin-top: 1rem !important; 
 }
.section-title {
			font-size: clamp(2rem, 5vw, 3rem); 
            font-weight: 800; 
            text-transform: uppercase;
            letter-spacing: -0.06em; 
            line-height: 1.1; 
            color: var(--cor-primaria);
            margin-bottom:1px;
		}
    .galeriaSwiper {
        padding: 0 15px !important; 
    }
    .card-historia-inner {
        margin: 0 auto;
        max-width: 100%;
    }
    .galeria-navigation-wrapper {
        justify-content: center;
        margin-bottom: 15px;
        gap: 20px;
    }
    .galeriaSwiper {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .card-historia-inner {
        transform: none !important; 
        margin-bottom: 10px;
    }
    .card-historia-image {
        height: 200px; 
    }
    .galeria-navigation-wrapper {
        justify-content: center;
        padding-right: 0;
        margin-bottom: 15px;
    }
}