/* --- GLOBAIS --- */
        a{
            color: #333;
            text-decoration: none;
        }
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            overflow-x: hidden;
            background-color: #fff;
        }
        * { box-sizing: border-box; } 

        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

        /* --- HEADER (VAZADO E COM FORMA CURVADA) --- */
        header {
            position: absolute; /* Coloca o header sobre o banner */
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent !important;
            box-shadow: none;
        }

        /* O Pulo do Gato: Fundo branco com a curva e a linha vermelha */
        .header-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 65%; /* Ocupa 65% da tela para fazer a curva suave */
            height: 105px;
            z-index: 0;
            pointer-events: none;
            /* SVG que desenha a onda branca e o risco vermelho idêntico a imagem */
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1000,0 C850,0 600,100 450,100 L0,100 Z' fill='%23ffffff'/%3E%3Cpath d='M0,100 L450,100 C600,100 850,0 1000,0' fill='none' stroke='%23cc1111' stroke-width='4'/%3E%3C/svg%3E");
            background-size: 100% 100%;
            background-repeat: no-repeat;
            filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.1));
        }

        /* Área Topo: Logo, Slogan, Sociais, Busca */
        .header-top {
            position: relative;
            z-index: 2; /* Fica em cima da curva branca */
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 105px;
            padding: 0 1%;
        }

        /* Lado Esquerdo: Logo e Slogan */
        .brand-area {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .brand-area .logo img {
            max-height: 60px; /* Tamanho ajustado da logo */
            display: block;
        }

        .brand-area .slogan {
            font-family: 'Roboto', sans-serif;
            color: #666;
            font-size: 0.95rem;
            font-weight: 500;
            border: none;
            padding-left: 5px;
            white-space: nowrap;
        }

        /* Lado Direito: Ações (Vazado no Banner) */
        .actions-area {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .social-icons-header {
            display: flex;
            gap: 8px;
        }
        
        .social-icons-header a {
            color: #555;
            background-color: #fff;
            font-size: 1rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px; 
            height: 32px;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: color 0.2s, transform 0.2s;
        }
        .social-icons-header a:hover {
            color: #d9534f;
            transform: scale(1.1);
        }

        .search-bar-header {
            background-color: #fff;
            border-radius: 25px;
            display: flex;
            align-items: center;
            padding: 3px 4px 3px 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            width: 220px;
        }
        
        .search-bar-header input {
            border: none;
            background: transparent;
            padding: 5px 5px 5px 0;
            outline: none;
            width: 100%;
            font-size: 0.85rem;
            color: #555;
        }
        
        .search-bar-header button {
            background-color: #cc1111;
            color: white;
            border: none;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .acesso-restrito-btn {
            background: linear-gradient(90deg, #d9534f, #cc1111);
            color: white !important;
            padding: 6px 20px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 10px rgba(200, 0, 0, 0.3);
            text-decoration: none;
        }
        
        .acesso-restrito-btn i {
            font-size: 1.1rem;
        }
        
        .acesso-restrito-btn .btn-text {
            display: flex;
            flex-direction: column;
            text-align: left;
            line-height: 1.1;
        }
        
        .acesso-restrito-btn .btn-text .small {
            font-size: 0.65rem;
            font-weight: 400;
        }
        
        .acesso-restrito-btn .btn-text .big {
            font-size: 0.85rem;
            font-weight: 700;
        }

        /* --- BARRA DE NAVEGAÇÃO (Branca com ícones) --- */
        .nav-bar-wrapper {
            background-color: #ffffff; /* Fundo totalmente branco como na imagem */
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
            position: relative;
            z-index: 2;
        }

        .main-menu ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 0;
        }

        /* Divisórias entre os menus */
        .main-menu > ul > li {
            position: relative;
            border-right: 1px solid #e0e0e0;
        }
        .main-menu > ul > li:last-child { border-right: none; }
        .main-menu > ul > li:first-child { border-left: 1px solid #e0e0e0; }

        .main-menu a {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #1c2833;
            font-weight: 700;
            font-size: 14px;
            text-transform: none; 
            padding: 16px 25px;
            position: relative;
            transition: color 0.2s ease;
            white-space: nowrap;
        }
        
        .main-menu a i {
            color: #666;
            font-size: 1.1rem;
        }

        .main-menu a:hover { color: #d9534f; }
        
        /* Cores das linhas de marcação igual a imagem */
        .main-menu > ul > li > a::after {
            content: ''; position: absolute; bottom: -1px; left: 0; width: 0%; height: 3px; transition: width 0.3s;
        }
        
        .main-menu > ul > li:nth-child(1) > a::after { background-color: #cc1111; }
        .main-menu > ul > li:nth-child(2) > a::after { background-color: #34495e; }
        .main-menu > ul > li:nth-child(3) > a::after { background-color: #2980b9; } 
        .main-menu > ul > li:nth-child(4) > a::after { background-color: #7f8c8d; }
        .main-menu > ul > li:nth-child(5) > a::after { background-color: #34495e; }

        .main-menu > ul > li:hover > a::after { width: 100%; }
        
        /* Deixando as bordas ativas para ficar igual o print */
        .main-menu > ul > li.active-red > a::after { width: 100%; background-color: #cc1111; }
        .main-menu > ul > li.active-blue > a::after { width: 100%; background-color: #2980b9; }

        /* --- SUBMENU (Cascata) --- */
        .main-menu ul ul {
            display: block; visibility: hidden; opacity: 0;
            position: absolute; top: 100%; left: 0; background-color: #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1); min-width: 220px;
            flex-direction: column; padding: 10px 0; border-top: 3px solid #d9534f;
            transform: translateY(10px); transition: all 0.3s ease; z-index: 999;
        }
        .main-menu li:hover > ul { visibility: visible; opacity: 1; transform: translateY(0); }
        .main-menu ul ul li { margin: 0; width: 100%; position: relative; border: none; }
        .main-menu ul ul a { padding: 10px 20px; font-size: 0.9rem; text-transform: none; color: #666; border-bottom: 1px solid #f5f5f5; }
        .main-menu ul ul a:hover { background-color: #f9f9f9; color: #d9534f; padding-left: 25px; }
        .main-menu ul ul a::after { display: none; } 
        .main-menu ul ul ul { top: 0; left: 100%; margin-left: 0; border-top: none; border-left: 3px solid #d9534f; }
        .has-drop > a::after { content: '\f0d7'; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-left: 5px; font-size: 0.8em; background: none; height: auto; width: auto; position: static; }
        .main-menu ul ul .has-drop > a::after { content: '\f0da'; float: right; }

        /* --- HERO SLIDER (BANNER) --- */
        .banner-container {
            position: relative; width: 100%; min-height: 600px;
            background-color: #231e2d; 
            overflow: hidden; display: flex; 
            padding-top: 0; 
            box-sizing: border-box;
            z-index: 1; /* Fica abaixo do header absoluto */
        }
        .hero-slide {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            display: flex; align-items: center;
            opacity: 0; transition: opacity 1s ease-in-out;
            z-index: 1; background-size: cover; background-position: center;
        }
        .hero-slide.active { opacity: 1; z-index: 2; }
        .hero-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to right, rgb(18 18 18 / 77%) 20%, rgba(35, 30, 45, 0.6) 50%, transparent 80%);
            z-index: 1;
        }
        .banner-content {
            position: relative; z-index: 3; color: white; margin-left: 8%; padding: 20px; margin-top: 50px; /* Desce um pouco por causa do header novo */
        }
        .banner-content h1 { font-size: 2.5rem; font-weight: 300; color: #f0f0f0; line-height: 1.2; margin: 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
        .banner-content h1 strong { display: block; font-size: 3.5rem; font-weight: 900; color: #F9B529; }
        .banner-content p { font-size: 1rem; line-height: 1.6; color: #e0e0e0; max-width: 450px; }
        .divider { width: 70px; height: 4px; background-color: #F9B529; margin: 20px 0; border-radius: 2px; }
        .btn-saiba-mais {
            display: inline-block; background-color: #F9B529; color: #222;
            padding: 12px 30px; border-radius: 50px; text-decoration: none;
            font-weight: bold; margin-top: 20px; transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn-saiba-mais:hover { background-color: #e0a424; transform: scale(1.05); }
        
        .hero-nav { position: absolute; bottom: 60px; right: 8%; z-index: 10; display: flex; gap: 20px; }
        .hero-btn {
            width: 60px; height: 60px; border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.6); border: 2px solid rgba(255, 255, 255, 0.8);
            color: white; font-size: 1.4rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s ease; backdrop-filter: blur(4px); box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        .hero-btn:hover { background-color: #d9534f; border-color: #d9534f; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(217, 83, 79, 0.5); }

        /* --- ATALHOS RÁPIDOS --- */
        .quick-links-section { overflow: visible !important; position: relative; background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23ffffff' opacity='0.7' /%3E%3C/svg%3E"); }
        .links-container-light ul { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .links-container-light li { min-width: 100px; flex-shrink: 0; }
        .links-container-light a { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: #555; padding: 15px 5px; border-radius: 8px; transition: all 0.2s ease-in-out; height: 100%; box-sizing: border-box; border: 1px solid transparent; }
        .links-container-light a:hover { background-color: #ffffff; color: #d9534f; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); border-color: #eeeeee; }
        .links-container-light i { font-size: 2.5em; margin-bottom: 15px; color: #444; transition: color 0.2s ease; }
        .links-container-light a:hover i { color: #d9534f; }
        .links-container-light span { font-size: 0.85em; font-weight: bold; text-align: center; line-height: 1.3; }

        /* --- SUBMENU DOS ÍCONES --- */
        .links-container-light li.has-submenu { position: relative !important; overflow: visible !important; z-index: 100; }
        .links-container-light li.has-submenu::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 20px; background: transparent; }
        .submenu-links { display: none !important; opacity: 0; visibility: hidden; position: absolute; top: calc(100% + 15px); left: 50%; transform: translateX(-50%); background-color: #ffffff; min-width: 220px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-radius: 8px; border: 1px solid #eee; z-index: 9999; padding: 10px 0 !important; margin: 0 !important; list-style: none !important; flex-direction: column !important; }
        .submenu-links::before { content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid #ffffff; }
        .links-container-light li.has-submenu:hover .submenu-links { display: flex !important; visibility: visible; opacity: 1; animation: submenuSlideUp 0.3s ease forwards; }
        .submenu-links li { width: 100% !important; margin: 0 !important; padding: 0 !important; display: block !important; }
        .submenu-links a { display: block !important; width: 100%; padding: 12px 20px !important; font-size: 0.9rem !important; color: #555 !important; text-align: left !important; text-decoration: none; background: transparent; border: none; transition: all 0.2s ease; }
        .submenu-links a:hover { background-color: #fff0ef !important; color: #d9534f !important; padding-left: 25px !important; }
        .submenu-links a i { display: none !important; }
        @keyframes submenuSlideUp { from { opacity: 0; transform: translate(-50%, 10px); } to { opacity: 1; transform: translate(-50%, 0); } }

        /* --- NOTÍCIAS/CARDS GERAIS --- */
        .container-noticias { font-family: 'Inter', sans-serif; max-width: 1200px; margin: 0 auto; padding: 0 20px; padding-bottom:60px; }
        .grid-noticias-iba { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
        .card-news-horizontal { display: flex; align-items: flex-start; gap: 15px; text-decoration: none; color: inherit; background: transparent; }
        .card-news-img { width: 180px; height: 110px; border-radius: 8px; overflow: hidden; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
        .card-news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
        .card-news-horizontal:hover .card-news-img img { transform: scale(1.05); }
        .card-news-body { display: flex; flex-direction: column; gap: 6px; padding-top: 2px; }
        .card-news-date { font-size: 0.8rem; color: #888; font-weight: 500; display: flex; align-items: center; gap: 5px; }
        .card-news-tag { display: inline-block; background-color: #f0f0f0; color: #333; font-size: 0.7rem; padding: 3px 10px; border-radius: 20px; font-weight: 700; text-transform: uppercase; align-self: flex-start; margin-bottom: 2px; }
        .tag-verde { background-color: #e6fffa; color: #00664f; }
        .tag-laranja { background-color: #fff0e6; color: #c24900; }
        .tag-azul { background-color: #e6f0ff; color: #0052cc; }
        .card-news-titulo { font-size: 1.1rem; font-weight: 700; color: #333; line-height: 1.4; margin: 0; transition: color 0.2s; }
        .card-news-horizontal:hover .card-news-titulo { color: #d9534f; }

        /* --- TÍTULOS E SUBTÍTULOS --- */
        .events-section-header { text-align: center; padding: 30px 20px 30px !important; }
        .section-title { font-family: 'Arial Black', Gadget, sans-serif; font-size: 2.8em; color: #333; text-transform: uppercase; letter-spacing: 2px; position: relative; padding-bottom: 15px; display: inline-block; margin: 0; max-width: 100%; word-wrap: break-word; }
        .section-title::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 80px; height: 4px; background-color: #d9534f; border-radius: 2px; }
        .section-subtitle { font-family: 'Inter', sans-serif; font-size: 1.1rem; color: #555; margin-top: 15px; font-weight: 400; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.5; }
        .section-title-left { font-family: 'Arial Black', Gadget, sans-serif; font-size: 1.8em; color: #333; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; position: relative; padding-bottom: 10px; display: inline-block; }
        .section-title-left::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 4px; background-color: #d9534f; border-radius: 2px; }

        /* --- BACKGROUNDS --- */
        .secao-detalhe-blob { position: relative; overflow: hidden; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 900 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M400.3 568.4C345.5 528.2 277.6 476.3 246.2 423.8C214.8 371.3 219.8 318.1 247.4 269.9C274.9 221.7 325 178.5 379.7 139.7C434.4 100.9 493.7 66.5 556.7 67.8C619.7 69.1 686.4 106.1 721.5 157.8C756.7 209.6 759.9 276.1 738 331.1C716.1 390.2 669.1 437.8 617.9 476.1C566.7 514.4 511.3 543.5 456.4 559.1C440 565 420 570 400.3 568.4Z' fill='%23ccc' opacity='0.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center center; background-size: 100% 100%; }
        .secao-detalhe-linhas { position: relative; overflow: hidden; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23d9534f' stroke-width='1' opacity='0.15'%3E%3Cpath d='M 0 400 C 200 400 200 400 400 400 S 600 400 800 400' /%3E%3Cpath d='M 0 320 C 200 320 200 480 400 480 S 600 320 800 320' /%3E%3Cpath d='M 0 360 C 200 360 200 440 400 440 S 600 360 800 360' /%3E%3Cpath d='M 0 380 C 200 380 200 420 400 420 S 600 380 800 380' /%3E%3Cpath d='M 0 280 C 200 280 200 520 400 520 S 600 280 800 280' /%3E%3Cpath d='M 0 240 C 200 240 200 560 400 560 S 600 240 800 240' /%3E%3Cpath d='M 0 200 C 200 200 200 600 400 600 S 600 200 800 200' /%3E%3Cpath d='M 0 160 C 200 160 200 640 400 640 S 600 160 800 160' /%3E%3C/g%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: cover; padding-bottom: 60px; }

        /* --- EVENTOS (3 COLUNAS) --- */
        .grid-eventos-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 20px; }
        .card-evento-vertical { display: flex; flex-direction: column; background-color: #ffffff; border-radius: 10px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; }
        .card-evento-vertical:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.12); }
        .card-evento-img-wrapper { width: 100%; height: 150px; position: relative; overflow: hidden; }
        .card-evento-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .card-evento-vertical:hover .card-evento-img-wrapper img { transform: scale(1.1); }
        .card-icon-overlay { position: absolute; top: 10px; right: 10px; background-color: rgba(255, 255, 255, 0.9); width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #d9534f; font-size: 0.9rem; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
        .card-evento-body { padding: 15px 20px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
        .card-evento-info { display: flex; flex-direction: column; gap: 5px; }
        .card-evento-date { font-size: 0.8rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
        .card-evento-title { font-size: 1.05rem; font-weight: 700; color: #333; line-height: 1.4; margin: 5px 0 0 0; }
        .card-evento-link-text { font-size: 0.85rem; font-weight: 600; color: #d9534f; margin-top: 15px; display: inline-block; }

        /* --- AGENDA E PARCEIRO (ATUALIZADO) --- */
        .grid-mista-agenda-parceiro { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
        .col-parceiro, .col-agenda { display: flex; flex-direction: column; }
        .agenda-list-compact { display: flex; flex-direction: column; gap: 15px; height: 100%; justify-content: space-between; }
        .agenda-list-compact .agenda-item { padding: 15px 20px; background: #ffffff; border: 1px solid #eee; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.03); display: flex; align-items: center; gap: 15px; }
        .agenda-list-compact .agenda-item:hover { transform: translateX(5px); border-left: 4px solid #d9534f; }
        .mini-date { display: flex; flex-direction: column; align-items: center; justify-content: center; background-color: #f9f9f9; padding: 5px 10px; border-radius: 6px; border: 1px solid #eee; min-width: 50px; }
        .mini-date .d { font-size: 1.2rem; font-weight: 900; color: #333; line-height: 1; }
        .mini-date .m { font-size: 0.7rem; font-weight: 600; color: #888; text-transform: uppercase; }
        .agenda-info h4 { margin: 0 0 4px 0; font-size: 0.95rem; font-weight: 700; color: #333; }
        .agenda-info span { font-size: 0.8rem; color: #666; display: flex; align-items: center; gap: 5px; }
        .card-parceiro-vertical { display: flex; flex-direction: column; background-color: #fff; border-radius: 12px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.3s ease; height: 100%; }
        .card-parceiro-vertical:hover { transform: translateY(-5px); }
        .parceiro-img-wrapper { width: 100%; height: 220px; position: relative; flex-shrink: 0; }
        .parceiro-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .parceiro-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
        .parceiro-tag { display: inline-block; background-color: #e6f0ff; color: #0052cc; font-size: 0.8rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; align-self: flex-start; }
        .parceiro-title { font-size: 1.3rem; color: #333; font-weight: 700; line-height: 1.4; margin: 0; }
        .parceiro-desc { font-size: 0.95rem; color: #666; margin-top: 10px; line-height: 1.5; }

        /* --- CTA BANNERS 600px --- */
        .container-videos-cta { background-color: transparent; font-family: 'Inter', sans-serif; color: #333; text-align: center; }
        .container-videos-cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .banners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 40px; }
        .banner-large-card { display: block; position: relative; height: 400px; border-radius: 8px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
        .banner-overlay-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%); z-index: 1; }
        .banner-large-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; z-index: 0; }
        .banner-large-card:hover img { transform: scale(1.05); }
        .banner-text-content { position: absolute; bottom: 40px; left: 30px; right: 30px; z-index: 2; text-align: left; }
        .banner-text-content h3 { color: white; font-family: 'Roboto', sans-serif; font-size: 2.2rem; font-weight: 900; text-transform: uppercase; margin: 0; line-height: 1.1; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }

        /* --- SLIDER ASSOCIADAS --- */
        .associadas-section { padding: 60px 0; background-color: #ffffff; overflow: hidden; }
        .rows-container { display: flex; flex-direction: column; gap: 30px; }
        .associadas-track { display: flex; width: max-content; align-items: center; }
        .scroll-left { animation: scrollLeft 120s linear infinite; }
        .scroll-right { animation: scrollRight 120s linear infinite; }
        .associadas-track:hover { animation-play-state: paused; }
        .associadas-track .slide-logo { width: 200px; height: 120px; display: flex; align-items: center; justify-content: center; background-color: #fff; border: 1px solid #f0f0f0; border-radius: 8px; margin: 0 15px; padding: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.03); overflow: hidden; }
        .associadas-track .slide-logo img { width: 100%; height: 100%; object-fit: contain; object-position: center center; display: block; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s ease; }
        .associadas-track .slide-logo:hover { border-color: #d9534f; transform: translateY(-3px); }
        .associadas-track .slide-logo:hover img { filter: grayscale(0%); opacity: 1; }
        @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        @keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

        /* --- WHATSAPP --- */
        .whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 100px; right: 25px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 3px #999; z-index: 999990; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s ease; }
        .whatsapp-float:hover { background-color: #128C7E; color: #fff; transform: scale(1.1); }

        /* --- PRIVACIDADE --- */
        .privacy-bar-clean { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #ffffff; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); padding: 25px 20px; display: flex; justify-content: center; align-items: center; gap: 30px; z-index: 999999; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1); box-sizing: border-box; }
        .privacy-bar-clean.show-bar { transform: translateY(0); }
        .privacy-content p { margin: 0; font-size: 0.95rem; color: #666666; line-height: 1.5; font-family: 'Roboto', sans-serif; max-width: 800px; }
        .privacy-content a { color: #444; font-weight: bold; text-decoration: underline; transition: color 0.2s; }
        .privacy-content a:hover { color: #000; }
        .privacy-btn-green { background-color: #d9534f; color: white; border: none; padding: 12px 35px; border-radius: 4px; font-size: 0.95rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all 0.2s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
        .privacy-btn-green:hover { background-color: #c9302c; transform: translateY(-1px); }

        /* --- RESPONSIVO --- */
        .mobile-menu-toggle { display: none; width: 40px; height: 40px; padding: 8px; background-color: #f1f1f1; border: none; border-radius: 4px; cursor: pointer; z-index: 1010; flex-direction: column; justify-content: space-around; }
        .mobile-menu-toggle .icon-bar { display: block; width: 100%; height: 3px; background-color: #333; border-radius: 2px; transition: all 0.3s ease-in-out; }

        @media (max-width: 1024px) {
            .mobile-menu-toggle { display: flex; position: absolute; top: 30px; right: 20px; }
            .header-bg-wrapper { width: 100%; background-image: none; background-color: #fff; border-bottom: 2px solid #cc1111; } /* Fallback para mobile */
            .actions-area { display: none; width: 100%; }
            .nav-bar-wrapper { display: none; }
            body.menu-aberto .nav-bar-wrapper { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #fff; z-index: 1005; padding-top: 80px; }
            body.menu-aberto .main-menu ul { flex-direction: column; align-items: center; }
            body.menu-aberto .main-menu li { margin: 15px 0; border: none; }
            body.menu-aberto .main-menu a { font-size: 1.2rem; }
            body.menu-aberto .mobile-menu-toggle .icon-bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
            body.menu-aberto .mobile-menu-toggle .icon-bar:nth-child(2) { opacity: 0; }
            body.menu-aberto .mobile-menu-toggle .icon-bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
            .grid-noticias-iba { grid-template-columns: 1fr; }
        }

        @media (max-width: 900px) {
            .brand-area { flex-direction: column; align-items: flex-start; gap: 10px; }
            .grid-noticias-iba { grid-template-columns: 1fr; }
            .banners-grid { grid-template-columns: 1fr; }
            .grid-mista-agenda-parceiro { grid-template-columns: 1fr; gap: 30px; }
            .grid-eventos-home { grid-template-columns: repeat(2, 1fr); }
            .banner-large-card { height: 450px; }
            .banner-text-content h3 { font-size: 1.8rem; }
        }
        
        @media (max-width: 600px) {
            .grid-eventos-home { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .section-title { font-size: 2rem; }
            .section-subtitle { font-size: 1rem; padding: 0 10px; }
            .banner-content h1 { font-size: 1.8rem; }
            .banner-content h1 strong { font-size: 2.2rem; }
            .banner-content p { font-size: 0.95rem; padding: 0 10px; }
            .banner-container { min-height: 600px; }
            .banner-content { margin: 0 auto; text-align: center; margin-top: 100px; }
            .hero-nav { right: 50%; transform: translateX(50%); bottom: 30px; gap: 15px; }
            .hero-btn { width: 45px; height: 45px; font-size: 1rem; }
            .associadas-track .slide-logo { width: 140px; height: 90px; padding: 10px; margin: 0 8px; }
            .footer-top-row { flex-direction: column; text-align: center; gap: 20px; padding-bottom: 20px; border-right: none; }
            .footer-logo-area { text-align: center; padding-right: 0; align-items: center; border-right: none; padding-bottom: 15px; border-bottom: 1px solid #444; }
            .logo-tagline { text-align: center; }
            .footer-contact-area { text-align: center; padding-left: 0; }
            .nav-column { flex: 1 1 100%; text-align: center; margin-bottom: 20px; }
            .footer-legal-bar { flex-direction: column; text-align: center; gap: 15px; }
            .footer-legal-links a { margin: 0 10px; }
            .footer-developer-info { order: 2; }
            .copyright { order: 1; }
            .footer-legal-links { order: 3; }
            .privacy-bar-clean { flex-direction: column; text-align: center; padding: 20px; gap: 20px; }
            .privacy-btn-green { width: 100%; padding: 15px; }
            .whatsapp-float { bottom: 20px; right: 20px; }
        }

        /* --- FOOTER --- */
        .site-footer { background-color: #2b2b2b; color: #cccccc; padding: 60px 0; font-size: 0.9rem; } 
        .footer-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
        .footer-top-row { display: flex; align-items: center; justify-content: center; padding-bottom: 20px; border-bottom: 1px solid #444; margin-bottom: 30px; width: 100%; }
        .footer-logo-area { flex: 1; text-align: center; padding-right: 25px; border-right: 1px solid #444; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        .footer-logo-area img { height: auto; width: 150px; max-width: 100%; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; display: block; margin-bottom: 5px; }
        .logo-tagline { font-size: 0.85rem; color: #999999; margin-top: 0; max-width: 250px; line-height: 1.3; font-weight: 500; text-align: center; }
        .footer-contact-area { flex: 1; text-align: center; padding-left: 25px; }
        .footer-contact-area h3 { font-size: 1.1em; font-weight: bold; color: #ffffff; margin: 0 0 8px 0; text-transform: uppercase; }
        .footer-contact-area p { line-height: 1.5; margin: 3px 0; color: #cccccc; font-size: 0.9em; }
        .footer-bottom-nav { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
        .nav-column { flex: 1; min-width: 150px; }
        .nav-column h4 { font-size: 1em; font-weight: bold; color: #ffffff; margin-top: 0; margin-bottom: 10px; border-bottom: 2px solid #d9534f; display: inline-block; padding-bottom: 5px; }
        .nav-column ul { list-style: none; padding: 0; margin: 0; }
        .nav-column li { margin-bottom: 6px; }
        .nav-column a { color: #cccccc; text-decoration: none; font-size: 0.85em; transition: color 0.2s; }
        .nav-column a:hover { color: #ffffff; text-decoration: underline; }
        .footer-newsletter p { font-size: 0.85em; margin-bottom: 10px; }
        .newsletter-form input[type="email"], .newsletter-form button { width: 100%; box-sizing: border-box; border-radius: 4px; padding: 8px 15px; margin-bottom: 8px; display: block; height: 40px; }
        .newsletter-form input[type="email"] { border: 1px solid #555; background-color: #f1f1f1; color: #333; }
        .newsletter-form button { background-color: #d9534f; color: white; border: none; cursor: pointer; font-weight: bold; margin-bottom: 0; }
        .newsletter-form button:hover { background-color: #c9302c; }
        .footer-legal-bar { border-top: 1px solid #444; margin-top: 20px; padding-top: 15px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: #888; }
        .footer-legal-links a { color: #888; text-decoration: none; margin-left: 20px; transition: color 0.2s; }
        .footer-legal-links a:hover { color: #d9534f; text-decoration: underline; }
        .footer-developer-info { color: #888; text-align: center; }
        .footer-developer-info a { color: #d9534f; text-decoration: none; transition: color 0.2s; }
        .footer-developer-info a:hover { color: #ffffff; text-decoration: underline; }

/* --- GLOBAIS --- */
            body {
                font-family: 'Roboto', sans-serif;
                margin: 0;
                overflow-x: hidden;
                background-color: #fff;
            }
            * { box-sizing: border-box; } 

            .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

            /* --- HEADER (VAZADO E COM FORMA CURVADA) --- */
            header {
                position: absolute; /* Coloca o header sobre o banner */
                top: 0;
                left: 0;
                width: 100%;
                z-index: 1000;
                background: transparent !important;
                box-shadow: none;
            }

            /* O Pulo do Gato: Fundo branco com a curva e a linha vermelha */
            .header-bg-wrapper {
                position: absolute;
                top: 0;
                left: 0;
                width: 65%; /* Ocupa 65% da tela para fazer a curva suave */
                height: 105px;
                z-index: 0;
                pointer-events: none;
                /* SVG que desenha a onda branca e o risco vermelho idêntico a imagem */
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1000,0 C850,0 600,100 450,100 L0,100 Z' fill='%23ffffff'/%3E%3Cpath d='M0,100 L450,100 C600,100 850,0 1000,0' fill='none' stroke='%23cc1111' stroke-width='4'/%3E%3C/svg%3E");
                background-size: 100% 100%;
                background-repeat: no-repeat;
                filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.1));
            }

            /* Área Topo: Logo, Slogan, Sociais, Busca */
            .header-top {
                position: relative;
                z-index: 2; /* Fica em cima da curva branca */
                display: flex;
                justify-content: space-between;
                align-items: center;
                height: 105px;
                padding: 0 1%;
            }

            /* Lado Esquerdo: Logo e Slogan */
            .brand-area {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .brand-area .logo img {
                max-height: 60px; /* Tamanho ajustado da logo */
                display: block;
            }

            .brand-area .slogan {
                font-family: 'Roboto', sans-serif;
                color: #666;
                font-size: 0.95rem;
                font-weight: 500;
                border: none;
                padding-left: 5px;
                white-space: nowrap;
            }

            /* Lado Direito: Ações (Vazado no Banner) */
            .actions-area {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .social-icons-header {
                display: flex;
                gap: 8px;
            }
            
            .social-icons-header a {
                color: #555;
                background-color: #fff;
                font-size: 1rem;
                text-decoration: none;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 32px; 
                height: 32px;
                border-radius: 50%;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                transition: color 0.2s, transform 0.2s;
            }
            .social-icons-header a:hover {
                color: #d9534f;
                transform: scale(1.1);
            }

            .search-bar-header {
                background-color: #fff;
                border-radius: 25px;
                display: flex;
                align-items: center;
                padding: 3px 4px 3px 15px;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                width: 220px;
            }
            
            .search-bar-header input {
                border: none;
                background: transparent;
                padding: 5px 5px 5px 0;
                outline: none;
                width: 100%;
                font-size: 0.85rem;
                color: #555;
            }
            
            .search-bar-header button {
                background-color: #cc1111;
                color: white;
                border: none;
                border-radius: 50%;
                width: 28px;
                height: 28px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.8rem;
                flex-shrink: 0;
            }

            .acesso-restrito-btn {
                background: linear-gradient(90deg, #d9534f, #cc1111);
                color: white !important;
                padding: 6px 20px;
                border-radius: 30px;
                display: flex;
                align-items: center;
                gap: 10px;
                box-shadow: 0 4px 10px rgba(200, 0, 0, 0.3);
                text-decoration: none;
            }
            
            .acesso-restrito-btn i {
                font-size: 1.1rem;
            }
            
            .acesso-restrito-btn .btn-text {
                display: flex;
                flex-direction: column;
                text-align: left;
                line-height: 1.1;
            }
            
            .acesso-restrito-btn .btn-text .small {
                font-size: 0.65rem;
                font-weight: 400;
            }
            
            .acesso-restrito-btn .btn-text .big {
                font-size: 0.85rem;
                font-weight: 700;
            }

            /* --- BARRA DE NAVEGAÇÃO (Branca com ícones) --- */
            .nav-bar-wrapper {
                background-color: #ffffff; /* Fundo totalmente branco como na imagem */
                border-top: 1px solid #e0e0e0;
                border-bottom: 1px solid #e0e0e0;
                position: relative;
                z-index: 2;
            }

            .main-menu ul {
                margin: 0;
                padding: 0;
                list-style: none;
                display: flex;
                justify-content: center;
                gap: 0;
            }

            /* Divisórias entre os menus */
            .main-menu > ul > li {
                position: relative;
                border-right: 1px solid #e0e0e0;
            }
            .main-menu > ul > li:last-child { border-right: none; }
            .main-menu > ul > li:first-child { border-left: 1px solid #e0e0e0; }

            .main-menu a {
                display: flex;
                align-items: center;
                gap: 8px;
                text-decoration: none;
                color: #1c2833;
                font-weight: 700;
                font-size: 14px;
                text-transform: none; 
                padding: 16px 25px;
                position: relative;
                transition: color 0.2s ease;
                white-space: nowrap;
            }
            
            .main-menu a i {
                color: #666;
                font-size: 1.1rem;
            }

            .main-menu a:hover { color: #d9534f; }
            
            /* Cores das linhas de marcação igual a imagem */
            .main-menu > ul > li > a::after {
                content: ''; position: absolute; bottom: -1px; left: 0; width: 0%; height: 3px; transition: width 0.3s;
            }
            
            .main-menu > ul > li:nth-child(1) > a::after { background-color: #cc1111; }
            .main-menu > ul > li:nth-child(2) > a::after { background-color: #34495e; }
            .main-menu > ul > li:nth-child(3) > a::after { background-color: #2980b9; } 
            .main-menu > ul > li:nth-child(4) > a::after { background-color: #7f8c8d; }
            .main-menu > ul > li:nth-child(5) > a::after { background-color: #34495e; }

            .main-menu > ul > li:hover > a::after { width: 100%; }
            
            /* Deixando as bordas ativas para ficar igual o print */
            .main-menu > ul > li.active-red > a::after { width: 100%; background-color: #cc1111; }
            .main-menu > ul > li.active-blue > a::after { width: 100%; background-color: #2980b9; }

            /* --- SUBMENU (Cascata) --- */
            .main-menu ul ul {
                display: block; visibility: hidden; opacity: 0;
                position: absolute; top: 100%; left: 0; background-color: #fff;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1); min-width: 220px;
                flex-direction: column; padding: 10px 0; border-top: 3px solid #d9534f;
                transform: translateY(10px); transition: all 0.3s ease; z-index: 999;
            }
            .main-menu li:hover > ul { visibility: visible; opacity: 1; transform: translateY(0); }
            .main-menu ul ul li { margin: 0; width: 100%; position: relative; border: none; }
            .main-menu ul ul a { padding: 10px 20px; font-size: 0.9rem; text-transform: none; color: #666; border-bottom: 1px solid #f5f5f5; }
            .main-menu ul ul a:hover { background-color: #f9f9f9; color: #d9534f; padding-left: 25px; }
            .main-menu ul ul a::after { display: none; } 
            .main-menu ul ul ul { top: 0; left: 100%; margin-left: 0; border-top: none; border-left: 3px solid #d9534f; }
            .has-drop > a::after { content: '\f0d7'; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-left: 5px; font-size: 0.8em; background: none; height: auto; width: auto; position: static; }
            .main-menu ul ul .has-drop > a::after { content: '\f0da'; float: right; }

            /* --- HERO SLIDER (BANNER) --- */
            .banner-container {
                width: 100%;
                background-color: #231e2d;
                overflow: hidden;
                display: flex;
                padding-top: 0;
                box-sizing: border-box;
                z-index: 1;
                margin-bottom: 50px;
                min-height: 625px;
            }
            .hero-slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 625px;
                display: flex;
                align-items: center;
                opacity: 0;
                transition: opacity 1s ease-in-out;
                z-index: 1;
                background-size: cover;
                background-position: center;
            }
            .hero-slide.active { opacity: 1; z-index: 2; }
            .hero-overlay {
                position: absolute; top: 0; left: 0; width: 100%; height: 100%;
                background: linear-gradient(to right, rgb(18 18 18 / 77%) 20%, rgba(35, 30, 45, 0.6) 50%, transparent 80%);
                z-index: 1;
            }
            .banner-content {
                position: relative; z-index: 3; color: white; margin-left: 8%; padding: 20px; margin-top: 50px; /* Desce um pouco por causa do header novo */
            }
            .banner-content h1 { font-size: 2.5rem; font-weight: 300; color: #f0f0f0; line-height: 1.2; margin: 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
            .banner-content h1 strong { display: block; font-size: 3.5rem; font-weight: 900; color: #F9B529; }
            .banner-content p { font-size: 1rem; line-height: 1.6; color: #e0e0e0; }
            .divider { width: 70px; height: 4px; background-color: #F9B529; margin: 20px 0; border-radius: 2px; }
            .btn-saiba-mais {
                display: inline-block; background-color: #F9B529; color: #222;
                padding: 12px 30px; border-radius: 50px; text-decoration: none;
                font-weight: bold; margin-top: 20px; transition: background-color 0.3s ease, transform 0.2s ease;
            }
            .btn-saiba-mais:hover { background-color: #e0a424; transform: scale(1.05); }
            
            .hero-nav { position: absolute; bottom: 60px; right: 8%; z-index: 10; display: flex; gap: 20px; }
            .hero-btn {
                width: 60px; height: 60px; border-radius: 50%;
                background-color: rgba(0, 0, 0, 0.6); border: 2px solid rgba(255, 255, 255, 0.8);
                color: white; font-size: 1.4rem; cursor: pointer;
                display: flex; align-items: center; justify-content: center;
                transition: all 0.3s ease; backdrop-filter: blur(4px); box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            }
            .hero-btn:hover { background-color: #d9534f; border-color: #d9534f; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(217, 83, 79, 0.5); }

            .download{
                position: relative;
            }
            /* --- FAIXA DE ACESSOS (DOWNLOADS) SOBRE O BANNER --- */
            .downloads-strip-wrap {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 10px;
                z-index: 20;
                pointer-events: none;
            }
            .downloads-strip{
                pointer-events: auto;
                width: min(1240px, calc(100% - 40px));
                margin: 0 auto;
                background: #fff;
                border-radius: 12px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.18);
                overflow: hidden;
                display: grid;
                grid-template-columns: repeat(5, 1fr);
            }
            .dl-item{
                display:flex;
                align-items:center;
                gap:12px;
                padding: 14px 16px;
                text-decoration:none;
                color:#1c2833;
                position: relative;
                min-height: 78px;
            }
            .dl-item:not(:last-child){
                border-right: 1px solid #ececec;
            }
            .dl-ic{
                width: 44px;
                height: 44px;
                border-radius: 10px;
                background: #f5f6f8;
                display:flex;
                align-items:center;
                justify-content:center;
                flex-shrink:0;
                color:#3b3b3b;
                box-shadow: inset 0 0 0 1px #ededed;
            }
            .dl-ic i{ font-size: 1.35rem; }
            .dl-txt{ display:flex; flex-direction:column; gap:2px; min-width:0; }
            .dl-title{
                font-size: 0.92rem;
                font-weight: 800;
                line-height: 1.1;
                margin:0;
                color:#1c2833;
            }
            .dl-sub{
                font-size: 0.72rem;
                font-weight: 600;
                color:#7a7a7a;
                line-height: 1.15;
                margin:0;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .dl-arrow{
                margin-left:auto;
                color:#b7b7b7;
                font-size: 1.1rem;
                flex-shrink:0;
            }

            /* Último card com botão Acessar */
            .dl-item.is-cta .dl-ic{
                background: #eef7ff;
                color:#0b5ed7;
            }
            .dl-cta{
                margin-left:auto;
                display:inline-flex;
                align-items:center;
                gap:8px;
                background: linear-gradient(90deg, #d9534f, #cc1111);
                color:#fff;
                border-radius: 999px;
                padding: 10px 16px;
                font-weight: 800;
                font-size: 0.85rem;
                box-shadow: 0 8px 18px rgba(204,17,17,0.28);
                white-space: nowrap;
            }
            .dl-cta i{ font-size: 1.05rem; }

            /* Dá espaço para a faixa “vazar” sem sobrepor a seção seguinte */
            .quick-links-section{ padding-top: 30px; }

            /* Responsivo */
            @media (max-width: 980px){
                .downloads-strip{ grid-template-columns: 1fr 1fr; }
                .dl-item:not(:last-child){ border-right:none; border-bottom: 1px solid #ececec; }
                .dl-item:nth-child(2n){ border-left: 1px solid #ececec; }
                .dl-item:nth-last-child(-n+2){ border-bottom:none; }
                .dl-sub{ white-space: normal; }
            }
            @media (max-width: 520px){
                .downloads-strip{ grid-template-columns: 1fr; }
                .dl-item{ min-height: 74px; }
                .dl-item:nth-child(2n){ border-left:none; }
                .dl-item:not(:last-child){ border-bottom: 1px solid #ececec; }
            }

            /* --- ATALHOS RÁPIDOS --- */
            .quick-links-section { overflow: visible !important; position: relative; background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23ffffff' opacity='0.7' /%3E%3C/svg%3E"); }
            .links-container-light ul { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
            .links-container-light li { min-width: 100px; flex-shrink: 0; }
            .links-container-light a { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: #555; padding: 15px 5px; border-radius: 8px; transition: all 0.2s ease-in-out; height: 100%; box-sizing: border-box; border: 1px solid transparent; }
            .links-container-light a:hover { background-color: #ffffff; color: #d9534f; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); border-color: #eeeeee; }
            .links-container-light i { font-size: 2.5em; margin-bottom: 15px; color: #444; transition: color 0.2s ease; }
            .links-container-light a:hover i { color: #d9534f; }
            .links-container-light span { font-size: 0.85em; font-weight: bold; text-align: center; line-height: 1.3; }

            /* --- SUBMENU DOS ÍCONES --- */
            .links-container-light li.has-submenu { position: relative !important; overflow: visible !important; z-index: 100; }
            .links-container-light li.has-submenu::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 20px; background: transparent; }
            .submenu-links { display: none !important; opacity: 0; visibility: hidden; position: absolute; top: calc(100% + 15px); left: 50%; transform: translateX(-50%); background-color: #ffffff; min-width: 220px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-radius: 8px; border: 1px solid #eee; z-index: 9999; padding: 10px 0 !important; margin: 0 !important; list-style: none !important; flex-direction: column !important; }
            .submenu-links::before { content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid #ffffff; }
            .links-container-light li.has-submenu:hover .submenu-links { display: flex !important; visibility: visible; opacity: 1; animation: submenuSlideUp 0.3s ease forwards; }
            .submenu-links li { width: 100% !important; margin: 0 !important; padding: 0 !important; display: block !important; }
            .submenu-links a { display: block !important; width: 100%; padding: 12px 20px !important; font-size: 0.9rem !important; color: #555 !important; text-align: left !important; text-decoration: none; background: transparent; border: none; transition: all 0.2s ease; }
            .submenu-links a:hover { background-color: #fff0ef !important; color: #d9534f !important; padding-left: 25px !important; }
            .submenu-links a i { display: none !important; }
            @keyframes submenuSlideUp { from { opacity: 0; transform: translate(-50%, 10px); } to { opacity: 1; transform: translate(-50%, 0); } }

            /* --- NOTÍCIAS/CARDS GERAIS --- */
            .container-noticias { font-family: 'Inter', sans-serif; max-width: 1200px; margin: 0 auto; padding: 0 20px; padding-bottom:60px; }
            .grid-noticias-iba { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
            .card-news-horizontal { display: flex; align-items: flex-start; gap: 15px; text-decoration: none; color: inherit; background: transparent; }
            .card-news-img { width: 180px; height: 110px; border-radius: 8px; overflow: hidden; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
            .card-news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
            .card-news-horizontal:hover .card-news-img img { transform: scale(1.05); }
            .card-news-body { display: flex; flex-direction: column; gap: 6px; padding-top: 2px; }
            .card-news-date { font-size: 0.8rem; color: #888; font-weight: 500; display: flex; align-items: center; gap: 5px; }
            .card-news-tag { display: inline-block; background-color: #f0f0f0; color: #333; font-size: 0.7rem; padding: 3px 10px; border-radius: 20px; font-weight: 700; text-transform: uppercase; align-self: flex-start; margin-bottom: 2px; }
            .tag-verde { background-color: #e6fffa; color: #00664f; }
            .tag-laranja { background-color: #fff0e6; color: #c24900; }
            .tag-azul { background-color: #e6f0ff; color: #0052cc; }
            .card-news-titulo { font-size: 1.1rem; font-weight: 700; color: #333; line-height: 1.4; margin: 0; transition: color 0.2s; }
            .card-news-horizontal:hover .card-news-titulo { color: #d9534f; }

            /* --- TÍTULOS E SUBTÍTULOS --- */
            .events-section-header { text-align: center; padding: 18px 20px 18px !important; }
            .section-title { font-family: 'Arial Black', Gadget, sans-serif; font-size: 2.8em; color: #333; text-transform: uppercase; letter-spacing: 2px; position: relative; padding-bottom: 15px; display: inline-block; margin: 0; max-width: 100%; word-wrap: break-word; }
            .section-title::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 80px; height: 4px; background-color: #d9534f; border-radius: 2px; }
            .section-subtitle { font-family: 'Inter', sans-serif; font-size: 1.1rem; color: #555; margin-top: 15px; font-weight: 400; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.5; }
            .section-title-left { font-family: 'Arial Black', Gadget, sans-serif; font-size: 1.8em; color: #333; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; position: relative; padding-bottom: 10px; display: inline-block; }
            .section-title-left::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 4px; background-color: #d9534f; border-radius: 2px; }

            /* --- BACKGROUNDS --- */
            .secao-detalhe-blob { position: relative; overflow: hidden; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 900 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M400.3 568.4C345.5 528.2 277.6 476.3 246.2 423.8C214.8 371.3 219.8 318.1 247.4 269.9C274.9 221.7 325 178.5 379.7 139.7C434.4 100.9 493.7 66.5 556.7 67.8C619.7 69.1 686.4 106.1 721.5 157.8C756.7 209.6 759.9 276.1 738 331.1C716.1 390.2 669.1 437.8 617.9 476.1C566.7 514.4 511.3 543.5 456.4 559.1C440 565 420 570 400.3 568.4Z' fill='%23ccc' opacity='0.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center center; background-size: 100% 100%; }
            .secao-detalhe-linhas { position: relative; overflow: hidden; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23d9534f' stroke-width='1' opacity='0.15'%3E%3Cpath d='M 0 400 C 200 400 200 400 400 400 S 600 400 800 400' /%3E%3Cpath d='M 0 320 C 200 320 200 480 400 480 S 600 320 800 320' /%3E%3Cpath d='M 0 360 C 200 360 200 440 400 440 S 600 360 800 360' /%3E%3Cpath d='M 0 380 C 200 380 200 420 400 420 S 600 380 800 380' /%3E%3Cpath d='M 0 280 C 200 280 200 520 400 520 S 600 280 800 280' /%3E%3Cpath d='M 0 240 C 200 240 200 560 400 560 S 600 240 800 240' /%3E%3Cpath d='M 0 200 C 200 200 200 600 400 600 S 600 200 800 200' /%3E%3Cpath d='M 0 160 C 200 160 200 640 400 640 S 600 160 800 160' /%3E%3C/g%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: cover; padding-bottom: 60px; }

            /* --- EVENTOS (3 COLUNAS) --- */
            .grid-eventos-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 20px; }
            .card-evento-vertical { display: flex; flex-direction: column; background-color: #ffffff; border-radius: 10px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; }
            .card-evento-vertical:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.12); }
            .card-evento-img-wrapper { width: 100%; height: 150px; position: relative; overflow: hidden; }
            .card-evento-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
            .card-evento-vertical:hover .card-evento-img-wrapper img { transform: scale(1.1); }
            .card-icon-overlay { position: absolute; top: 10px; right: 10px; background-color: rgba(255, 255, 255, 0.9); width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #d9534f; font-size: 0.9rem; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
            .card-evento-body { padding: 15px 20px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
            .card-evento-info { display: flex; flex-direction: column; gap: 5px; }
            .card-evento-date { font-size: 0.8rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
            .card-evento-title { font-size: 1.05rem; font-weight: 700; color: #333; line-height: 1.4; margin: 5px 0 0 0; }
            .card-evento-link-text { font-size: 0.85rem; font-weight: 600; color: #d9534f; margin-top: 15px; display: inline-block; }

            /* --- AGENDA E PARCEIRO (ATUALIZADO) --- */
            .grid-mista-agenda-parceiro { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
            .col-parceiro, .col-agenda { display: flex; flex-direction: column; }
            .agenda-list-compact { display: flex; flex-direction: column; gap: 15px; height: 100%; justify-content: space-between; }
            .agenda-list-compact .agenda-item { padding: 15px 20px; background: #ffffff; border: 1px solid #eee; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.03); display: flex; align-items: center; gap: 15px; }
            .agenda-list-compact .agenda-item:hover { transform: translateX(5px); border-left: 4px solid #d9534f; }
            .mini-date { display: flex; flex-direction: column; align-items: center; justify-content: center; background-color: #f9f9f9; padding: 5px 10px; border-radius: 6px; border: 1px solid #eee; min-width: 50px; }
            .mini-date .d { font-size: 1.2rem; font-weight: 900; color: #333; line-height: 1; }
            .mini-date .m { font-size: 0.7rem; font-weight: 600; color: #888; text-transform: uppercase; }
            .agenda-info h4 { margin: 0 0 4px 0; font-size: 0.95rem; font-weight: 700; color: #333; }
            .agenda-info span { font-size: 0.8rem; color: #666; display: flex; align-items: center; gap: 5px; }
            .card-parceiro-vertical { display: flex; flex-direction: column; background-color: #fff; border-radius: 12px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.3s ease; height: 100%; }
            .card-parceiro-vertical:hover { transform: translateY(-5px); }
            .parceiro-img-wrapper { width: 100%; height: 220px; position: relative; flex-shrink: 0; }
            .parceiro-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
            .parceiro-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
            .parceiro-tag { display: inline-block; background-color: #e6f0ff; color: #0052cc; font-size: 0.8rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; align-self: flex-start; }
            .parceiro-title { font-size: 1.3rem; color: #333; font-weight: 700; line-height: 1.4; margin: 0; }
            .parceiro-desc { font-size: 0.95rem; color: #666; margin-top: 10px; line-height: 1.5; }

            /* --- CTA BANNERS 600px --- */
            .container-videos-cta { background-color: transparent; font-family: 'Inter', sans-serif; color: #333; text-align: center; }
            .container-videos-cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
            .banners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 40px; }
            .banner-large-card { display: block; position: relative; height: 400px; border-radius: 8px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
            .banner-overlay-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%); z-index: 1; }
            .banner-large-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; z-index: 0; }
            .banner-large-card:hover img { transform: scale(1.05); }
            .banner-text-content { position: absolute; bottom: 40px; left: 30px; right: 30px; z-index: 2; text-align: left; }
            .banner-text-content h3 { color: white; font-family: 'Roboto', sans-serif; font-size: 2.2rem; font-weight: 900; text-transform: uppercase; margin: 0; line-height: 1.1; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }

            /* --- SLIDER ASSOCIADAS --- */
            .associadas-section { padding: 60px 0; background-color: #ffffff; overflow: hidden; }
            .rows-container { display: flex; flex-direction: column; gap: 30px; }
            .associadas-track { display: flex; width: max-content; align-items: center; }
            .scroll-left { animation: scrollLeft 120s linear infinite; }
            .scroll-right { animation: scrollRight 120s linear infinite; }
            .associadas-track:hover { animation-play-state: paused; }
            .associadas-track .slide-logo { width: 200px; height: 120px; display: flex; align-items: center; justify-content: center; background-color: #fff; border: 1px solid #f0f0f0; border-radius: 8px; margin: 0 15px; padding: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.03); overflow: hidden; }
            .associadas-track .slide-logo img { width: 100%; height: 100%; object-fit: contain; object-position: center center; display: block; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s ease; }
            .associadas-track .slide-logo:hover { border-color: #d9534f; transform: translateY(-3px); }
            .associadas-track .slide-logo:hover img { filter: grayscale(0%); opacity: 1; }
            @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
            @keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

            /* --- WHATSAPP --- */
            .whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 100px; right: 25px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 3px #999; z-index: 999990; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s ease; }
            .whatsapp-float:hover { background-color: #128C7E; color: #fff; transform: scale(1.1); }

            /* --- PRIVACIDADE --- */
            .privacy-bar-clean { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #ffffff; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); padding: 25px 20px; display: flex; justify-content: center; align-items: center; gap: 30px; z-index: 999999; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1); box-sizing: border-box; }
            .privacy-bar-clean.show-bar { transform: translateY(0); }
            .privacy-content p { margin: 0; font-size: 0.95rem; color: #666666; line-height: 1.5; font-family: 'Roboto', sans-serif; max-width: 800px; }
            .privacy-content a { color: #444; font-weight: bold; text-decoration: underline; transition: color 0.2s; }
            .privacy-content a:hover { color: #000; }
            .privacy-btn-green { background-color: #d9534f; color: white; border: none; padding: 12px 35px; border-radius: 4px; font-size: 0.95rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all 0.2s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
            .privacy-btn-green:hover { background-color: #c9302c; transform: translateY(-1px); }

            /* --- RESPONSIVO --- */
            .mobile-menu-toggle { display: none; width: 40px; height: 40px; padding: 8px; background-color: #f1f1f1; border: none; border-radius: 4px; cursor: pointer; z-index: 1010; flex-direction: column; justify-content: space-around; }
            .mobile-menu-toggle .icon-bar { display: block; width: 100%; height: 3px; background-color: #333; border-radius: 2px; transition: all 0.3s ease-in-out; }

            @media (max-width: 1024px) {
                .mobile-menu-toggle { display: flex; position: absolute; top: 30px; right: 20px; }
                .header-bg-wrapper { width: 100%; background-image: none; background-color: #fff; border-bottom: 2px solid #cc1111; } /* Fallback para mobile */
                .actions-area { display: none; width: 100%; }
                .nav-bar-wrapper { display: none; }
                body.menu-aberto .nav-bar-wrapper { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #fff; z-index: 1005; padding-top: 80px; }
                body.menu-aberto .main-menu ul { flex-direction: column; align-items: center; }
                body.menu-aberto .main-menu li { margin: 15px 0; border: none; }
                body.menu-aberto .main-menu a { font-size: 1.2rem; }
                body.menu-aberto .mobile-menu-toggle .icon-bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
                body.menu-aberto .mobile-menu-toggle .icon-bar:nth-child(2) { opacity: 0; }
                body.menu-aberto .mobile-menu-toggle .icon-bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
                .grid-noticias-iba { grid-template-columns: 1fr; }
            }

            @media (max-width: 900px) {
                .brand-area { flex-direction: column; align-items: flex-start; gap: 10px; }
                .grid-noticias-iba { grid-template-columns: 1fr; }
                .banners-grid { grid-template-columns: 1fr; }
                .grid-mista-agenda-parceiro { grid-template-columns: 1fr; gap: 30px; }
                .grid-eventos-home { grid-template-columns: repeat(2, 1fr); }
                .banner-large-card { height: 450px; }
                .banner-text-content h3 { font-size: 1.8rem; }
            }
            
            @media (max-width: 600px) {
                .grid-eventos-home { grid-template-columns: 1fr; }
            }

            @media (max-width: 768px) {
                .section-title { font-size: 2rem; }
                .section-subtitle { font-size: 1rem; padding: 0 10px; }
                .banner-content h1 { font-size: 1.8rem; }
                .banner-content h1 strong { font-size: 2.2rem; }
                .banner-content p { font-size: 0.95rem; padding: 0 10px; }
                .banner-container { min-height: 600px; }
                .banner-content { margin: 0 auto; text-align: center; margin-top: 100px; }
                .hero-nav { right: 50%; transform: translateX(50%); bottom: 30px; gap: 15px; }
                .hero-btn { width: 45px; height: 45px; font-size: 1rem; }
                .associadas-track .slide-logo { width: 140px; height: 90px; padding: 10px; margin: 0 8px; }
                .footer-top-row { flex-direction: column; text-align: center; gap: 20px; padding-bottom: 20px; border-right: none; }
                .footer-logo-area { text-align: center; padding-right: 0; align-items: center; border-right: none; padding-bottom: 15px; border-bottom: 1px solid #444; }
                .logo-tagline { text-align: center; }
                .footer-contact-area { text-align: center; padding-left: 0; }
                .nav-column { flex: 1 1 100%; text-align: center; margin-bottom: 20px; }
                .footer-legal-bar { flex-direction: column; text-align: center; gap: 15px; }
                .footer-legal-links a { margin: 0 10px; }
                .footer-developer-info { order: 2; }
                .copyright { order: 1; }
                .footer-legal-links { order: 3; }
                .privacy-bar-clean { flex-direction: column; text-align: center; padding: 20px; gap: 20px; }
                .privacy-btn-green { width: 100%; padding: 15px; }
                .whatsapp-float { bottom: 20px; right: 20px; }
            }

            /* --- FOOTER --- */
            .site-footer { background-color: #2b2b2b; color: #cccccc; padding: 60px 0; font-size: 0.9rem; } 
            .footer-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
            .footer-top-row { display: flex; align-items: center; justify-content: center; padding-bottom: 20px; border-bottom: 1px solid #444; margin-bottom: 30px; width: 100%; }
            .footer-logo-area { flex: 1; text-align: center; padding-right: 25px; border-right: 1px solid #444; display: flex; flex-direction: column; align-items: center; justify-content: center; }
            .footer-logo-area img { height: auto; width: 150px; max-width: 100%; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; display: block; margin-bottom: 5px; }
            .logo-tagline { font-size: 0.85rem; color: #999999; margin-top: 0; max-width: 250px; line-height: 1.3; font-weight: 500; text-align: center; }
            .footer-contact-area { flex: 1; text-align: center; padding-left: 25px; }
            .footer-contact-area h3 { font-size: 1.1em; font-weight: bold; color: #ffffff; margin: 0 0 8px 0; text-transform: uppercase; }
            .footer-contact-area p { line-height: 1.5; margin: 3px 0; color: #cccccc; font-size: 0.9em; }
            .footer-bottom-nav { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
            .nav-column { flex: 1; min-width: 150px; }
            .nav-column h4 { font-size: 1em; font-weight: bold; color: #ffffff; margin-top: 0; margin-bottom: 10px; border-bottom: 2px solid #d9534f; display: inline-block; padding-bottom: 5px; }
            .nav-column ul { list-style: none; padding: 0; margin: 0; }
            .nav-column li { margin-bottom: 6px; }
            .nav-column a { color: #cccccc; text-decoration: none; font-size: 0.85em; transition: color 0.2s; }
            .nav-column a:hover { color: #ffffff; text-decoration: underline; }
            .footer-newsletter p { font-size: 0.85em; margin-bottom: 10px; }
            .newsletter-form input[type="email"], .newsletter-form button { width: 100%; box-sizing: border-box; border-radius: 4px; padding: 8px 15px; margin-bottom: 8px; display: block; height: 40px; }
            .newsletter-form input[type="email"] { border: 1px solid #555; background-color: #f1f1f1; color: #333; }
            .newsletter-form button { background-color: #d9534f; color: white; border: none; cursor: pointer; font-weight: bold; margin-bottom: 0; }
            .newsletter-form button:hover { background-color: #c9302c; }
            .footer-legal-bar { border-top: 1px solid #444; margin-top: 20px; padding-top: 15px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: #888; }
            .footer-legal-links a { color: #888; text-decoration: none; margin-left: 20px; transition: color 0.2s; }
            .footer-legal-links a:hover { color: #d9534f; text-decoration: underline; }
            .footer-developer-info { color: #888; text-align: center; }
            .footer-developer-info a { color: #d9534f; text-decoration: none; transition: color 0.2s; }
            .footer-developer-info a:hover { color: #ffffff; text-decoration: underline; }

/* --- GLOBAIS --- */
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            overflow-x: hidden;
            background-color: #fff;
        }
        * { box-sizing: border-box; } 

        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

        /* --- HEADER --- */
        header {
            background-color: #ffffff;
            width: 100%;
            z-index: 1000;
            position: relative;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .header-main {
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .brand-area {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        .brand-area .logo img {
            max-height: 80px;
            display: block;
        }
        .brand-area .slogan {
            font-family: 'Roboto', sans-serif;
            color: #777;
            font-size: 1.1rem;
            font-weight: 500;
            max-width: 300px;
            line-height: 1.2;
            padding-left: 25px;
            border-left: 1px solid #ddd;
        }

        .actions-area {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 15px;
        }

        .top-actions-row {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .social-icons-header {
            display: flex;
            gap: 12px;
        }
        .social-icons-header a {
            color: #333;
            font-size: 1.2rem;
            text-decoration: none;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px; 
            height: 30px;
            border: 1px solid #333;
            border-radius: 50%;
        }
        .social-icons-header a:hover {
            color: #d9534f;
            border-color: #d9534f;
        }

        .acesso-restrito-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #b03628;
            font-weight: 700;
            font-size: 0.95rem;
            margin-left: 15px;
        }
        .acesso-restrito-btn i {
            font-size: 1.2rem;
            border: 2px solid #b03628;
            padding: 5px;
            border-radius: 5px;
        }
        .acesso-restrito-btn span {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .search-bar-header {
            position: relative;
            width: 300px;
        }
        .search-bar-header input {
            width: 100%;
            background-color: #f0f0f0;
            border: none;
            padding: 10px 40px 10px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            color: #555;
            outline: none;
        }
        .search-bar-header button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #333;
            font-size: 1.1rem;
        }

        /* --- MENU --- */
        .nav-bar-wrapper {
            border-top: 1px solid #eee;
            background-color: #fff;
            position: relative;
            z-index: 900;
        }
        .main-menu ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        .main-menu > ul > li { position: relative; }
        .main-menu a {
            display: block;
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            padding: 15px 10px;
            position: relative;
            transition: color 0.2s ease;
            white-space: nowrap;
        }
        .main-menu a:hover { color: #d9534f; }
        .main-menu > ul > li > a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 0%; height: 3px;
            background-color: #d9534f;
            transition: width 0.3s;
        }
        .main-menu > ul > li:hover > a::after { width: 100%; }

        .main-menu ul ul {
            display: block;
            visibility: hidden;
            opacity: 0;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            min-width: 220px;
            flex-direction: column;
            padding: 10px 0;
            border-top: 3px solid #d9534f;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 999;
        }
        .main-menu li:hover > ul {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }
        .main-menu ul ul a {
            padding: 10px 20px;
            font-size: 0.9rem;
            text-transform: none;
            color: #666;
            border-bottom: 1px solid #f5f5f5;
        }
        .main-menu ul ul a:hover {
            background-color: #f9f9f9;
            color: #d9534f;
            padding-left: 25px;
        }

        /* --- CONTEÚDO / CARDS --- */
        .container-noticias { font-family: 'Inter', sans-serif; max-width: 1200px; margin: 0 auto; padding: 0 20px 60px; }
        .events-section-header { text-align: center; padding: 30px 20px 30px; }
        .section-title {
            font-family: 'Arial Black', sans-serif; font-size: 2.8em; color: #333;
            text-transform: uppercase; letter-spacing: 2px; position: relative;
            padding-bottom: 15px; display: inline-block; margin: 0;
        }
        .section-title::after {
            content: ''; position: absolute; left: 50%; transform: translateX(-50%);
            bottom: 0; width: 80px; height: 4px; background-color: #d9534f; border-radius: 2px;
        }

        .grid-eventos-home {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 20px;
        }

        .card-evento-vertical {
            display: flex;
            flex-direction: column;
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card-evento-vertical:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        }

        .card-evento-img-wrapper {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }
        .card-evento-img-wrapper img {
            width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
        }
        .card-evento-vertical:hover .card-evento-img-wrapper img { transform: scale(1.1); }

        .card-evento-body { padding: 15px 20px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
        .card-evento-title { font-size: 1.05rem; font-weight: 700; color: #333; line-height: 1.4; margin: 5px 0 0 0; }
        .card-evento-link-text { font-size: 0.85rem; font-weight: 600; color: #d9534f; margin-top: 15px; display: inline-block; }

        /* --- FOOTER --- */
        .site-footer { background-color: #2b2b2b; color: #cccccc; padding: 60px 0; font-size: 0.9rem; } 
        .footer-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
        .footer-top-row { display: flex; align-items: center; justify-content: center; padding-bottom: 20px; border-bottom: 1px solid #444; margin-bottom: 30px; width: 100%; }
        .footer-logo-area { flex: 1; text-align: center; padding-right: 25px; border-right: 1px solid #444; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        .footer-logo-area img { height: auto; width: 150px; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 5px; }
        .logo-tagline { font-size: 0.85rem; color: #999; line-height: 1.3; font-weight: 500; text-align: center; }
        
        .footer-contact-area { flex: 1; text-align: center; padding-left: 25px; }
        .footer-contact-area h3 { font-size: 1.1em; font-weight: bold; color: #fff; margin: 0 0 8px 0; text-transform: uppercase; }
        .footer-contact-area p { line-height: 1.5; margin: 3px 0; color: #ccc; }

        .footer-bottom-nav { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
        .nav-column { flex: 1; min-width: 150px; }
        .nav-column h4 { font-size: 1em; font-weight: bold; color: #fff; margin-bottom: 10px; border-bottom: 2px solid #d9534f; display: inline-block; padding-bottom: 5px; }
        .nav-column ul { list-style: none; padding: 0; margin: 0; }
        .nav-column li { margin-bottom: 6px; }
        .nav-column a { color: #ccc; text-decoration: none; font-size: 0.85em; transition: color 0.2s; }
        .nav-column a:hover { color: #fff; text-decoration: underline; }

        .newsletter-form input[type="email"] { width: 100%; border-radius: 4px; padding: 8px 15px; margin-bottom: 8px; border: 1px solid #555; background-color: #f1f1f1; }
        .newsletter-form button { width: 100%; background-color: #d9534f; color: white; border: none; padding: 10px; border-radius: 4px; font-weight: bold; cursor: pointer; }

        .footer-legal-bar { border-top: 1px solid #444; margin-top: 20px; padding-top: 15px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: #888; }
        
        /* WHATSAPP FLOAT */
        .whatsapp-float {
            position: fixed; width: 60px; height: 60px; bottom: 40px; right: 25px;
            background-color: #25d366; color: #FFF; border-radius: 50px;
            text-align: center; font-size: 30px; box-shadow: 2px 2px 3px #999;
            z-index: 1000; display: flex; align-items: center; justify-content: center;
            text-decoration: none; transition: all 0.3s ease;
        }

        /* RESPONSIVO */
        @media (max-width: 1024px) {
            .header-main { flex-direction: column; align-items: flex-start; }
            .grid-eventos-home { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .footer-top-row { flex-direction: column; gap: 20px; border-bottom: none; }
            .footer-logo-area { border-right: none; border-bottom: 1px solid #444; padding-bottom: 20px; }
            .grid-eventos-home { grid-template-columns: 1fr; }
        }


        /* --- ESTILIZAÇÃO DA SEÇÃO DE LOGIN --- */
.login-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background-color: #f8f9fa; /* Fundo leve para destacar o card branco */
}

/* O Card principal */
.login-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eeeeee;
}

.login-card h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #333333;
    margin: 0 0 20px;
    text-align: center;
    font-size: 1.75rem;
}

.login-intro {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.login-intro a {
    color: #d9534f; /* Vermelho institucional */
    text-decoration: none;
    font-weight: 700;
}

.login-intro a:hover {
    text-decoration: underline;
}

/* Formulário e Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #444444;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
}

/* Ícones dentro dos inputs */
.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaaaaa;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Espaço para o ícone à esquerda */
    border: 1.5px solid #e1e1e1;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Roboto', sans-serif;
}

/* Efeito de foco (Focus) */
.form-control:focus {
    border-color: #d9534f;
    box-shadow: 0 0 0 4px rgba(217, 83, 79, 0.1);
}

/* Botão Mostrar Senha */
.btn-show-password {
    background: none;
    border: none;
    color: #888888;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    margin-top: 5px;
    text-decoration: underline;
    transition: color 0.2s;
}

.btn-show-password:hover {
    color: #d9534f;
}

/* Checkbox "Lembrar-me" */
.options-row {
    margin: 20px 0 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555555;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Botão Acessar */
.btn-acessar {
    width: 100%;
    background-color: #d9534f; /* Vermelho institucional */
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-acessar:hover {
    background-color: #c9302c;
    transform: translateY(-1px);
}

/* Rodapé do Login */
.login-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
    text-align: center;
    font-size: 0.85rem;
    color: #777777;
    line-height: 1.5;
}

.login-footer a {
    color: #d9534f;
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Ajustes para Mobile */
@media (max-width: 576px) {
    .login-card {
        padding: 30px 20px;
        box-shadow: none; /* Simplifica em telas muito pequenas */
    }
    
    .login-card h2 {
        font-size: 1.5rem;
    }
}

/* --- GLOBAIS --- */
            body {
                font-family: 'Roboto', sans-serif;
                margin: 0;
                overflow-x: hidden;
                background-color: #fff;
            }
            * { box-sizing: border-box; } 

            .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

            /* --- HEADER (VAZADO E COM FORMA CURVADA) --- */
            header {
                position: absolute; /* Coloca o header sobre o banner */
                top: 0;
                left: 0;
                width: 100%;
                z-index: 1000;
                background: transparent !important;
                box-shadow: none;
            }

            /* O Pulo do Gato: Fundo branco com a curva e a linha vermelha */
            .header-bg-wrapper {
                position: absolute;
                top: 0;
                left: 0;
                width: 65%; /* Ocupa 65% da tela para fazer a curva suave */
                height: 105px;
                z-index: 0;
                pointer-events: none;
                /* SVG que desenha a onda branca e o risco vermelho idêntico a imagem */
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1000,0 C850,0 600,100 450,100 L0,100 Z' fill='%23ffffff'/%3E%3Cpath d='M0,100 L450,100 C600,100 850,0 1000,0' fill='none' stroke='%23cc1111' stroke-width='4'/%3E%3C/svg%3E");
                background-size: 100% 100%;
                background-repeat: no-repeat;
                filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.1));
            }

            /* Área Topo: Logo, Slogan, Sociais, Busca */
            .header-top {
                position: relative;
                z-index: 2; /* Fica em cima da curva branca */
                display: flex;
                justify-content: space-between;
                align-items: center;
                height: 105px;
                padding: 0 1%;
            }

            /* Lado Esquerdo: Logo e Slogan */
            .brand-area {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .brand-area .logo img {
                max-height: 60px; /* Tamanho ajustado da logo */
                display: block;
            }

            .brand-area .slogan {
                font-family: 'Roboto', sans-serif;
                color: #666;
                font-size: 0.95rem;
                font-weight: 500;
                border: none;
                padding-left: 5px;
                white-space: nowrap;
            }

            /* Lado Direito: Ações (Vazado no Banner) */
            .actions-area {
                display: flex;
                align-items: center;
                gap: 15px;
                flex-direction: row;
            }

            .social-icons-header {
                display: flex;
                gap: 8px;
            }
            
            .social-icons-header a {
                color: #555;
                background-color: #fff;
                font-size: 1rem;
                text-decoration: none;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 32px; 
                height: 32px;
                border-radius: 50%;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                transition: color 0.2s, transform 0.2s;
            }
            .social-icons-header a:hover {
                color: #d9534f;
                transform: scale(1.1);
            }

            .search-bar-header {
                background-color: #fff;
                border-radius: 25px;
                display: flex;
                align-items: center;
                padding: 3px 4px 3px 15px;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                width: 220px;
            }
            
            .search-bar-header input {
                border: none;
                background: transparent;
                padding: 5px 5px 5px 0;
                outline: none;
                width: 100%;
                font-size: 0.85rem;
                color: #555;
            }
            
            .search-bar-header button {
                background-color: #cc1111;
                color: white;
                border: none;
                border-radius: 50%;
                width: 28px;
                height: 28px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.8rem;
                flex-shrink: 0;
            }

            .acesso-restrito-btn {
                background: linear-gradient(90deg, #d9534f, #cc1111);
                color: white !important;
                padding: 6px 20px;
                border-radius: 30px;
                display: flex;
                align-items: center;
                gap: 10px;
                box-shadow: 0 4px 10px rgba(200, 0, 0, 0.3);
                text-decoration: none;
            }
            
            .acesso-restrito-btn i {
                font-size: 1.1rem;
            }
            
            .acesso-restrito-btn .btn-text {
                display: flex;
                flex-direction: column;
                text-align: left;
                line-height: 1.1;
            }
            
            .acesso-restrito-btn .btn-text .small {
                font-size: 0.65rem;
                font-weight: 400;
            }
            
            .acesso-restrito-btn .btn-text .big {
                font-size: 0.85rem;
                font-weight: 700;
            }

            /* --- BARRA DE NAVEGAÇÃO (Branca com ícones) --- */
            .nav-bar-wrapper {
                background-color: #ffffff; /* Fundo totalmente branco como na imagem */
                border-top: 1px solid #e0e0e0;
                border-bottom: 1px solid #e0e0e0;
                position: relative;
                z-index: 2;
            }

            .main-menu ul {
                margin: 0;
                padding: 0;
                list-style: none;
                display: flex;
                justify-content: center;
                gap: 0;
            }

            /* Divisórias entre os menus */
            .main-menu > ul > li {
                position: relative;
                border-right: 1px solid #e0e0e0;
            }
            .main-menu > ul > li:last-child { border-right: none; }
            .main-menu > ul > li:first-child { border-left: 1px solid #e0e0e0; }

            .main-menu a {
                display: flex;
                align-items: center;
                gap: 8px;
                text-decoration: none;
                color: #1c2833;
                font-weight: 700;
                font-size: 14px;
                text-transform: none; 
                padding: 16px 25px;
                position: relative;
                transition: color 0.2s ease;
                white-space: nowrap;
            }
            
            .main-menu a i {
                color: #666;
                font-size: 1.1rem;
            }

            .main-menu a:hover { color: #d9534f; }
            
            /* Cores das linhas de marcação igual a imagem */
            .main-menu > ul > li > a::after {
                content: ''; position: absolute; bottom: -1px; left: 0; width: 0%; height: 3px; transition: width 0.3s;
            }
            
            .main-menu > ul > li:nth-child(1) > a::after { background-color: #cc1111; }
            .main-menu > ul > li:nth-child(2) > a::after { background-color: #34495e; }
            .main-menu > ul > li:nth-child(3) > a::after { background-color: #2980b9; } 
            .main-menu > ul > li:nth-child(4) > a::after { background-color: #7f8c8d; }
            .main-menu > ul > li:nth-child(5) > a::after { background-color: #34495e; }

            .main-menu > ul > li:hover > a::after { width: 100%; }
            
            /* Deixando as bordas ativas para ficar igual o print */
            .main-menu > ul > li.active-red > a::after { width: 100%; background-color: #cc1111; }
            .main-menu > ul > li.active-blue > a::after { width: 100%; background-color: #2980b9; }

            /* --- SUBMENU (Cascata) --- */
            .main-menu ul ul {
                display: block; visibility: hidden; opacity: 0;
                position: absolute; top: 100%; left: 0; background-color: #fff;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1); min-width: 220px;
                flex-direction: column; padding: 10px 0; border-top: 3px solid #d9534f;
                transform: translateY(10px); transition: all 0.3s ease; z-index: 999;
            }
            .main-menu li:hover > ul { visibility: visible; opacity: 1; transform: translateY(0); }
            .main-menu ul ul li { margin: 0; width: 100%; position: relative; border: none; }
            .main-menu ul ul a { padding: 10px 20px; font-size: 0.9rem; text-transform: none; color: #666; border-bottom: 1px solid #f5f5f5; }
            .main-menu ul ul a:hover { background-color: #f9f9f9; color: #d9534f; padding-left: 25px; }
            .main-menu ul ul a::after { display: none; } 
            .main-menu ul ul ul { top: 0; left: 100%; margin-left: 0; border-top: none; border-left: 3px solid #d9534f; }
            .has-drop > a::after { content: '\f0d7'; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-left: 5px; font-size: 0.8em; background: none; height: auto; width: auto; position: static; }
            .main-menu ul ul .has-drop > a::after { content: '\f0da'; float: right; }

            /* --- HERO SLIDER (BANNER) --- */
            .banner-container {
                width: 100%;
                background-color: #231e2d;
                overflow: hidden;
                display: flex;
                padding-top: 0;
                box-sizing: border-box;
                z-index: 1;
                margin-bottom: 50px;
                min-height: 625px;
            }
            .hero-slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 625px;
                display: flex;
                align-items: center;
                opacity: 0;
                transition: opacity 1s ease-in-out;
                z-index: 1;
                background-size: cover;
                background-position: center;
            }
            .hero-slide.active { opacity: 1; z-index: 2; }
            .hero-overlay {
                position: absolute; top: 0; left: 0; width: 100%; height: 100%;
                background: linear-gradient(to right, rgb(18 18 18 / 77%) 20%, rgba(35, 30, 45, 0.6) 50%, transparent 80%);
                z-index: 1;
            }
            .banner-content {
                position: relative; z-index: 3; color: white; margin-left: 8%; padding: 20px; margin-top: 50px; /* Desce um pouco por causa do header novo */
            }
            .banner-content h1 { font-size: 2.5rem; font-weight: 300; color: #f0f0f0; line-height: 1.2; margin: 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
            .banner-content h1 strong { display: block; font-size: 3.5rem; font-weight: 900; color: #F9B529; }
            .banner-content p { font-size: 1rem; line-height: 1.6; color: #e0e0e0; }
            .divider { width: 70px; height: 4px; background-color: #F9B529; margin: 20px 0; border-radius: 2px; }
            .btn-saiba-mais {
                display: inline-block; background-color: #F9B529; color: #222;
                padding: 12px 30px; border-radius: 50px; text-decoration: none;
                font-weight: bold; margin-top: 20px; transition: background-color 0.3s ease, transform 0.2s ease;
            }
            .btn-saiba-mais:hover { background-color: #e0a424; transform: scale(1.05); }
            
            .hero-nav { position: absolute; bottom: 60px; right: 8%; z-index: 10; display: flex; gap: 20px; }
            .hero-btn {
                width: 60px; height: 60px; border-radius: 50%;
                background-color: rgba(0, 0, 0, 0.6); border: 2px solid rgba(255, 255, 255, 0.8);
                color: white; font-size: 1.4rem; cursor: pointer;
                display: flex; align-items: center; justify-content: center;
                transition: all 0.3s ease; backdrop-filter: blur(4px); box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            }
            .hero-btn:hover { background-color: #d9534f; border-color: #d9534f; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(217, 83, 79, 0.5); }

            .download{
                position: relative;
            }
            /* --- FAIXA DE ACESSOS (DOWNLOADS) SOBRE O BANNER --- */
            .downloads-strip-wrap {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 10px;
                z-index: 20;
                pointer-events: none;
            }
            .downloads-strip{
                pointer-events: auto;
                width: min(1240px, calc(100% - 40px));
                margin: 0 auto;
                background: #fff;
                border-radius: 12px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.18);
                overflow: hidden;
                display: grid;
                grid-template-columns: repeat(5, 1fr);
            }
            .dl-item{
                display:flex;
                align-items:center;
                gap:12px;
                padding: 14px 16px;
                text-decoration:none;
                color:#1c2833;
                position: relative;
                min-height: 78px;
            }
            .dl-item:not(:last-child){
                border-right: 1px solid #ececec;
            }
            .dl-ic{
                width: 44px;
                height: 44px;
                border-radius: 10px;
                background: #f5f6f8;
                display:flex;
                align-items:center;
                justify-content:center;
                flex-shrink:0;
                color:#3b3b3b;
                box-shadow: inset 0 0 0 1px #ededed;
            }
            .dl-ic i{ font-size: 1.35rem; }
            .dl-txt{ display:flex; flex-direction:column; gap:2px; min-width:0; }
            .dl-title{
                font-size: 0.92rem;
                font-weight: 800;
                line-height: 1.1;
                margin:0;
                color:#1c2833;
            }
            .dl-sub{
                font-size: 0.72rem;
                font-weight: 600;
                color:#7a7a7a;
                line-height: 1.15;
                margin:0;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .dl-arrow{
                margin-left:auto;
                color:#b7b7b7;
                font-size: 1.1rem;
                flex-shrink:0;
            }

            /* Último card com botão Acessar */
            .dl-item.is-cta .dl-ic{
                background: #eef7ff;
                color:#0b5ed7;
            }
            .dl-cta{
                margin-left:auto;
                display:inline-flex;
                align-items:center;
                gap:8px;
                background: linear-gradient(90deg, #d9534f, #cc1111);
                color:#fff;
                border-radius: 999px;
                padding: 10px 16px;
                font-weight: 800;
                font-size: 0.85rem;
                box-shadow: 0 8px 18px rgba(204,17,17,0.28);
                white-space: nowrap;
            }
            .dl-cta i{ font-size: 1.05rem; }

            /* Dá espaço para a faixa “vazar” sem sobrepor a seção seguinte */
            .quick-links-section{ padding-top: 30px; }

            /* Responsivo */
            @media (max-width: 980px){
                .downloads-strip{ grid-template-columns: 1fr 1fr; }
                .dl-item:not(:last-child){ border-right:none; border-bottom: 1px solid #ececec; }
                .dl-item:nth-child(2n){ border-left: 1px solid #ececec; }
                .dl-item:nth-last-child(-n+2){ border-bottom:none; }
                .dl-sub{ white-space: normal; }
            }
            @media (max-width: 520px){
                .downloads-strip{ grid-template-columns: 1fr; }
                .dl-item{ min-height: 74px; }
                .dl-item:nth-child(2n){ border-left:none; }
                .dl-item:not(:last-child){ border-bottom: 1px solid #ececec; }
            }

            /* --- ATALHOS RÁPIDOS --- */
            .quick-links-section { overflow: visible !important; position: relative; background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1.5' fill='%23ffffff' opacity='0.7' /%3E%3C/svg%3E"); }
            .links-container-light ul { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
            .links-container-light li { min-width: 100px; flex-shrink: 0; }
            .links-container-light a { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: #555; padding: 15px 5px; border-radius: 8px; transition: all 0.2s ease-in-out; height: 100%; box-sizing: border-box; border: 1px solid transparent; }
            .links-container-light a:hover { background-color: #ffffff; color: #d9534f; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); border-color: #eeeeee; }
            .links-container-light i { font-size: 2.5em; margin-bottom: 15px; color: #444; transition: color 0.2s ease; }
            .links-container-light a:hover i { color: #d9534f; }
            .links-container-light span { font-size: 0.85em; font-weight: bold; text-align: center; line-height: 1.3; }

            /* --- SUBMENU DOS ÍCONES --- */
            .links-container-light li.has-submenu { position: relative !important; overflow: visible !important; z-index: 100; }
            .links-container-light li.has-submenu::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 20px; background: transparent; }
            .submenu-links { display: none !important; opacity: 0; visibility: hidden; position: absolute; top: calc(100% + 15px); left: 50%; transform: translateX(-50%); background-color: #ffffff; min-width: 220px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-radius: 8px; border: 1px solid #eee; z-index: 9999; padding: 10px 0 !important; margin: 0 !important; list-style: none !important; flex-direction: column !important; }
            .submenu-links::before { content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid #ffffff; }
            .links-container-light li.has-submenu:hover .submenu-links { display: flex !important; visibility: visible; opacity: 1; animation: submenuSlideUp 0.3s ease forwards; }
            .submenu-links li { width: 100% !important; margin: 0 !important; padding: 0 !important; display: block !important; }
            .submenu-links a { display: block !important; width: 100%; padding: 12px 20px !important; font-size: 0.9rem !important; color: #555 !important; text-align: left !important; text-decoration: none; background: transparent; border: none; transition: all 0.2s ease; }
            .submenu-links a:hover { background-color: #fff0ef !important; color: #d9534f !important; padding-left: 25px !important; }
            .submenu-links a i { display: none !important; }
            @keyframes submenuSlideUp { from { opacity: 0; transform: translate(-50%, 10px); } to { opacity: 1; transform: translate(-50%, 0); } }

            /* --- NOTÍCIAS/CARDS GERAIS --- */
            .container-noticias { font-family: 'Inter', sans-serif; max-width: 1200px; margin: 0 auto; padding: 0 20px; padding-bottom:60px; }
            .grid-noticias-iba { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
            .card-news-horizontal { display: flex; align-items: flex-start; gap: 15px; text-decoration: none; color: inherit; background: transparent; }
            .card-news-img { width: 180px; height: 110px; border-radius: 8px; overflow: hidden; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
            .card-news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
            .card-news-horizontal:hover .card-news-img img { transform: scale(1.05); }
            .card-news-body { display: flex; flex-direction: column; gap: 6px; padding-top: 2px; }
            .card-news-date { font-size: 0.8rem; color: #888; font-weight: 500; display: flex; align-items: center; gap: 5px; }
            .card-news-tag { display: inline-block; background-color: #f0f0f0; color: #333; font-size: 0.7rem; padding: 3px 10px; border-radius: 20px; font-weight: 700; text-transform: uppercase; align-self: flex-start; margin-bottom: 2px; }
            .tag-verde { background-color: #e6fffa; color: #00664f; }
            .tag-laranja { background-color: #fff0e6; color: #c24900; }
            .tag-azul { background-color: #e6f0ff; color: #0052cc; }
            .card-news-titulo { font-size: 1.1rem; font-weight: 700; color: #333; line-height: 1.4; margin: 0; transition: color 0.2s; }
            .card-news-horizontal:hover .card-news-titulo { color: #d9534f; }

            /* --- TÍTULOS E SUBTÍTULOS --- */
            .events-section-header { text-align: center; padding: 18px 20px 18px !important; }
            .section-title { font-family: 'Arial Black', Gadget, sans-serif; font-size: 2.8em; color: #333; text-transform: uppercase; letter-spacing: 2px; position: relative; padding-bottom: 15px; display: inline-block; margin: 0; max-width: 100%; word-wrap: break-word; }
            .section-title::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 80px; height: 4px; background-color: #d9534f; border-radius: 2px; }
            .section-subtitle { font-family: 'Inter', sans-serif; font-size: 1.1rem; color: #555; margin-top: 15px; font-weight: 400; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.5; }
            .section-title-left { font-family: 'Arial Black', Gadget, sans-serif; font-size: 1.8em; color: #333; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; position: relative; padding-bottom: 10px; display: inline-block; }
            .section-title-left::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 4px; background-color: #d9534f; border-radius: 2px; }

            /* --- BACKGROUNDS --- */
            .secao-detalhe-blob { position: relative; overflow: hidden; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 900 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M400.3 568.4C345.5 528.2 277.6 476.3 246.2 423.8C214.8 371.3 219.8 318.1 247.4 269.9C274.9 221.7 325 178.5 379.7 139.7C434.4 100.9 493.7 66.5 556.7 67.8C619.7 69.1 686.4 106.1 721.5 157.8C756.7 209.6 759.9 276.1 738 331.1C716.1 390.2 669.1 437.8 617.9 476.1C566.7 514.4 511.3 543.5 456.4 559.1C440 565 420 570 400.3 568.4Z' fill='%23ccc' opacity='0.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center center; background-size: 100% 100%; }
            .secao-detalhe-linhas { position: relative; overflow: hidden; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23d9534f' stroke-width='1' opacity='0.15'%3E%3Cpath d='M 0 400 C 200 400 200 400 400 400 S 600 400 800 400' /%3E%3Cpath d='M 0 320 C 200 320 200 480 400 480 S 600 320 800 320' /%3E%3Cpath d='M 0 360 C 200 360 200 440 400 440 S 600 360 800 360' /%3E%3Cpath d='M 0 380 C 200 380 200 420 400 420 S 600 380 800 380' /%3E%3Cpath d='M 0 280 C 200 280 200 520 400 520 S 600 280 800 280' /%3E%3Cpath d='M 0 240 C 200 240 200 560 400 560 S 600 240 800 240' /%3E%3Cpath d='M 0 200 C 200 200 200 600 400 600 S 600 200 800 200' /%3E%3Cpath d='M 0 160 C 200 160 200 640 400 640 S 600 160 800 160' /%3E%3C/g%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: cover; padding-bottom: 60px; }

            /* --- EVENTOS (3 COLUNAS) --- */
            .grid-eventos-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 20px; }
            .card-evento-vertical { display: flex; flex-direction: column; background-color: #ffffff; border-radius: 10px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; }
            .card-evento-vertical:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.12); }
            .card-evento-img-wrapper { width: 100%; height: 150px; position: relative; overflow: hidden; }
            .card-evento-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
            .card-evento-vertical:hover .card-evento-img-wrapper img { transform: scale(1.1); }
            .card-icon-overlay { position: absolute; top: 10px; right: 10px; background-color: rgba(255, 255, 255, 0.9); width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #d9534f; font-size: 0.9rem; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
            .card-evento-body { padding: 15px 20px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
            .card-evento-info { display: flex; flex-direction: column; gap: 5px; }
            .card-evento-date { font-size: 0.8rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
            .card-evento-title { font-size: 1.05rem; font-weight: 700; color: #333; line-height: 1.4; margin: 5px 0 0 0; }
            .card-evento-link-text { font-size: 0.85rem; font-weight: 600; color: #d9534f; margin-top: 15px; display: inline-block; }

            /* --- AGENDA E PARCEIRO (ATUALIZADO) --- */
            .grid-mista-agenda-parceiro { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
            .col-parceiro, .col-agenda { display: flex; flex-direction: column; }
            .agenda-list-compact { display: flex; flex-direction: column; gap: 15px; height: 100%; justify-content: space-between; }
            .agenda-list-compact .agenda-item { padding: 15px 20px; background: #ffffff; border: 1px solid #eee; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.03); display: flex; align-items: center; gap: 15px; }
            .agenda-list-compact .agenda-item:hover { transform: translateX(5px); border-left: 4px solid #d9534f; }
            .mini-date { display: flex; flex-direction: column; align-items: center; justify-content: center; background-color: #f9f9f9; padding: 5px 10px; border-radius: 6px; border: 1px solid #eee; min-width: 50px; }
            .mini-date .d { font-size: 1.2rem; font-weight: 900; color: #333; line-height: 1; }
            .mini-date .m { font-size: 0.7rem; font-weight: 600; color: #888; text-transform: uppercase; }
            .agenda-info h4 { margin: 0 0 4px 0; font-size: 0.95rem; font-weight: 700; color: #333; }
            .agenda-info span { font-size: 0.8rem; color: #666; display: flex; align-items: center; gap: 5px; }
            .card-parceiro-vertical { display: flex; flex-direction: column; background-color: #fff; border-radius: 12px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.3s ease; height: 100%; }
            .card-parceiro-vertical:hover { transform: translateY(-5px); }
            .parceiro-img-wrapper { width: 100%; height: 220px; position: relative; flex-shrink: 0; }
            .parceiro-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
            .parceiro-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
            .parceiro-tag { display: inline-block; background-color: #e6f0ff; color: #0052cc; font-size: 0.8rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; align-self: flex-start; }
            .parceiro-title { font-size: 1.3rem; color: #333; font-weight: 700; line-height: 1.4; margin: 0; }
            .parceiro-desc { font-size: 0.95rem; color: #666; margin-top: 10px; line-height: 1.5; }

            /* --- CTA BANNERS 600px --- */
            .container-videos-cta { background-color: transparent; font-family: 'Inter', sans-serif; color: #333; text-align: center; }
            .container-videos-cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
            .banners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 40px; }
            .banner-large-card { display: block; position: relative; height: 400px; border-radius: 8px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
            .banner-overlay-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%); z-index: 1; }
            .banner-large-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; z-index: 0; }
            .banner-large-card:hover img { transform: scale(1.05); }
            .banner-text-content { position: absolute; bottom: 40px; left: 30px; right: 30px; z-index: 2; text-align: left; }
            .banner-text-content h3 { color: white; font-family: 'Roboto', sans-serif; font-size: 2.2rem; font-weight: 900; text-transform: uppercase; margin: 0; line-height: 1.1; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }

            /* --- SLIDER ASSOCIADAS --- */
            .associadas-section { padding: 60px 0; background-color: #ffffff; overflow: hidden; }
            .rows-container { display: flex; flex-direction: column; gap: 30px; }
            .associadas-track { display: flex; width: max-content; align-items: center; }
            .scroll-left { animation: scrollLeft 120s linear infinite; }
            .scroll-right { animation: scrollRight 120s linear infinite; }
            .associadas-track:hover { animation-play-state: paused; }
            .associadas-track .slide-logo { width: 200px; height: 120px; display: flex; align-items: center; justify-content: center; background-color: #fff; border: 1px solid #f0f0f0; border-radius: 8px; margin: 0 15px; padding: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.03); overflow: hidden; }
            .associadas-track .slide-logo img { width: 100%; height: 100%; object-fit: contain; object-position: center center; display: block; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s ease; }
            .associadas-track .slide-logo:hover { border-color: #d9534f; transform: translateY(-3px); }
            .associadas-track .slide-logo:hover img { filter: grayscale(0%); opacity: 1; }
            @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
            @keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

            /* --- WHATSAPP --- */
            .whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 100px; right: 25px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 3px #999; z-index: 999990; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s ease; }
            .whatsapp-float:hover { background-color: #128C7E; color: #fff; transform: scale(1.1); }

            /* --- PRIVACIDADE --- */
            .privacy-bar-clean { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #ffffff; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); padding: 25px 20px; display: flex; justify-content: center; align-items: center; gap: 30px; z-index: 999999; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1); box-sizing: border-box; }
            .privacy-bar-clean.show-bar { transform: translateY(0); }
            .privacy-content p { margin: 0; font-size: 0.95rem; color: #666666; line-height: 1.5; font-family: 'Roboto', sans-serif; max-width: 800px; }
            .privacy-content a { color: #444; font-weight: bold; text-decoration: underline; transition: color 0.2s; }
            .privacy-content a:hover { color: #000; }
            .privacy-btn-green { background-color: #d9534f; color: white; border: none; padding: 12px 35px; border-radius: 4px; font-size: 0.95rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all 0.2s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
            .privacy-btn-green:hover { background-color: #c9302c; transform: translateY(-1px); }

            /* --- RESPONSIVO --- */
            .mobile-menu-toggle { display: none; width: 40px; height: 40px; padding: 8px; background-color: #f1f1f1; border: none; border-radius: 4px; cursor: pointer; z-index: 1010; flex-direction: column; justify-content: space-around; }
            .mobile-menu-toggle .icon-bar { display: block; width: 100%; height: 3px; background-color: #333; border-radius: 2px; transition: all 0.3s ease-in-out; }

            @media (max-width: 1024px) {
                .mobile-menu-toggle { display: flex; position: absolute; top: 30px; right: 20px; }
                .header-bg-wrapper { width: 100%; background-image: none; background-color: #fff; border-bottom: 2px solid #cc1111; } /* Fallback para mobile */
                .actions-area { display: none; width: 100%; }
                .nav-bar-wrapper { display: none; }
                body.menu-aberto .nav-bar-wrapper { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #fff; z-index: 1005; padding-top: 80px; }
                body.menu-aberto .main-menu ul { flex-direction: column; align-items: center; }
                body.menu-aberto .main-menu li { margin: 15px 0; border: none; }
                body.menu-aberto .main-menu a { font-size: 1.2rem; }
                body.menu-aberto .mobile-menu-toggle .icon-bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
                body.menu-aberto .mobile-menu-toggle .icon-bar:nth-child(2) { opacity: 0; }
                body.menu-aberto .mobile-menu-toggle .icon-bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
                .grid-noticias-iba { grid-template-columns: 1fr; }
            }

            @media (max-width: 900px) {
                .brand-area { flex-direction: column; align-items: flex-start; gap: 10px; }
                .grid-noticias-iba { grid-template-columns: 1fr; }
                .banners-grid { grid-template-columns: 1fr; }
                .grid-mista-agenda-parceiro { grid-template-columns: 1fr; gap: 30px; }
                .grid-eventos-home { grid-template-columns: repeat(2, 1fr); }
                .banner-large-card { height: 450px; }
                .banner-text-content h3 { font-size: 1.8rem; }
            }
            
            @media (max-width: 600px) {
                .grid-eventos-home { grid-template-columns: 1fr; }
            }

            @media (max-width: 768px) {
                .section-title { font-size: 2rem; }
                .section-subtitle { font-size: 1rem; padding: 0 10px; }
                .banner-content h1 { font-size: 1.8rem; }
                .banner-content h1 strong { font-size: 2.2rem; }
                .banner-content p { font-size: 0.95rem; padding: 0 10px; }
                .banner-container { min-height: 600px; }
                .banner-content { margin: 0 auto; text-align: center; margin-top: 100px; }
                .hero-nav { right: 50%; transform: translateX(50%); bottom: 30px; gap: 15px; }
                .hero-btn { width: 45px; height: 45px; font-size: 1rem; }
                .associadas-track .slide-logo { width: 140px; height: 90px; padding: 10px; margin: 0 8px; }
                .footer-top-row { flex-direction: column; text-align: center; gap: 20px; padding-bottom: 20px; border-right: none; }
                .footer-logo-area { text-align: center; padding-right: 0; align-items: center; border-right: none; padding-bottom: 15px; border-bottom: 1px solid #444; }
                .logo-tagline { text-align: center; }
                .footer-contact-area { text-align: center; padding-left: 0; }
                .nav-column { flex: 1 1 100%; text-align: center; margin-bottom: 20px; }
                .footer-legal-bar { flex-direction: column; text-align: center; gap: 15px; }
                .footer-legal-links a { margin: 0 10px; }
                .footer-developer-info { order: 2; }
                .copyright { order: 1; }
                .footer-legal-links { order: 3; }
                .privacy-bar-clean { flex-direction: column; text-align: center; padding: 20px; gap: 20px; }
                .privacy-btn-green { width: 100%; padding: 15px; }
                .whatsapp-float { bottom: 20px; right: 20px; }
            }

            /* --- FOOTER --- */
            .site-footer { background-color: #2b2b2b; color: #cccccc; padding: 60px 0; font-size: 0.9rem; } 
            .footer-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
            .footer-top-row { display: flex; align-items: center; justify-content: center; padding-bottom: 20px; border-bottom: 1px solid #444; margin-bottom: 30px; width: 100%; }
            .footer-logo-area { flex: 1; text-align: center; padding-right: 25px; border-right: 1px solid #444; display: flex; flex-direction: column; align-items: center; justify-content: center; }
            .footer-logo-area img { height: auto; width: 150px; max-width: 100%; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; display: block; margin-bottom: 5px; }
            .logo-tagline { font-size: 0.85rem; color: #999999; margin-top: 0; max-width: 250px; line-height: 1.3; font-weight: 500; text-align: center; }
            .footer-contact-area { flex: 1; text-align: center; padding-left: 25px; }
            .footer-contact-area h3 { font-size: 1.1em; font-weight: bold; color: #ffffff; margin: 0 0 8px 0; text-transform: uppercase; }
            .footer-contact-area p { line-height: 1.5; margin: 3px 0; color: #cccccc; font-size: 0.9em; }
            .footer-bottom-nav { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
            .nav-column { flex: 1; min-width: 150px; }
            .nav-column h4 { font-size: 1em; font-weight: bold; color: #ffffff; margin-top: 0; margin-bottom: 10px; border-bottom: 2px solid #d9534f; display: inline-block; padding-bottom: 5px; }
            .nav-column ul { list-style: none; padding: 0; margin: 0; }
            .nav-column li { margin-bottom: 6px; }
            .nav-column a { color: #cccccc; text-decoration: none; font-size: 0.85em; transition: color 0.2s; }
            .nav-column a:hover { color: #ffffff; text-decoration: underline; }
            .footer-newsletter p { font-size: 0.85em; margin-bottom: 10px; }
            .newsletter-form input[type="email"], .newsletter-form button { width: 100%; box-sizing: border-box; border-radius: 4px; padding: 8px 15px; margin-bottom: 8px; display: block; height: 40px; }
            .newsletter-form input[type="email"] { border: 1px solid #555; background-color: #f1f1f1; color: #333; }
            .newsletter-form button { background-color: #d9534f; color: white; border: none; cursor: pointer; font-weight: bold; margin-bottom: 0; }
            .newsletter-form button:hover { background-color: #c9302c; }
            .footer-legal-bar { border-top: 1px solid #444; margin-top: 20px; padding-top: 15px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: #888; }
            .footer-legal-links a { color: #888; text-decoration: none; margin-left: 20px; transition: color 0.2s; }
            .footer-legal-links a:hover { color: #d9534f; text-decoration: underline; }
            .footer-developer-info { color: #888; text-align: center; }
            .footer-developer-info a { color: #d9534f; text-decoration: none; transition: color 0.2s; }
            .footer-developer-info a:hover { color: #ffffff; text-decoration: underline; }
            /* --- PUBLICAÇÕES --- */
            .publicacoes-section {
                padding: 30px 0 70px;
            }

            .publicacoes-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 22px;
                align-items: start;
            }

            .pub-card {
                display: flex;
                flex-direction: column;
                gap: 16px;
            }

            .pub-cover {
                background: #ffffff;
                border-radius: 14px;
                overflow: hidden;
                box-shadow: 0 6px 18px rgba(0,0,0,0.08);
                transition: transform 0.25s ease, box-shadow 0.25s ease;
            }

            .pub-cover:hover {
                transform: translateY(-4px);
                box-shadow: 0 12px 28px rgba(0,0,0,0.14);
            }

            .pub-cover img {
                width: 100%;
                aspect-ratio: 435 / 610;
                object-fit: cover;
                display: block;
                background: #eaeaea;
            }

            .pub-title-box {
                background: #333333;
                min-height: 96px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 18px 16px;
                text-align: center;
            }

            .pub-title-box h3 {
                margin: 0;
                color: #ffffff;
                font-size: 1rem;
                line-height: 1.35;
                font-weight: 700;
                font-family: 'Inter', sans-serif;
            }

            .pub-actions {
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
            }

            .pub-btn {
                flex: 1;
                min-width: 135px;
                height: 48px;
                border: 2px solid #d9534f;
                border-radius: 999px;
                background: #f9f9f9;
                color: #1f2b24;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                font-weight: 700;
                font-size: 1rem;
                transition: all 0.25s ease;
            }

            .pub-btn i {
                font-size: 1.1rem;
                color: #d9534f;
            }

            .pub-btn:hover {
              background: #d9534f;
              color: #ffffff;
              border-color: #d9534f;
              transform: translateY(-2px);
          }

          .pub-btn:hover i {
            color: #ffffff;
        }

        @media (max-width: 1200px) {
            .publicacoes-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .publicacoes-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 560px) {
            .publicacoes-grid {
                grid-template-columns: 1fr;
            }

            .pub-actions {
                flex-direction: column;
            }

            .pub-btn {
                width: 100%;
            }
        }

/* Página de associados */
.associate-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.associate-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,24,40,.80) 0%, rgba(16,24,40,.55) 45%, rgba(16,24,40,.25) 100%);
}
.associate-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 20px;
}
.associate-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ffcc33;
}
.associate-hero h1 {
    margin: 0;
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}
.associate-hero p {
    max-width: 720px;
    font-size: 1.05rem;
    margin: 16px 0 0;
}
.associate-page-section {
    padding: 50px 0 70px;
    background: #fff;
}
.associate-page-header {
    padding-top: 0 !important;
}
.associate-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    background: linear-gradient(90deg, #ef4d37, #d62828);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(214, 40, 40, .18);
}
.associate-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 8px 0 34px;
}
.associate-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid #e4e7ec;
    border-radius: 999px;
    text-decoration: none;
    color: #253247;
    font-weight: 600;
    background: #fff;
    transition: all .2s ease;
}
.associate-filter-chip:hover,
.associate-filter-chip.is-active {
    background: #ef4d37;
    color: #fff;
    border-color: #ef4d37;
}
.associate-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px 30px;
}
.associate-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 188px;
    padding: 18px 16px;
    border: 1px solid #ef4d37;
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(16, 24, 40, .05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.associate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(16, 24, 40, .12);
    border-color: #d62828;
}
.associate-card-logo-wrap {
    height: 94px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.associate-card-logo-wrap img {
    max-width: 100%;
    max-height: 94px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .9;
}
.associate-card-name {
    text-align: center;
    font-size: .95rem;
    line-height: 1.35;
    color: #253247;
    font-weight: 700;
}
.associate-empty-state {
    text-align: center;
    padding: 50px 20px;
    border: 1px dashed #d0d5dd;
    border-radius: 18px;
    background: #fafafa;
}
@media (max-width: 1200px) {
    .associate-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 992px) {
    .associate-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .associate-hero h1 { font-size: 2.3rem; }
}
@media (max-width: 768px) {
    .associate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .associate-card { min-height: 160px; }
    .associate-hero { min-height: 290px; }
    .associate-hero h1 { font-size: 1.9rem; }
}
@media (max-width: 520px) {
    .associate-grid { grid-template-columns: 1fr; }
}




/* CAPA FLOAT PAGINA DETALHE */

.capa-interna {float:left; margin-bottom:20px; margin-right:40px; max-width:35%;}

.capa-interna img {max-width:100%;}



@media only screen and (max-width:980px) {

    .capa-interna {max-width:42%;}

}

@media only screen and (max-width:480px) {

    .capa-interna {width: 100; margin:0; margin-bottom: 20px; float:none; max-width: 100%;}

}



.box-internos {
    display:flex; 
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top:40px;
}

.box-internos .thumb {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 245px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.box-internos .thumb img {
    object-fit: cover;
    width:100%;
    height: 100%;
}

.box-internos a h2 {margin-bottom:5px; font-size: 20px; color: #333;}
.box-internos a p {margin-bottom:25px; text-decoration:none !important; color:inherit !important; font-size: 17px; margin-top: 12px;}



div.leia-mais {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    height: 39px;
    background: #888;
    font-size: 16px;
    color: #FFF;
    font-weight: 700;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    margin-top: 0;
}



/* 2 BOX */

.box-dois a {
    display: block;
    width:370px;
    margin-right: 25px;
    margin-bottom: 40px;
}
.box-dois a:nth-child(3n+0) {
    margin-right: 0;
}
.box-dois a:hover {
    opacity: 0.8;
    transition: all ease-in-out 0.2s;
}


.box-dois a:hover::after {background:#487633;}

.box-dois p::after {background:#959595 !important;}

.box-dois a:hover p::after {background:#487633 !important;}

@media (max-width: 1250px) {
    .box-internos {
        justify-content: space-between;
        flex-wrap: wrap;        
    }
    .box-internos a {
        width: 48%;         
        margin: 0 0 15px 0;
    }
}
@media (max-width: 768px) {
    .box-internos a {
        width: 100%;
    }

}



@media only screen and (max-width:1250px) {

    .box-internos .thumb {height:26vw;}

}

@media only screen and (max-width:630px) {

    .box-dois {flex-direction:column;}

    .box-dois div {width:100%; margin-bottom:30px;}

    .box-internos .thumb {height:54vw;}

}



/* 3 BOX */

.box-tres div {width:31%;}

.box-tres .thumb {height:235px;}



.box-tres div h2 {color:#487633; margin-bottom:8px;}

.box-tres div:hover h2 {color:#5FB246;}

.box-tres div:hover p::after {background:#5FB246;}



@media only screen and (max-width:1250px) {

    .box-tres .thumb {height:16vw;}

}

@media only screen and (min-width:721px) and (max-width:1150px) {

    .box-tres .thumb {width:30%;}

    .box-tres {flex-direction:column;}

    .box-tres div {width:100%; display: flex; flex-direction: column; flex-wrap:wrap; height: 16vw; align-items: flex-start; justify-content: flex-start; margin-bottom: 20px;}

    .box-tres div p, .box-tres div h2 {width:66%; margin-left: 2%;}

}

@media only screen and (max-width:720px) {

    .box-tres {flex-direction:column;}

    .box-tres div {width:100%;}

    .box-tres .thumb {height:36vw;}

}




/* --- LISTA DE DOWNLOADS --- */
.download-list-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.download-list-card {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr) 92px;
    align-items: stretch;
    gap: 0;
    background: #f3f3f3;
    text-decoration: none;
    overflow: hidden;
}

.download-list-card__thumb {
    position: relative;
    min-height: 175px;
    display: block;
    background: #d9d9d9;
}

.download-list-card__thumb img,
.download-list-card__placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.download-list-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a7a7a;
    font-size: 3.25rem;
    background: linear-gradient(135deg, #dcdcdc, #f1f1f1);
}

.download-list-card__date {
    position: absolute;
    top: 0;
    left: 0;
    width: 78px;
    background: #c43a19;
    color: #fff;
    text-align: center;
    padding: 12px 8px 10px;
    line-height: 1;
    font-weight: 700;
    z-index: 2;
}

.download-list-card__date span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.download-list-card__date small {
    display: block;
    font-size: 0.9rem;
    text-transform: capitalize;
    margin: 4px 0;
}

.download-list-card__date strong {
    display: block;
    font-size: 1.15rem;
}

.download-list-card__content {
    padding: 28px 36px;
    background: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-list-card__content h3 {
    margin: 0 0 14px;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 800;
}

.download-list-card__content h3 a {
    color: #404551;
    text-decoration: none;
}

.download-list-card__content p {
    margin: 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 600;
}

.download-list-card__action {
    background: #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 2.4rem;
    transition: background-color 0.2s ease;
}

.download-list-card:hover .download-list-card__action {
    background: #c43a19;
}

.download-list-card:hover .download-list-card__content h3 a {
    color: #c43a19;
}

@media (max-width: 991px) {
    .download-list-card {
        grid-template-columns: 220px minmax(0, 1fr) 76px;
    }

    .download-list-card__content {
        padding: 22px 24px;
    }
}

@media (max-width: 767px) {
    .download-list-card {
        grid-template-columns: 1fr;
    }

    .download-list-card__thumb {
        min-height: 220px;
    }

    .download-list-card__action {
        min-height: 72px;
        font-size: 2rem;
    }
}

/* --- Ajuste para banner somente imagem ---
   Este modo mostra a arte inteira do banner, sem overlay, sem textos e sem botão.
   Ideal para imagens já diagramadas com texto dentro da própria arte. */
.banner-container.banner-container-image-only {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 1920 / 500;
    background-color: #ffffff !important;
    margin-bottom: 50px;
}

.banner-container.banner-container-image-only .hero-slide {
    height: 100% !important;
}

.hero-slide.image-only {
    align-items: stretch !important;
    justify-content: center;
    background-image: none !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #ffffff !important;
    overflow: hidden;
}

.hero-slide.image-only .hero-overlay,
.hero-slide.image-only .banner-content,
.hero-slide.image-only .btn-saiba-mais {
    display: none !important;
}

.hero-slide.image-only .banner-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    line-height: 0;
}

.hero-slide.image-only .banner-image-only-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    border: 0;
}

.banner-container.banner-container-image-only .hero-nav {
    bottom: 25px;
}

@media (max-width: 768px) {
    .banner-container.banner-container-image-only {
        aspect-ratio: 1920 / 500;
        margin-bottom: 30px;
    }

    .banner-container.banner-container-image-only .hero-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}


/* Ajustes SIAMFESP - correções solicitadas */
.associate-page-header .section-title {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.9rem;
    line-height: 1.32;
}
@media (max-width: 767px) {
    .associate-page-header .section-title {
        font-size: 1.45rem;
    }
}

/* Ajustes solicitados no PDF - SIAMFESP */
.associate-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.associate-page-header .section-title {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.35;
}
.associate-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: max-content;
    margin: 0 auto;
}
.pagination-wrap {
    display: flex;
    justify-content: center;
    margin: 35px 0 10px;
}
.pagination-wrap ul,
.pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination-wrap a,
.pagination-wrap span,
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid #e1e1e1;
    border-radius: 999px;
    background: #fff;
    color: #333;
}
.pagination-wrap .active span,
.pagination .active span,
.pagination-wrap a:hover,
.pagination a:hover {
    background: #d9534f;
    border-color: #d9534f;
    color: #fff;
}
.dl-item.is-active {
    border-color: #d9534f;
    box-shadow: 0 8px 22px rgba(217,83,79,.22);
}
.content-page-section {
    padding: 55px 0;
    background: #fff;
}
.site-search-page-form,
.contact-form {
    display: grid;
    gap: 14px;
}
.site-search-page-form {
    grid-template-columns: 1fr auto;
    max-width: 820px;
    margin: 0 auto 35px;
}
.site-search-page-form input,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font: inherit;
}
.site-search-page-form button,
.contact-form button {
    border: none;
    border-radius: 10px;
    padding: 13px 22px;
    background: #d9534f;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.search-results-list {
    display: grid;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}
.search-result-item,
.content-link-card,
.contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.search-result-item {
    display: block;
    padding: 18px 22px;
}
.search-result-type {
    display: inline-block;
    margin-bottom: 8px;
    color: #d9534f;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 24px;
}
.contact-card {
    padding: 28px;
}
.content-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.content-link-card {
    padding: 24px;
    min-height: 210px;
}
.content-link-card i {
    color: #d9534f;
    font-size: 2rem;
    margin-bottom: 12px;
}
.content-link-card a {
    color: #d9534f;
    font-weight: 700;
}
.footer-fiesp-logo img {
    max-height: 54px;
    width: auto;
    display: block;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
}
.footer-top-row {
    gap: 22px;
}
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 24px; right: 24px; background-color: #25d366; color: #FFF !important; border-radius: 50%; text-align: center; font-size: 31px; box-shadow: 0 8px 20px rgba(0,0,0,.22); z-index: 999990; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s ease; }
.whatsapp-float:hover { background-color: #128C7E; color: #fff !important; transform: scale(1.08); }
@media (max-width: 1100px) {
    .header-bg-wrapper { width: 100%; }
    .header-top { padding: 0 16px; }
    .actions-area { gap: 8px; }
    .search-bar-header { width: 180px; }
}
@media (max-width: 900px) {
    .contact-page-grid,
    .content-card-grid { grid-template-columns: 1fr; }
    .site-search-page-form { grid-template-columns: 1fr; }
    .associate-page-header .section-title { font-size: 1.55rem; }
}
@media (max-width: 768px) {
    .brand-area .slogan { display: none; }
    .actions-area { display: none; }
    .nav-bar-wrapper { display: none; }
    .menu-aberto .nav-bar-wrapper { display: block; position: fixed; top: 105px; left: 0; right: 0; bottom: 0; overflow: auto; z-index: 1002; }
    .menu-aberto .main-menu ul { flex-direction: column; align-items: stretch; }
    .menu-aberto .main-menu li { width: 100%; margin: 0; }
    .menu-aberto .main-menu ul ul { position: static; display: block; opacity: 1; visibility: visible; box-shadow: none; width: 100%; }
    .container { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 560px) {
    .associate-filter-bar { overflow-x: auto; justify-content: flex-start; padding-bottom: 10px; }
    .associate-grid,
    .grid-noticias-iba,
    .grid-eventos-home { grid-template-columns: 1fr !important; }
    .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

/* Correção Home - Destaques: mantém o menu de ícones visível e evita que os cards quebrem */
.home-destaques-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #fff !important;
    padding: 42px 0 34px !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 20 !important;
}
.home-destaques-menu .links-container-light,
.home-destaques-menu .links-container-light ul {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.home-destaques-menu .links-container-light {
    justify-content: center !important;
    width: 100% !important;
}
.home-destaques-menu .links-container-light ul {
    align-items: stretch !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}
.home-destaques-menu .links-container-light li {
    display: block !important;
    min-width: 100px !important;
}
.home-destaques-menu .links-container-light > ul > li > a {
    min-height: 92px;
}
.home-destaques-menu .submenu-caret {
    font-size: .8em !important;
    margin: 0 0 0 5px !important;
    color: inherit !important;
    display: inline-block !important;
    vertical-align: middle !important;
}
.card-news-img img,
.card-evento-img-wrapper img {
    display: block;
    background: #f3f3f3;
}

/* Aviso de redirecionamento da área restrita */
.login-notice {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff4e5;
    color: #8a5a00;
    font-weight: 600;
    font-size: 14px;
}
