/* --- 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: 180px; position: relative; flex-shrink: 0; }
            .parceiro-img-wrapper img { width: 100%; height: 200px; 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;
    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;
    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;
}


/* --- Login do site / botão de sair --- */
.acesso-restrito-btn.acesso-restrito-logged {
    background: linear-gradient(90deg, #34495e, #1c2833);
    box-shadow: 0 4px 10px rgba(28, 40, 51, 0.25);
}

.acesso-restrito-btn.acesso-restrito-logged .btn-text .small {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.login-notice.login-success {
    border-left: 4px solid #2ecc71;
    background: #eafaf1;
    color: #1e8449;
}

/* --- Minha conta / logout sem página 404 --- */
.site-account-actions {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.site-account-actions .acesso-restrito-btn {
    min-width: 118px;
    padding-left: 12px;
    padding-right: 12px;
}

.site-account-actions .acesso-conta-btn {
    min-width: 155px;
}

.acesso-restrito-btn.acesso-restrito-logout {
    background: linear-gradient(90deg, #d9534f, #b52b27);
    box-shadow: 0 4px 10px rgba(181, 43, 39, 0.25);
}

.account-section {
    padding-top: 62px;
    padding-bottom: 72px;
}

.account-card {
    max-width: 680px;
}

.account-card h3 {
    margin: 0 0 6px;
    color: #26354f;
    font-size: 1.22rem;
}

.account-form .field-help,
.account-help {
    display: block;
    margin: 6px 0 0;
    color: #6c757d;
    font-size: .86rem;
}

.input-wrapper.input-wrapper-disabled {
    background: #f5f6f8;
}

.input-wrapper.input-wrapper-disabled input {
    color: #6c757d;
    cursor: not-allowed;
}

.account-divider {
    border: 0;
    border-top: 1px solid #eceff3;
    margin: 24px 0;
}

.account-two-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.account-actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.btn-account-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    background: #f1f3f5;
    color: #34495e !important;
    font-weight: 700;
    text-decoration: none;
}

.btn-account-logout:hover {
    background: #e3e7eb;
    color: #26354f !important;
}

.login-notice.login-error {
    border-left: 4px solid #d9534f;
    background: #fdecea;
    color: #a93226;
}

@media (max-width: 1100px) {
    .site-account-actions .acesso-restrito-btn {
        min-width: 104px;
    }

    .site-account-actions .acesso-conta-btn {
        min-width: 136px;
    }
}

@media (max-width: 640px) {
    .account-two-cols,
    .account-actions-row {
        grid-template-columns: 1fr;
        display: grid;
    }
}


/* --- ÁREA RESTRITA / CONTA DO ASSOCIADO --- */
.site-account-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 205px;
    max-width: 235px;
    padding: 8px 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ea5c52 0%, #cc1111 100%);
    color: #fff;
    box-shadow: 0 5px 14px rgba(170, 15, 15, 0.22);
}

.site-account-chip__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-account-chip__icon i {
    font-size: 0.95rem;
    color: #fff;
}

.site-account-chip__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.site-account-chip__label {
    font-size: 0.56rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.92;
    color: #fff;
}

.site-account-chip__name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
}

.site-account-chip__links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.76rem;
    line-height: 1;
    flex-wrap: wrap;
}

.site-account-chip__links a {
    color: #fff !important;
    font-size: 0.76rem;
    font-weight: 500;
    text-decoration: none;
}

.site-account-chip__links a:hover {
    text-decoration: underline;
}

.site-account-chip__links span {
    opacity: 0.75;
}

@media (max-width: 1100px) {
    .site-account-chip {
        min-width: 190px;
        max-width: 215px;
        padding: 7px 11px;
    }

    .site-account-chip__name {
        font-size: 0.86rem;
    }
}

@media (max-width: 991px) {
    .site-account-chip {
        width: 100%;
        max-width: none;
    }
}

/* --- Correção: submenu dos Destaques fecha corretamente --- */
.home-destaques-menu .links-container-light > ul > li.has-submenu {
    position: relative !important;
}

.home-destaques-menu .links-container-light .submenu-links {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(8px) !important;
    min-width: 220px !important;
    padding: 12px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid #edf0f2 !important;
    z-index: 9999 !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.home-destaques-menu .links-container-light .submenu-links::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid #edf0f2;
    border-top: 1px solid #edf0f2;
}

.home-destaques-menu .links-container-light > ul > li.has-submenu:hover > .submenu-links,
.home-destaques-menu .links-container-light > ul > li.has-submenu:focus-within > .submenu-links {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

.home-destaques-menu .links-container-light .submenu-links li {
    min-width: 0 !important;
    width: 100% !important;
    display: block !important;
}

.home-destaques-menu .links-container-light .submenu-links a {
    display: block !important;
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding: 13px 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    color: #34495e !important;
    background: transparent !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    text-align: left !important;
    white-space: nowrap !important;
}

.home-destaques-menu .links-container-light .submenu-links a:hover {
    background: #f8f9fa !important;
    color: #d9534f !important;
    transform: none !important;
    box-shadow: none !important;
}

@media (max-width: 767px) {
    .home-destaques-menu .links-container-light .submenu-links {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        min-width: 0 !important;
        margin-top: 8px !important;
    }

    .home-destaques-menu .links-container-light .submenu-links::before {
        display: none !important;
    }

    .home-destaques-menu .links-container-light > ul > li.has-submenu:hover > .submenu-links,
    .home-destaques-menu .links-container-light > ul > li.has-submenu:focus-within > .submenu-links {
        transform: none !important;
    }
}

/* --- CONTEÚDO DE ARTIGOS / IMAGENS DO EDITOR --- */
.article-page-card {
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eef1f4;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(20, 35, 55, 0.08);
    padding: 44px 48px;
}

.article-page-card--detail {
    overflow: hidden;
}

.article-detail-header {
    max-width: 860px;
    margin: 0 auto 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #eef1f4;
    text-align: left;
}

.article-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff3f3;
    color: #d6453d;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.article-detail-header h2 {
    margin: 0;
    color: #1f2937;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.article-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #7a8491;
    font-size: 0.92rem;
    font-weight: 600;
}

.article-meta i {
    color: #d6453d;
}

.article-main-figure {
    max-width: 860px;
    margin: 0 auto 32px;
    text-align: center;
}

.article-main-figure img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.article-main-figure figcaption {
    margin-top: 10px;
    color: #7a8491;
    font-size: 0.9rem;
    font-style: italic;
}

.article-content {
    margin: 0 auto;
    color: #2d3748 !important;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 1.06rem !important;
    line-height: 1.9 !important;
}

.article-content::after {
    content: '';
    display: block;
    clear: both;
}

.article-content > *:first-child {
    margin-top: 0 !important;
}

.article-content p {
    margin: 0 0 20px;
}

.article-content p:empty {
    display: none;
}

.article-content strong,
.article-content b {
    color: #1f2937;
    font-weight: 800;
}

.article-content a {
    color: #d6453d;
    font-weight: 700;
    text-decoration: none;
}

.article-content a:hover {
    color: #b92f28;
    border-bottom-color: currentColor;
}

.article-content img {
    display: block !important;
    float: none !important;
    clear: both !important;
    max-width: min(100%, 760px) !important;
    height: auto !important;
    margin: 26px auto 32px !important;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    width: 360px;
}

.article-content img[align="left"],
.article-content img[align="right"],
.article-content img[style*="float"],
.article-content img[style*="Float"],
.article-content img[style*="FLOAT"] {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.article-content figure {
    margin: 28px auto 34px;
    text-align: center;
}

.article-content figure img {
    margin-bottom: 10px !important;
}

.article-content figcaption {
    color: #7a8491;
    font-size: 0.9rem;
    font-style: italic;
}

.article-content ul,
.article-content ol {
    margin: 18px 0 26px;
    padding-left: 0;
    list-style: none;
}

.article-content li {
    position: relative;
    margin: 10px 0;
    padding-left: 30px;
    list-style: none;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0.82em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d6453d;
    box-shadow: 0 0 0 4px rgba(214, 69, 61, 0.10);
}

.article-content ol {
    counter-reset: article-counter;
}

.article-content ol li {
    counter-increment: article-counter;
}

.article-content ol li::before {
    content: counter(article-counter);
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #d6453d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.article-content blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 5px solid #d6453d;
    border-radius: 0 14px 14px 0;
    background: #fff7f7;
    color: #344054;
    font-size: 1.08rem;
    line-height: 1.75;
}

.article-content table {
    width: 100% !important;
    margin: 28px 0;
    border-collapse: collapse;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #e8edf2;
}

.article-content th,
.article-content td {
    padding: 13px 15px;
    border: 1px solid #e8edf2;
    vertical-align: top;
}

.article-content th {
    background: #f7f9fb;
    color: #1f2937;
    font-weight: 800;
}

.article-content iframe,
.article-content video {
    display: block;
    max-width: 100%;
    margin: 28px auto;
    border-radius: 16px;
}

@media (max-width: 767px) {
    .article-page-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .article-detail-header {
        margin-bottom: 22px;
        padding-bottom: 18px;
    }

    .article-content {
        font-size: 1rem !important;
        line-height: 1.8 !important;
    }

    .article-content img,
    .article-main-figure img {
        border-radius: 12px;
    }
}


/* --- HOTFIX: artigo interno sem cabeçalho duplicado sobre o menu --- */
.article-page-card--detail {
    margin-top: 0 !important;
}

.article-page-card--detail .article-main-figure:first-child {
    margin-top: 0 !important;
}

.article-page-card--detail .article-content {
    clear: both;
}

.article-page-card--detail .article-content img {
    position: relative;
    z-index: 1;
}

/* Caso algum conteúdo antigo venha fora do card por cache do CMS, evita que ele sobreponha o topo/menu. */
body > .article-detail-header,
main > .article-detail-header,
.banner-container + .article-detail-header {
    display: none !important;
}

/* --- BUSCA / PAGINAÇÃO --- */
.search-results-heading {
    margin: 26px 0 14px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1c2833;
}

.search-results-heading:first-child {
    margin-top: 0;
}

/* --- Página interna da Agenda --- */
.agenda-page-section,
.agenda-detail-section {
    padding: 56px 0 78px;
    background: #fff;
}
.agenda-page-header {
    padding-top: 0 !important;
    padding-bottom: 24px !important;
}
.agenda-search-form {
    max-width: 920px;
    margin: 0 auto 34px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e6e9ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(16, 24, 40, .08);
}
.agenda-search-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 12px 14px;
    font-size: .98rem;
    color: #253247;
}
.agenda-search-form button,
.agenda-primary-btn,
.agenda-clear-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    background: linear-gradient(90deg, #ef4d37, #d62828);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.agenda-clear-search {
    background: #f3f4f6;
    color: #253247;
}
.agenda-search-form button:hover,
.agenda-primary-btn:hover,
.agenda-clear-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(214, 40, 40, .14);
    color: #fff;
}
.agenda-clear-search:hover {
    color: #253247;
    box-shadow: 0 10px 20px rgba(16, 24, 40, .08);
}
.agenda-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.agenda-page-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.agenda-page-card:hover {
    transform: translateY(-5px);
    border-color: #ef4d37;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .12);
}
.agenda-page-card-media {
    position: relative;
    height: 210px;
    background: #f3f4f6;
    overflow: hidden;
}
.agenda-page-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .3s ease;
}
.agenda-page-card:hover .agenda-page-card-media img {
    transform: scale(1.05);
}
.agenda-page-card-media.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7f7f7, #eceff3);
}
.agenda-page-date-big {
    width: 110px;
    height: 110px;
    border-radius: 22px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(16, 24, 40, .08);
}
.agenda-page-date-big span {
    font-size: 2.35rem;
    line-height: 1;
    font-weight: 900;
    color: #d62828;
}
.agenda-page-date-big small {
    margin-top: 6px;
    font-size: .9rem;
    font-weight: 900;
    color: #253247;
}
.agenda-page-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}
.agenda-page-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    color: #667085;
    font-size: .86rem;
    font-weight: 600;
}
.agenda-page-meta span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.agenda-page-meta i {
    color: #ef4d37;
    margin-top: 2px;
}
.agenda-page-card h3 {
    margin: 0 0 12px;
    font-size: 1.16rem;
    line-height: 1.34;
    color: #253247;
    font-weight: 900;
}
.agenda-page-card p {
    margin: 0 0 18px;
    color: #667085;
    font-size: .96rem;
    line-height: 1.55;
}
.agenda-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d62828;
    font-weight: 900;
}
.agenda-empty-state {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 24px;
    text-align: center;
    border: 1px dashed #d0d5dd;
    border-radius: 20px;
    background: #fafafa;
}
.agenda-empty-state h3 {
    margin: 0 0 10px;
    color: #253247;
    font-weight: 900;
}
.agenda-empty-state p {
    margin: 0 0 18px;
    color: #667085;
}
.agenda-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    align-items: start;
}
.agenda-detail-card,
.agenda-sidebar-card {
    overflow: hidden;
    border: 1px solid #edf0f4;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(16, 24, 40, .08);
}
.agenda-detail-image {
    width: 100%;
    max-height: 430px;
    overflow: hidden;
    background: #f3f4f6;
}
.agenda-detail-image img {
    width: 100%;
    height: 100%;
    max-height: 430px;
    display: block;
    object-fit: cover;
}
.agenda-detail-content {
    padding: 34px;
}
.agenda-detail-topline {
    margin-bottom: 18px;
}
.agenda-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d62828;
    font-weight: 800;
    text-decoration: none;
}
.agenda-detail-content h2 {
    margin: 0 0 22px;
    color: #253247;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 900;
}
.agenda-detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.agenda-detail-meta-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid #edf0f4;
}
.agenda-detail-meta-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff0ed;
    color: #d62828;
}
.agenda-detail-meta-item strong {
    display: block;
    margin-bottom: 5px;
    color: #253247;
    font-size: .9rem;
}
.agenda-detail-meta-item p {
    margin: 0;
    color: #667085;
    line-height: 1.45;
}
.agenda-detail-text {
    color: #253247;
    font-size: 1.03rem;
    line-height: 1.75;
}
.agenda-detail-text img {
    max-width: 100%;
    height: auto;
}
.agenda-detail-text a {
    color: #d62828;
    font-weight: 800;
}
.agenda-detail-text p:first-child {
    margin-top: 0;
}
.agenda-detail-content .agenda-primary-btn {
    margin-top: 22px;
}
.agenda-sidebar-card {
    padding: 24px;
    position: sticky;
    top: 24px;
}
.agenda-sidebar-card h3 {
    margin: 0 0 18px;
    color: #253247;
    font-size: 1.2rem;
    font-weight: 900;
}
.agenda-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.agenda-sidebar-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    color: inherit;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease;
}
.agenda-sidebar-item:hover {
    border-color: #ef4d37;
    transform: translateX(4px);
}
.agenda-sidebar-info {
    min-width: 0;
}
.agenda-sidebar-info strong {
    display: block;
    color: #253247;
    font-size: .92rem;
    line-height: 1.35;
}
.agenda-sidebar-info small {
    display: block;
    margin-top: 4px;
    color: #667085;
    font-size: .78rem;
}
.agenda-sidebar-empty {
    margin: 0;
    color: #667085;
    line-height: 1.55;
}
@media (max-width: 1024px) {
    .agenda-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .agenda-detail-layout { grid-template-columns: 1fr; }
    .agenda-sidebar-card { position: static; }
}
@media (max-width: 720px) {
    .agenda-page-section,
    .agenda-detail-section { padding: 40px 0 58px; }
    .agenda-search-form { flex-direction: column; align-items: stretch; }
    .agenda-search-form button,
    .agenda-clear-search { width: 100%; }
    .agenda-page-grid { grid-template-columns: 1fr; }
    .agenda-detail-content { padding: 24px; }
    .agenda-detail-content h2 { font-size: 1.55rem; }
    .agenda-detail-meta-grid { grid-template-columns: 1fr; }
}

/* Correção Home - Destaques por categoria do CMS */
.grid-noticias-iba .card-news-tag.home-category-title,
.grid-noticias-iba .card-news-tag {
    background: transparent !important;
    color: #d71920 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-size: 0.86rem !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: .02em !important;
    text-transform: uppercase !important;
    margin-bottom: 2px !important;
}

.grid-noticias-iba .card-news-titulo {
    font-size: 1.05rem !important;
    line-height: 1.32 !important;
    color: #222 !important;
}

.grid-noticias-iba .card-news-horizontal:hover .card-news-titulo {
    color: #d71920 !important;
}

@media (max-width: 767px) {
    .grid-noticias-iba .card-news-tag.home-category-title,
    .grid-noticias-iba .card-news-tag {
        font-size: 0.82rem !important;
    }

    .grid-noticias-iba .card-news-titulo {
        font-size: 1rem !important;
    }
}

/* =========================================================
   Modernização das páginas internas - SIAMFESP
   Aplica o mesmo padrão visual das páginas Parcerias/Associe-se
   ========================================================= */
.internal-page-section {
    position: relative;
    padding: 72px 0 86px;
    background:
        radial-gradient(circle at 8% 0%, rgba(249,181,41,0.10), transparent 32%),
        radial-gradient(circle at 92% 12%, rgba(217,83,79,0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    overflow: hidden;
}
.internal-page-section::before,
.internal-page-section::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    opacity: .55;
}
.internal-page-section::before {
    width: 360px;
    height: 360px;
    left: -210px;
    top: 80px;
    background: rgba(217,83,79,.06);
}
.internal-page-section::after {
    width: 280px;
    height: 280px;
    right: -160px;
    bottom: 40px;
    background: rgba(249,181,41,.09);
}
.internal-page-container {
    position: relative;
    z-index: 1;
}
.internal-modern-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(225,230,238,0.95) !important;
    border-radius: 28px !important;
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.10) !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94)),
        radial-gradient(circle at 0% 0%, rgba(249,181,41,.12), transparent 38%) !important;
}
.internal-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #d9534f 0%, #f9b529 100%);
}
.internal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 22px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #fff3f3;
    color: #d6453d;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.internal-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f9b529;
    box-shadow: 0 0 0 4px rgba(249,181,41,.18);
}
.internal-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}
.internal-side-panel {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 105px;
}
.internal-side-card {
    position: relative;
    padding: 24px 24px 22px;
    border: 1px solid #e9edf3;
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}
.internal-side-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #d9534f, #f9b529);
}
.internal-side-card--highlight {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #fff;
}
.internal-side-card strong {
    display: block;
    margin: 14px 0 8px;
    color: inherit;
    font-size: 1.05rem;
    font-weight: 900;
}
.internal-side-card p {
    margin: 0;
    color: inherit;
    opacity: .82;
    line-height: 1.65;
    font-size: .94rem;
}
.internal-side-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #fff4df;
    color: #d9534f;
    box-shadow: inset 0 0 0 1px rgba(249,181,41,.24);
}
.internal-side-card--highlight .internal-side-icon {
    background: rgba(255,255,255,.12);
    color: #f9b529;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.internal-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}
.internal-value-card {
    padding: 30px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid #e9edf3;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}
.internal-value-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    margin-bottom: 18px;
    background: #fff4df;
    color: #d9534f;
    font-size: 1.35rem;
}
.internal-value-card h3 {
    margin: 0 0 12px;
    color: #1f2937;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.02em;
}
.internal-value-card p,
.internal-value-card li {
    color: #4b5563;
    line-height: 1.7;
}
.internal-value-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.internal-value-card li {
    position: relative;
    padding-left: 22px;
    margin: 6px 0;
}
.internal-value-card li::before {
    content: '\f26e';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 1px;
    color: #d9534f;
    font-size: .95rem;
}

.article-content h1,
.article-content h2,
.article-content h3 {
    clear: both;
    color: #1f2937 !important;
    letter-spacing: -.03em;
    line-height: 1.2;
}
.article-content h1 {
    position: relative;
    margin: 36px 0 18px !important;
    padding: 18px 20px 18px 26px;
    border-radius: 18px;
    background: #fff7f1;
    border: 1px solid #ffe1cf;
    font-size: clamp(1.45rem, 2.4vw, 2rem) !important;
}
.article-content h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, #d9534f, #f9b529);
}
.article-content h1 span,
.article-content h2 span,
.article-content h3 span {
    color: inherit !important;
}
.article-content ul,
.article-content ol {
    background: #f8fafc;
    border: 1px solid #e9edf3;
    border-radius: 20px;
    padding: 18px 22px 18px 24px !important;
}
.article-content ul li::before {
    top: .78em;
}
.article-content table {
    background: #fff;
}
.article-content > p:last-child,
.article-content > ul:last-child,
.article-content > ol:last-child {
    margin-bottom: 0 !important;
}
.download.internal-nav-download .downloads-strip,
.downloads-strip {
    border: 1px solid rgba(226,232,240,.95);
}
.dl-item {
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.dl-item:hover,
.dl-item.is-active {
    z-index: 2;
    background: #fff7f7;
    color: #d6453d;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(217,83,79,.14);
}
.dl-item:hover .dl-title,
.dl-item.is-active .dl-title,
.dl-item:hover .dl-arrow,
.dl-item.is-active .dl-arrow {
    color: #d6453d;
}
.dl-item.is-active .dl-ic {
    background: #d9534f;
    color: #fff;
    box-shadow: 0 10px 20px rgba(217,83,79,.22);
}
.internal-about-card .article-content {
    max-width: 100%;
}
.internal-about-page .article-page-card {
    margin: 0;
}
@media (max-width: 1100px) {
    .internal-intro-grid {
        grid-template-columns: 1fr;
    }
    .internal-side-panel {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 860px) {
    .internal-page-section {
        padding: 54px 0 64px;
    }
    .internal-side-panel,
    .internal-values-grid {
        grid-template-columns: 1fr;
    }
    .internal-modern-card {
        border-radius: 20px !important;
    }
    .internal-value-card,
    .internal-side-card {
        border-radius: 20px;
    }
}
@media (max-width: 560px) {
    .internal-page-section {
        padding: 42px 0 52px;
    }
    .internal-value-card,
    .internal-side-card {
        padding: 22px;
    }
    .article-content .dropcap,
    .article-content .dropcap * {
        width: 44px;
        height: 44px;
        font-size: 1.65rem !important;
        border-radius: 14px;
    }
}


/* Correção Home - Agenda do Setor com paginação compacta */
.secao-mista-agenda-parceiro {
    margin-top: 50px !important;
    margin-bottom: 35px !important;
    padding-bottom: 0 !important;
}
.grid-mista-agenda-parceiro {
    align-items: start !important;
}
.col-parceiro,
.col-agenda {
    min-height: 0 !important;
}
.agenda-list-compact {
    height: auto !important;
    min-height: 0 !important;
    justify-content: flex-start !important;
    gap: 14px !important;
}
.agenda-list-compact .agenda-item {
    min-height: 78px;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.agenda-list-compact .agenda-item:hover {
    transform: translateY(-2px) !important;
    border-left: 1px solid #eee !important;
    border-color: rgba(217,83,79,.35) !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.08) !important;
}
.home-agenda-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.home-agenda-page-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(217,83,79,.25);
    background: #fff;
    color: #d9534f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.home-agenda-page-btn:hover:not(:disabled) {
    background: #d9534f;
    color: #fff;
    transform: translateY(-1px);
}
.home-agenda-page-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
}
.home-agenda-page-status {
    min-width: 54px;
    text-align: center;
    font-size: .86rem;
    color: #555;
    font-weight: 700;
}
.home-agenda-all-link {
    margin-left: 8px;
    color: #d9534f;
    font-weight: 800;
    text-decoration: none;
    font-size: .9rem;
}
.home-agenda-all-link:hover {
    text-decoration: underline;
}
.secao-detalhe-linhas#videos {
    padding-top: 40px !important;
}
@media (max-width: 767px) {
    .home-agenda-pagination {
        justify-content: center;
    }
    .home-agenda-all-link {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
}

/* Correção final Home - categorias dos Destaques iguais ao modelo aprovado */
.container-noticias .grid-noticias-iba {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 42px !important;
    align-items: start !important;
}
.container-noticias .grid-noticias-iba .card-news-horizontal {
    align-items: flex-start !important;
    gap: 16px !important;
}
.container-noticias .grid-noticias-iba .card-news-img {
    width: 180px !important;
    height: 110px !important;
    border-radius: 8px !important;
    background: #f5f5f5 !important;
}
.container-noticias .grid-noticias-iba .card-news-body {
    gap: 6px !important;
    padding-top: 0 !important;
}
.container-noticias .grid-noticias-iba .card-news-date {
    color: #777 !important;
    font-size: .84rem !important;
    line-height: 1.15 !important;
    margin-bottom: 0 !important;
}
.container-noticias .grid-noticias-iba .card-news-tag.home-category-title,
.container-noticias .grid-noticias-iba .card-news-tag {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: max-content !important;
    background: #d71920 !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 5px 9px !important;
    font-size: .72rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
    margin: 0 0 4px !important;
    box-shadow: none !important;
}
.container-noticias .grid-noticias-iba .card-news-titulo {
    margin: 0 !important;
    color: #111827 !important;
    font-size: 1.05rem !important;
    line-height: 1.28 !important;
    font-weight: 900 !important;
}
.container-noticias .grid-noticias-iba .card-news-horizontal:hover .card-news-titulo {
    color: #d71920 !important;
}
@media (max-width: 900px) {
    .container-noticias .grid-noticias-iba {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}
@media (max-width: 560px) {
    .container-noticias .grid-noticias-iba .card-news-horizontal {
        gap: 12px !important;
    }
    .container-noticias .grid-noticias-iba .card-news-img {
        width: 128px !important;
        height: 86px !important;
    }
    .container-noticias .grid-noticias-iba .card-news-tag.home-category-title,
    .container-noticias .grid-noticias-iba .card-news-tag {
        font-size: .66rem !important;
        padding: 4px 7px !important;
    }
    .container-noticias .grid-noticias-iba .card-news-titulo {
        font-size: .96rem !important;
    }
}


/* Banner da home clicável pelo link cadastrado no CMS */
.hero-slide .banner-full-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 2;
    text-decoration: none;
    color: inherit;
}

.hero-slide .banner-full-link:focus-visible {
    outline: 3px solid #F9B529;
    outline-offset: -8px;
}

.hero-slide .banner-content {
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.hero-slide .banner-content .btn-saiba-mais {
    pointer-events: auto;
    position: relative;
    z-index: 4;
}

.hero-slide .hero-overlay {
    z-index: 1;
}

.banner-container .hero-nav {
    z-index: 10;
}

/* Newsletter footer - grava no admin e retorna mensagem AJAX */
.newsletter-form .newsletter-message {
    margin-top: 8px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}
.newsletter-form .newsletter-message.success {
    background: rgba(38, 166, 91, .14);
    color: #dfffe9;
    border: 1px solid rgba(38, 166, 91, .45);
}
.newsletter-form .newsletter-message.error {
    background: rgba(211, 47, 47, .14);
    color: #ffe5e5;
    border: 1px solid rgba(211, 47, 47, .45);
}
.newsletter-form button[disabled] {
    opacity: .75;
    cursor: wait;
}


/* LGPD - Política de Privacidade, Termos e aceite de cookies */
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-cookie-preferences {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    padding: 0;
    cursor: pointer;
    opacity: .9;
}
.footer-cookie-preferences:hover {
    color: #d71920;
    text-decoration: underline;
}
.lgpd-cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translate(-50%, 18px);
    width: min(1120px, calc(100% - 32px));
    z-index: 999999;
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
}
.lgpd-cookie-banner.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}
.lgpd-cookie-card {
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(36,48,67,.12);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(12,18,32,.24);
    padding: 18px;
    backdrop-filter: blur(10px);
}
.lgpd-cookie-main {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: flex-start;
}
.lgpd-cookie-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #d71920, #f6a400);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 14px 28px rgba(215,25,32,.22);
}
.lgpd-cookie-main strong {
    display: block;
    color: #243043;
    font-size: 1.08rem;
    font-weight: 900;
    margin-bottom: 4px;
}
.lgpd-cookie-main p {
    color: #536278;
    font-size: .94rem;
    line-height: 1.55;
    margin: 0;
}
.lgpd-cookie-main a {
    display: inline-flex;
    margin-top: 8px;
    color: #d71920;
    font-weight: 800;
    text-decoration: none;
}
.lgpd-cookie-main a:hover {
    text-decoration: underline;
}
.lgpd-cookie-actions,
.lgpd-cookie-panel-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.lgpd-cookie-inline-form {
    display: inline-flex;
    margin: 0;
}
.lgpd-btn {
    min-height: 42px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 10px 16px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.lgpd-btn:hover {
    transform: translateY(-1px);
}
.lgpd-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #d71920, #f6a400);
    box-shadow: 0 12px 26px rgba(215,25,32,.22);
}
.lgpd-btn-outline {
    color: #d71920;
    background: #fff;
    border-color: rgba(215,25,32,.25);
}
.lgpd-btn-light {
    color: #243043;
    background: #f3f5f8;
    border-color: rgba(36,48,67,.10);
}
.lgpd-cookie-panel {
    border-top: 1px solid rgba(36,48,67,.10);
    margin-top: 16px;
    padding-top: 16px;
}
.lgpd-cookie-options {
    display: grid;
    gap: 10px;
}
.lgpd-cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(36,48,67,.10);
    border-radius: 16px;
    padding: 13px 14px;
    background: #fff;
}
.lgpd-cookie-option strong {
    display: block;
    color: #243043;
    font-size: .96rem;
    margin-bottom: 3px;
}
.lgpd-cookie-option small {
    display: block;
    color: #667085;
    line-height: 1.35;
}
.lgpd-cookie-option input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #d71920;
    flex: 0 0 auto;
}
.lgpd-page {
    background:
        radial-gradient(circle at top left, rgba(215,25,32,.08), transparent 32rem),
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
    padding: 70px 16px 90px;
}
.lgpd-page-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 30px;
    align-items: start;
}
.lgpd-summary-card,
.lgpd-content-card {
    background: #fff;
    border: 1px solid rgba(36,48,67,.10);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(23,35,56,.08);
}
.lgpd-summary-card {
    padding: 30px;
    position: sticky;
    top: 110px;
}
.lgpd-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d71920;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
}
.lgpd-kicker::before {
    content: "";
    width: 32px;
    height: 3px;
    border-radius: 999px;
    background: #d71920;
}
.lgpd-summary-card h2 {
    margin: 12px 0 14px;
    color: #243043;
    font-family: Inter, Roboto, Arial, sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -.04em;
}
.lgpd-summary-card p,
.lgpd-content-card p,
.lgpd-content-card li {
    color: #43526a;
    line-height: 1.78;
    font-size: 1rem;
}
.lgpd-summary-btn {
    margin-top: 14px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #d71920, #f6a400);
    padding: 12px 18px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(215,25,32,.20);
}
.lgpd-content-card {
    padding: clamp(28px, 5vw, 54px);
}
.lgpd-content-card h2 {
    color: #243043;
    font-size: 1.35rem;
    font-weight: 900;
    margin: 28px 0 10px;
}
.lgpd-content-card h2:first-of-type {
    margin-top: 0;
}
.lgpd-content-card a {
    color: #d71920;
    font-weight: 800;
}
.lgpd-updated {
    display: inline-flex;
    background: #fff4f4;
    border: 1px solid rgba(215,25,32,.12);
    color: #b11f24 !important;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 800;
    font-size: .9rem !important;
    margin: 0 0 24px !important;
}
.lgpd-content-card ul {
    margin: 0 0 18px;
    padding-left: 22px;
}
.lgpd-cookie-types {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
    margin: 18px 0 20px;
}
.lgpd-cookie-types div {
    border: 1px solid rgba(36,48,67,.10);
    border-radius: 18px;
    padding: 16px;
    background: #f9fafc;
}
.lgpd-cookie-types strong {
    display: block;
    color: #d71920;
    margin-bottom: 6px;
    font-weight: 900;
}
.lgpd-cookie-types span {
    color: #536278;
    line-height: 1.55;
    font-size: .94rem;
}
@media (max-width: 900px) {
    .lgpd-page-shell {
        grid-template-columns: 1fr;
    }
    .lgpd-summary-card {
        position: static;
    }
    .lgpd-cookie-types {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .lgpd-cookie-banner {
        width: calc(100% - 20px);
        bottom: 10px;
    }
    .lgpd-cookie-card {
        padding: 14px;
        border-radius: 18px;
    }
    .lgpd-cookie-main {
        grid-template-columns: 1fr;
    }
    .lgpd-cookie-icon {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }
    .lgpd-cookie-actions,
    .lgpd-cookie-panel-actions {
        flex-direction: column;
    }
    .lgpd-cookie-inline-form,
    .lgpd-btn {
        width: 100%;
    }
    .lgpd-btn {
        justify-content: center;
    }
    .lgpd-page {
        padding: 46px 12px 68px;
    }
    .lgpd-content-card,
    .lgpd-summary-card {
        border-radius: 20px;
        padding: 22px;
    }
}

/* Imprensa: mostra todos os submenus no acesso rápido do banner */
.download.imprensa-full-menu {
    position: relative;
    z-index: 25;
    margin-top: -44px;
    padding-bottom: 34px;
}
.download.imprensa-full-menu .downloads-strip-wrap {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 25;
    pointer-events: auto;
}
.download.imprensa-full-menu .downloads-strip {
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    overflow: hidden;
}
.download.imprensa-full-menu .dl-item {
    min-height: 76px;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}
.download.imprensa-full-menu .dl-sub {
    display: none;
}
.download.imprensa-full-menu .dl-title {
    font-size: .9rem;
}
@media (max-width: 980px) {
    .download.imprensa-full-menu {
        margin-top: -30px;
        padding-bottom: 26px;
    }
    .download.imprensa-full-menu .downloads-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .download.imprensa-full-menu {
        margin-top: 0;
        padding: 18px 0 20px;
    }
    .download.imprensa-full-menu .downloads-strip {
        grid-template-columns: 1fr;
    }
}


/* Imprensa: menu interno do banner com visual moderno e sem botão CTA */
.imprensa-shortcuts {
    position: relative;
    z-index: 25;
    margin-top: -36px;
    padding-bottom: 34px;
}
.imprensa-shortcuts .imprensa-shortcuts-container {
    position: relative;
}
.imprensa-shortcuts .imprensa-shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.12);
}
.imprensa-shortcut-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    border: 1px solid #edf0f5;
    color: #263247;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.imprensa-shortcut-card:hover,
.imprensa-shortcut-card:focus {
    color: #e53935;
    border-color: rgba(229, 57, 53, 0.20);
    box-shadow: 0 14px 30px rgba(229, 57, 53, 0.12);
    transform: translateY(-2px);
    text-decoration: none;
}
.imprensa-shortcut-card.is-active {
    background: linear-gradient(135deg, #fff4f3 0%, #fff 100%);
    border-color: rgba(229, 57, 53, 0.28);
    box-shadow: 0 14px 30px rgba(229, 57, 53, 0.14);
}
.imprensa-shortcut-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f6f8fc;
    color: #6c778c;
    font-size: 1.15rem;
    transition: background .18s ease, color .18s ease;
}
.imprensa-shortcut-card:hover .imprensa-shortcut-icon,
.imprensa-shortcut-card:focus .imprensa-shortcut-icon,
.imprensa-shortcut-card.is-active .imprensa-shortcut-icon {
    background: #e53935;
    color: #fff;
}
.imprensa-shortcut-label {
    flex: 1 1 auto;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}
.imprensa-shortcut-arrow {
    flex: 0 0 auto;
    color: #a4adbd;
    font-size: .95rem;
    transition: transform .18s ease, color .18s ease;
}
.imprensa-shortcut-card:hover .imprensa-shortcut-arrow,
.imprensa-shortcut-card:focus .imprensa-shortcut-arrow,
.imprensa-shortcut-card.is-active .imprensa-shortcut-arrow {
    color: #e53935;
    transform: translateX(2px);
}
@media (max-width: 1199px) {
    .imprensa-shortcuts .imprensa-shortcuts-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 991px) {
    .imprensa-shortcuts {
        margin-top: -24px;
        padding-bottom: 26px;
    }
    .imprensa-shortcuts .imprensa-shortcuts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 14px;
        gap: 12px;
        border-radius: 18px;
    }
}
@media (max-width: 575px) {
    .imprensa-shortcuts {
        margin-top: 0;
        padding: 18px 0 22px;
    }
    .imprensa-shortcuts .imprensa-shortcuts-grid {
        grid-template-columns: 1fr;
        box-shadow: 0 12px 28px rgba(16, 24, 40, 0.10);
    }
    .imprensa-shortcut-card {
        min-height: 64px;
        padding: 12px 14px;
    }
    .imprensa-shortcut-label {
        font-size: .95rem;
    }
}


/* Menu interno padrão para banners das páginas internas */
.internal-shortcuts {
    position: relative;
    z-index: 25;
    margin-top: -36px;
    padding-bottom: 34px;
}
.internal-shortcuts .internal-shortcuts-container {
    position: relative;
}
.internal-shortcuts .internal-shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.12);
}
.internal-shortcuts.internal-shortcuts--inline {
    margin-top: 0;
    padding-bottom: 26px;
}
.internal-shortcuts.internal-shortcuts--inline .internal-shortcuts-grid {
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
    border: 1px solid #edf0f5;
}
.internal-shortcut-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    border: 1px solid #edf0f5;
    color: #263247;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.internal-shortcut-card:hover,
.internal-shortcut-card:focus {
    color: #e53935;
    border-color: rgba(229, 57, 53, 0.20);
    box-shadow: 0 14px 30px rgba(229, 57, 53, 0.12);
    transform: translateY(-2px);
}
.internal-shortcut-card.is-active,
.internal-shortcut-card.active {
    background: linear-gradient(135deg, #fff4f3 0%, #fff 100%);
    border-color: rgba(229, 57, 53, 0.28);
    box-shadow: 0 14px 30px rgba(229, 57, 53, 0.14);
    color: #e53935;
}
.internal-shortcut-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f6f8fc;
    color: #6c778c;
    font-size: 1.15rem;
    transition: background .18s ease, color .18s ease;
}
.internal-shortcut-card:hover .internal-shortcut-icon,
.internal-shortcut-card:focus .internal-shortcut-icon,
.internal-shortcut-card.is-active .internal-shortcut-icon,
.internal-shortcut-card.active .internal-shortcut-icon {
    background: #e53935;
    color: #fff;
}
.internal-shortcut-label {
    flex: 1 1 auto;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}
.internal-shortcut-arrow {
    flex: 0 0 auto;
    color: #a4adbd;
    font-size: .95rem;
    transition: transform .18s ease, color .18s ease;
}
.internal-shortcut-card:hover .internal-shortcut-arrow,
.internal-shortcut-card:focus .internal-shortcut-arrow,
.internal-shortcut-card.is-active .internal-shortcut-arrow,
.internal-shortcut-card.active .internal-shortcut-arrow {
    color: #e53935;
    transform: translateX(2px);
}
.associate-shortcuts {
    margin-bottom: 10px;
}
@media (max-width: 1199px) {
    .internal-shortcuts .internal-shortcuts-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 991px) {
    .internal-shortcuts {
        margin-top: -24px;
        padding-bottom: 26px;
    }
    .internal-shortcuts .internal-shortcuts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 14px;
        gap: 12px;
        border-radius: 18px;
    }
    .internal-shortcuts.internal-shortcuts--inline {
        margin-top: 0;
    }
}
@media (max-width: 575px) {
    .internal-shortcuts {
        margin-top: 0;
        padding: 18px 0 22px;
    }
    .internal-shortcuts .internal-shortcuts-grid {
        grid-template-columns: 1fr;
        box-shadow: 0 12px 28px rgba(16, 24, 40, 0.10);
    }
    .internal-shortcut-card {
        min-height: 64px;
        padding: 12px 14px;
    }
    .internal-shortcut-label {
        font-size: .95rem;
    }
}

/* HOTFIX: menus internos em uma única linha, com seta sempre dentro do card */
.imprensa-shortcuts .imprensa-shortcuts-grid,
.internal-shortcuts .internal-shortcuts-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: thin;
}
.imprensa-shortcuts .imprensa-shortcuts-grid::-webkit-scrollbar,
.internal-shortcuts .internal-shortcuts-grid::-webkit-scrollbar {
    height: 6px;
}
.imprensa-shortcuts .imprensa-shortcuts-grid::-webkit-scrollbar-thumb,
.internal-shortcuts .internal-shortcuts-grid::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.18);
    border-radius: 20px;
}
.imprensa-shortcut-card,
.internal-shortcut-card {
    position: relative !important;
    flex: 1 1 0 !important;
    min-width: 118px !important;
    max-width: none !important;
    gap: 9px !important;
    padding: 12px 26px 12px 12px !important;
    min-height: 70px !important;
}
.imprensa-shortcut-icon,
.internal-shortcut-icon {
    flex: 0 0 38px !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
}
.imprensa-shortcut-label,
.internal-shortcut-label {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    font-size: .88rem !important;
    line-height: 1.15 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}
.imprensa-shortcut-arrow,
.internal-shortcut-arrow {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
}
.imprensa-shortcut-card:hover .imprensa-shortcut-arrow,
.imprensa-shortcut-card:focus .imprensa-shortcut-arrow,
.imprensa-shortcut-card.is-active .imprensa-shortcut-arrow,
.internal-shortcut-card:hover .internal-shortcut-arrow,
.internal-shortcut-card:focus .internal-shortcut-arrow,
.internal-shortcut-card.is-active .internal-shortcut-arrow,
.internal-shortcut-card.active .internal-shortcut-arrow {
    transform: translateY(-50%) translateX(2px) !important;
}
@media (min-width: 1200px) {
    .imprensa-shortcut-card,
    .internal-shortcut-card {
        min-width: 0 !important;
    }
}
@media (max-width: 1199px) {
    .imprensa-shortcut-card,
    .internal-shortcut-card {
        flex: 0 0 150px !important;
    }
}
@media (max-width: 575px) {
    .imprensa-shortcut-card,
    .internal-shortcut-card {
        flex: 0 0 175px !important;
    }
}

/* HOTFIX: menus internos com ícone em cima e texto embaixo, mantendo tudo em uma linha */
.imprensa-shortcuts .imprensa-shortcuts-grid,
.internal-shortcuts .internal-shortcuts-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 14px !important;
}

.imprensa-shortcut-card,
.internal-shortcut-card {
    position: relative !important;
    flex: 1 1 0 !important;
    min-width: 112px !important;
    max-width: none !important;
    min-height: 96px !important;
    padding: 14px 24px 12px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
}

.imprensa-shortcut-icon,
.internal-shortcut-icon {
    flex: 0 0 auto !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
    font-size: 1.05rem !important;
    margin: 0 auto !important;
}

.imprensa-shortcut-label,
.internal-shortcut-label {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    flex: 0 1 auto !important;
    font-size: .86rem !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
}

.imprensa-shortcut-arrow,
.internal-shortcut-arrow {
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    font-size: .82rem !important;
}

.imprensa-shortcut-card:hover .imprensa-shortcut-arrow,
.imprensa-shortcut-card:focus .imprensa-shortcut-arrow,
.imprensa-shortcut-card.is-active .imprensa-shortcut-arrow,
.internal-shortcut-card:hover .internal-shortcut-arrow,
.internal-shortcut-card:focus .internal-shortcut-arrow,
.internal-shortcut-card.is-active .internal-shortcut-arrow,
.internal-shortcut-card.active .internal-shortcut-arrow {
    transform: translateY(-50%) translateX(2px) !important;
}

@media (min-width: 1200px) {
    .imprensa-shortcut-card,
    .internal-shortcut-card {
        min-width: 0 !important;
    }
}

@media (max-width: 1199px) {
    .imprensa-shortcut-card,
    .internal-shortcut-card {
        flex: 0 0 128px !important;
    }
}

@media (max-width: 575px) {
    .imprensa-shortcut-card,
    .internal-shortcut-card {
        flex: 0 0 132px !important;
        min-height: 94px !important;
    }
}

/* HOTFIX: menus internos maiores, sobre o banner, com ícone em cima e texto embaixo */
.imprensa-shortcuts,
.internal-shortcuts {
    position: relative !important;
    z-index: 35 !important;
    margin-top: -92px !important;
    padding: 0 0 44px !important;
}
.internal-shortcuts.internal-shortcuts--inline {
    margin-top: 0 !important;
    padding-bottom: 26px !important;
}
.imprensa-shortcuts .imprensa-shortcuts-container,
.internal-shortcuts .internal-shortcuts-container {
    width: calc(100% - 36px) !important;
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.imprensa-shortcuts .imprensa-shortcuts-grid,
.internal-shortcuts .internal-shortcuts-grid {
    width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 18px !important;
    border-radius: 24px !important;
    background: rgba(255,255,255,.98) !important;
    box-shadow: 0 22px 55px rgba(16,24,40,.15) !important;
    border: 1px solid rgba(237,240,245,.95) !important;
    scrollbar-width: thin;
}
.imprensa-shortcut-card,
.internal-shortcut-card {
    position: relative !important;
    flex: 1 1 0 !important;
    min-width: 132px !important;
    min-height: 122px !important;
    padding: 18px 28px 16px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 11px !important;
    text-align: center !important;
    border-radius: 20px !important;
}
.imprensa-shortcut-icon,
.internal-shortcut-icon {
    flex: 0 0 auto !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 16px !important;
    font-size: 1.25rem !important;
    margin: 0 auto !important;
}
.imprensa-shortcut-label,
.internal-shortcut-label {
    display: block !important;
    width: 100% !important;
    font-size: .98rem !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
}
.imprensa-shortcut-arrow,
.internal-shortcut-arrow {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    font-size: .92rem !important;
}
.imprensa-shortcut-card:hover .imprensa-shortcut-arrow,
.imprensa-shortcut-card:focus .imprensa-shortcut-arrow,
.imprensa-shortcut-card.is-active .imprensa-shortcut-arrow,
.internal-shortcut-card:hover .internal-shortcut-arrow,
.internal-shortcut-card:focus .internal-shortcut-arrow,
.internal-shortcut-card.is-active .internal-shortcut-arrow,
.internal-shortcut-card.active .internal-shortcut-arrow {
    transform: translateY(-50%) translateX(2px) !important;
}
@media (min-width: 1200px) {
    .imprensa-shortcut-card,
    .internal-shortcut-card {
        min-width: 130px !important;
    }
}
@media (max-width: 1199px) {
    .imprensa-shortcuts,
    .internal-shortcuts {
        margin-top: -76px !important;
        padding-bottom: 34px !important;
    }
    .imprensa-shortcut-card,
    .internal-shortcut-card {
        flex: 0 0 148px !important;
        min-height: 116px !important;
    }
}
@media (max-width: 767px) {
    .imprensa-shortcuts,
    .internal-shortcuts {
        margin-top: -44px !important;
        padding-bottom: 26px !important;
    }
    .imprensa-shortcuts .imprensa-shortcuts-container,
    .internal-shortcuts .internal-shortcuts-container {
        width: calc(100% - 24px) !important;
    }
    .imprensa-shortcuts .imprensa-shortcuts-grid,
    .internal-shortcuts .internal-shortcuts-grid {
        padding: 14px !important;
        gap: 12px !important;
    }
    .imprensa-shortcut-card,
    .internal-shortcut-card {
        flex: 0 0 138px !important;
        min-height: 108px !important;
    }
    .imprensa-shortcut-icon,
    .internal-shortcut-icon {
        width: 46px !important;
        height: 46px !important;
        font-size: 1.1rem !important;
    }
    .imprensa-shortcut-label,
    .internal-shortcut-label {
        font-size: .88rem !important;
    }
}

/* HOTFIX FINAL: menus internos em uma linha sem rolagem no desktop */
@media (min-width: 992px) {
    .imprensa-shortcuts .imprensa-shortcuts-grid,
    .internal-shortcuts .internal-shortcuts-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        justify-content: space-between !important;
        gap: 8px !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        padding: 12px !important;
    }

    .imprensa-shortcut-card,
    .internal-shortcut-card {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        max-width: none !important;
        min-height: 96px !important;
        padding: 12px 18px 10px 10px !important;
        border-radius: 16px !important;
        gap: 7px !important;
    }

    .imprensa-shortcut-icon,
    .internal-shortcut-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 13px !important;
        font-size: 1rem !important;
    }

    .imprensa-shortcut-label,
    .internal-shortcut-label {
        font-size: .78rem !important;
        line-height: 1.08 !important;
        font-weight: 800 !important;
        letter-spacing: -0.02em !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
        hyphens: auto !important;
    }

    .imprensa-shortcut-arrow,
    .internal-shortcut-arrow {
        right: 7px !important;
        font-size: .72rem !important;
    }
}

@media (min-width: 1200px) {
    .imprensa-shortcuts .imprensa-shortcuts-grid,
    .internal-shortcuts .internal-shortcuts-grid {
        gap: 10px !important;
        padding: 14px !important;
    }

    .imprensa-shortcut-card,
    .internal-shortcut-card {
        min-width: 0 !important;
        min-height: 104px !important;
        padding: 14px 20px 12px 12px !important;
    }

    .imprensa-shortcut-label,
    .internal-shortcut-label {
        font-size: .82rem !important;
    }
}

@media (max-width: 991px) {
    .imprensa-shortcuts .imprensa-shortcuts-grid,
    .internal-shortcuts .internal-shortcuts-grid {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        justify-content: flex-start !important;
    }

    .imprensa-shortcut-card,
    .internal-shortcut-card {
        flex: 0 0 122px !important;
        min-width: 122px !important;
        min-height: 98px !important;
        padding: 12px 18px 10px 10px !important;
    }
}

/* HOTFIX: remover seta '>' e diminuir altura dos cards dos menus internos */
.imprensa-shortcut-arrow,
.internal-shortcut-arrow,
.dl-arrow {
    display: none !important;
}

@media (min-width: 992px) {
    .imprensa-shortcuts .imprensa-shortcuts-grid,
    .internal-shortcuts .internal-shortcuts-grid {
        padding: 10px !important;
        gap: 8px !important;
    }

    .imprensa-shortcut-card,
    .internal-shortcut-card {
        min-height: 84px !important;
        padding: 10px 10px 8px !important;
        border-radius: 14px !important;
        gap: 6px !important;
    }

    .imprensa-shortcut-icon,
    .internal-shortcut-icon {
        width: 34px !important;
        height: 34px !important;
        border-radius: 10px !important;
        font-size: 0.92rem !important;
    }

    .imprensa-shortcut-label,
    .internal-shortcut-label {
        font-size: 0.76rem !important;
        line-height: 1.06 !important;
    }
}

@media (max-width: 991px) {
    .imprensa-shortcut-card,
    .internal-shortcut-card {
        min-height: 90px !important;
        padding: 10px 10px 8px !important;
        gap: 6px !important;
    }

    .imprensa-shortcut-icon,
    .internal-shortcut-icon {
        width: 36px !important;
        height: 36px !important;
    }
}

/* HOTFIX MOBILE: menus internos sem rolagem horizontal, em grade fácil de usar */
@media (max-width: 991px) {
    .imprensa-shortcuts,
    .internal-shortcuts {
        margin-top: -34px !important;
        padding: 0 0 24px !important;
    }

    .imprensa-shortcuts .imprensa-shortcuts-container,
    .internal-shortcuts .internal-shortcuts-container {
        width: calc(100% - 22px) !important;
        max-width: 100% !important;
    }

    .imprensa-shortcuts .imprensa-shortcuts-grid,
    .internal-shortcuts .internal-shortcuts-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 10px !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        padding: 12px !important;
        border-radius: 18px !important;
        scrollbar-width: none !important;
    }

    .imprensa-shortcuts .imprensa-shortcuts-grid::-webkit-scrollbar,
    .internal-shortcuts .internal-shortcuts-grid::-webkit-scrollbar {
        display: none !important;
    }

    .imprensa-shortcut-card,
    .internal-shortcut-card {
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        flex: initial !important;
        min-height: 82px !important;
        padding: 9px 6px 8px !important;
        border-radius: 14px !important;
        gap: 5px !important;
    }

    .imprensa-shortcut-icon,
    .internal-shortcut-icon {
        width: 34px !important;
        height: 34px !important;
        border-radius: 10px !important;
        font-size: .9rem !important;
    }

    .imprensa-shortcut-label,
    .internal-shortcut-label {
        font-size: .72rem !important;
        line-height: 1.08 !important;
        letter-spacing: -0.02em !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
    }
}

@media (max-width: 575px) {
    .imprensa-shortcuts,
    .internal-shortcuts {
        margin-top: -24px !important;
        padding-bottom: 22px !important;
    }

    .imprensa-shortcuts .imprensa-shortcuts-grid,
    .internal-shortcuts .internal-shortcuts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
        padding: 10px !important;
    }

    .imprensa-shortcut-card,
    .internal-shortcut-card {
        min-height: 78px !important;
    }

    .imprensa-shortcut-label,
    .internal-shortcut-label {
        font-size: .74rem !important;
    }
}

@media (max-width: 360px) {
    .imprensa-shortcut-label,
    .internal-shortcut-label {
        font-size: .68rem !important;
    }
}

/* Vídeos - Admin + Frontend */
.home-videos-section,
.videos-page-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
    position: relative;
}

.videos-intro-content {
    margin: -8px auto 42px;
    padding: 0 10px;
    text-align: justify;
    color: #4b5563;
    font-size: 1.08rem;
    line-height: 1.75;
}
.videos-intro-content p {
    margin: 0 auto 16px;
}
.videos-youtube-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 13px 24px;
    border-radius: 999px;
    background: #d71920;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 28px rgba(215, 25, 32, .22);
    transition: transform .18s ease, box-shadow .18s ease;
}
.videos-youtube-button:hover {
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(215, 25, 32, .3);
}
.home-videos-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .8fr);
    gap: 28px;
    align-items: stretch;
}
.home-video-feature,
.video-feature-card,
.video-detail-card,
.video-card-modern,
.home-videos-empty,
.video-empty-state {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    overflow: hidden;
    text-decoration: none;
    color: #172033;
}
.home-video-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
}
.home-video-feature-thumb,
.video-feature-media,
.video-card-thumb,
.home-video-small-thumb,
.video-player-box {
    position: relative;
    background: #101828;
    overflow: hidden;
}
.home-video-feature-thumb img,
.video-feature-media img,
.video-card-thumb img,
.home-video-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}
.home-video-feature:hover img,
.video-feature-card:hover img,
.video-card-modern:hover img,
.home-video-small:hover img {
    transform: scale(1.04);
}
.home-video-feature-thumb {
    min-height: 360px;
}
.home-video-feature-content,
.video-feature-content,
.video-detail-content,
.video-card-body {
    padding: 30px;
}
.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffe9e8;
    color: #d71920;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 14px;
}
.home-video-feature-content h3,
.video-feature-content h2,
.video-detail-content h2,
.video-card-body h3 {
    margin: 0 0 12px;
    font-weight: 900;
    line-height: 1.15;
    color: #172033;
}
.home-video-feature-content h3,
.video-feature-content h2,
.video-detail-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.home-video-feature-content p,
.video-feature-content p,
.video-card-body p,
.video-description {
    color: #596579;
    line-height: 1.65;
}
.video-watch-link,
.home-video-all,
.video-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-weight: 800;
    color: #d71920;
    text-decoration: none;
}
.home-video-play,
.video-play-float,
.video-card-play,
.home-video-small-thumb span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d71920;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 18px 35px rgba(215, 25, 32, .35);
}
.video-card-play,
.home-video-small-thumb span {
    width: 46px;
    height: 46px;
    font-size: 1.35rem;
}
.home-video-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.home-video-small {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 104px;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e7ecf3;
    text-decoration: none;
    color: #172033;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.home-video-small:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 25, 32, .25);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}
.home-video-small-thumb {
    height: 80px;
    border-radius: 14px;
}
.home-video-small strong {
    display: block;
    font-size: .98rem;
    line-height: 1.25;
    margin-bottom: 6px;
}
.home-video-small small {
    color: #7a8494;
    font-weight: 700;
}
.home-video-all {
    justify-content: center;
    min-height: 54px;
    border-radius: 16px;
    background: #d71920;
    color: #fff;
    margin-top: 2px;
    box-shadow: 0 16px 28px rgba(215, 25, 32, .25);
}
.home-videos-empty,
.video-empty-state {
    padding: 42px;
    text-align: center;
}
.home-videos-empty i,
.video-empty-state i {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #d71920;
    background: #ffe9e8;
    font-size: 2rem;
    margin-bottom: 16px;
}
.home-videos-empty a {
    display: inline-flex;
    margin-top: 14px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #d71920;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}
.video-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    margin-bottom: 34px;
}
.video-feature-media {
    min-height: 380px;
}
.videos-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.video-card-modern {
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}
.video-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
    text-decoration: none;
    color: #172033;
}
.video-card-thumb {
    height: 210px;
}
.video-card-body {
    padding: 22px;
}
.video-card-body h3 {
    font-size: 1.22rem;
}
.video-detail-card {
    overflow: visible;
}
.video-player-box {
    aspect-ratio: 16 / 9;
    border-radius: 24px 24px 0 0;
}
.video-player-box iframe,
.video-player-box video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #101828;
}
.video-empty-player,
.video-no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #111827 0%, #334155 100%);
}
.video-no-thumb i {
    font-size: 3rem;
    opacity: .8;
}
.video-related-title {
    margin-top: 54px;
}
.pagination-wrapper {
    margin-top: 34px;
    text-align: center;
}
@media (max-width: 1024px) {
    .home-videos-layout,
    .home-video-feature,
    .video-feature-card {
        grid-template-columns: 1fr;
    }
    .home-video-feature-thumb,
    .video-feature-media {
        min-height: 300px;
    }
    .videos-grid-modern {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .home-videos-section,
    .videos-page-section {
        padding: 46px 0;
    }
    .videos-intro-content {
        margin: -4px auto 30px;
        padding: 0;
        font-size: 1rem;
        line-height: 1.65;
        text-align: left;
    }
    .videos-youtube-button {
        width: 100%;
        padding: 13px 18px;
    }
    .home-video-feature-content,
    .video-feature-content,
    .video-detail-content,
    .video-card-body {
        padding: 22px;
    }
    .home-video-feature-thumb,
    .video-feature-media {
        min-height: 220px;
    }
    .home-video-small {
        grid-template-columns: 96px minmax(0, 1fr);
        min-height: 88px;
    }
    .home-video-small-thumb {
        height: 66px;
    }
    .videos-grid-modern {
        grid-template-columns: 1fr;
    }
    .video-card-thumb {
        height: 190px;
    }
}


/* ==========================================================================
   SIAMFESP - CAMADA FINAL DE RESPONSIVIDADE DO FRONTEND
   Objetivo: manter o mesmo padrão visual em desktop, tablet e celular.
   ========================================================================== */

/* Base segura contra estouro lateral */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    -webkit-text-size-adjust: 100%;
}

img,
video,
iframe,
embed,
object {
    max-width: 100%;
}

img,
video {
    height: auto;
}

iframe {
    border: 0;
}

.container,
.container-noticias,
.container-videos-cta-inner,
.footer-container,
.internal-page-container,
.imprensa-shortcuts-container,
.internal-shortcuts-container {
    width: min(100% - 32px, 1240px);
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

main {
    min-width: 0;
}

/* Tipografia responsiva padrão */
.section-title,
.events-section-header .section-title {
    overflow-wrap: anywhere;
}

.article-content,
.internal-modern-card,
.article-page-card,
.content-page-section,
.partner-card,
.video-detail-card {
    overflow-wrap: anywhere;
}

/* Header e menu principal */
@media (max-width: 1180px) {
    .brand-area .slogan {
        font-size: .85rem !important;
        max-width: 300px;
        white-space: normal !important;
        line-height: 1.2;
    }

    .search-bar-header {
        width: 180px !important;
    }

    .acesso-restrito-btn,
    .site-account-chip {
        min-width: auto !important;
    }
}

@media (max-width: 1024px) {
    header {
        position: relative !important;
        background: #fff !important;
        box-shadow: 0 8px 24px rgba(16, 24, 40, .08) !important;
    }

    .header-bg-wrapper {
        display: none !important;
    }

    .header-top {
        height: auto !important;
        min-height: 78px !important;
        padding: 10px 70px 10px 18px !important;
        background: #fff !important;
        border-bottom: 3px solid #d71920 !important;
    }

    .brand-area {
        min-width: 0 !important;
        gap: 10px !important;
    }

    .brand-area .logo img {
        max-height: 54px !important;
    }

    .brand-area .slogan {
        color: #555 !important;
        font-size: .82rem !important;
        max-width: 360px !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        position: absolute !important;
        top: 50% !important;
        right: 18px !important;
        transform: translateY(-50%) !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 12px !important;
        background: #f5f7fb !important;
        border: 1px solid #e4e8f0 !important;
    }

    body.menu-aberto .mobile-menu-toggle {
        position: fixed !important;
        top: 24px !important;
        transform: none !important;
        z-index: 11010 !important;
    }

    .actions-area {
        display: none !important;
    }

    .nav-bar-wrapper {
        display: none !important;
    }

    body.menu-aberto .nav-bar-wrapper {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100dvh !important;
        background: #fff !important;
        z-index: 11000 !important;
        padding: 86px 18px 24px !important;
        overflow-y: auto !important;
    }

    body.menu-aberto .main-menu {
        width: 100% !important;
    }

    body.menu-aberto .main-menu > ul,
    body.menu-aberto .main-menu ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    body.menu-aberto .main-menu li {
        width: 100% !important;
        margin: 0 !important;
        border: 0 !important;
        position: relative !important;
    }

    body.menu-aberto .main-menu a {
        width: 100% !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 13px 16px !important;
        border-radius: 14px !important;
        background: #f7f8fb !important;
        color: #263247 !important;
        font-size: 1rem !important;
        font-weight: 800 !important;
        text-align: left !important;
        text-decoration: none !important;
    }

    body.menu-aberto .main-menu li > ul {
        position: static !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 8px 0 4px !important;
        padding: 0 0 0 12px !important;
        background: transparent !important;
        box-shadow: none !important;
        border: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    body.menu-aberto .main-menu li > ul a {
        min-height: 42px !important;
        padding: 10px 14px !important;
        background: #fff4f3 !important;
        border: 1px solid rgba(229, 57, 53, .14) !important;
        color: #4b5565 !important;
        font-size: .92rem !important;
        font-weight: 700 !important;
    }
}

@media (max-width: 575px) {
    .header-top {
        padding-left: 14px !important;
        padding-right: 64px !important;
    }

    .brand-area .logo img {
        max-height: 48px !important;
    }

    .brand-area .slogan {
        display: none !important;
    }

    .mobile-menu-toggle {
        right: 14px !important;
        width: 42px !important;
        height: 42px !important;
    }
}

/* Banner / hero */
.banner-container,
.hero-slide {
    overflow: hidden;
}

@media (min-width: 1025px) {
    .banner-content {
        max-width: 760px;
    }
}

@media (max-width: 1024px) {
    .banner-container {
        min-height: 420px !important;
    }

    .hero-slide {
        min-height: 420px !important;
        background-position: center center !important;
    }

    .banner-content {
        width: min(100% - 32px, 860px) !important;
        margin: 0 auto !important;
        padding-top: 74px !important;
        text-align: left !important;
    }

    .banner-content h1,
    .banner-content h1 strong {
        font-size: clamp(2.2rem, 6vw, 4rem) !important;
        line-height: .98 !important;
    }

    .banner-content p {
        max-width: 640px !important;
        padding: 0 !important;
        font-size: 1rem !important;
    }

    .hero-nav {
        right: 24px !important;
        bottom: 26px !important;
        transform: none !important;
    }

    .hero-btn {
        width: 46px !important;
        height: 46px !important;
    }
}

@media (max-width: 767px) {
    .banner-container {
        min-height: 360px !important;
    }

    .hero-slide {
        min-height: 360px !important;
    }

    .banner-content {
        padding-top: 56px !important;
        text-align: left !important;
    }

    .banner-content h1,
    .banner-content h1 strong {
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }

    .banner-content .divider,
    .divider {
        width: 72px !important;
        height: 4px !important;
        margin-left: 0 !important;
    }

    .hero-nav {
        left: 16px !important;
        right: auto !important;
        bottom: 20px !important;
        gap: 10px !important;
    }

    .hero-btn {
        width: 42px !important;
        height: 42px !important;
    }
}

/* Menus internos sobre banner: desktop em linha, mobile em grade sem rolagem */
.imprensa-shortcuts,
.internal-shortcuts {
    overflow: visible !important;
}

.imprensa-shortcuts .imprensa-shortcuts-grid,
.internal-shortcuts .internal-shortcuts-grid {
    overflow: visible !important;
    scrollbar-width: none !important;
}

.imprensa-shortcuts .imprensa-shortcuts-grid::-webkit-scrollbar,
.internal-shortcuts .internal-shortcuts-grid::-webkit-scrollbar {
    display: none !important;
}

.imprensa-shortcut-arrow,
.internal-shortcut-arrow,
.dl-arrow {
    display: none !important;
}

@media (min-width: 1025px) {
    .imprensa-shortcuts,
    .internal-shortcuts {
        margin-top: -64px !important;
        padding-bottom: 42px !important;
    }

    .imprensa-shortcuts .imprensa-shortcuts-grid,
    .internal-shortcuts .internal-shortcuts-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        padding: 12px !important;
        border-radius: 22px !important;
    }

    .imprensa-shortcut-card,
    .internal-shortcut-card {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        min-height: 86px !important;
        padding: 10px 8px 9px !important;
        gap: 6px !important;
        border-radius: 15px !important;
    }

    .imprensa-shortcut-icon,
    .internal-shortcut-icon {
        width: 34px !important;
        height: 34px !important;
        border-radius: 11px !important;
        font-size: .94rem !important;
    }

    .imprensa-shortcut-label,
    .internal-shortcut-label {
        font-size: clamp(.68rem, .72vw, .84rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.02em !important;
        text-align: center !important;
        overflow-wrap: anywhere !important;
    }
}

@media (max-width: 1024px) {
    .imprensa-shortcuts,
    .internal-shortcuts {
        margin-top: -44px !important;
        padding: 0 0 30px !important;
    }

    .imprensa-shortcuts .imprensa-shortcuts-container,
    .internal-shortcuts .internal-shortcuts-container {
        width: min(100% - 28px, 920px) !important;
    }

    .imprensa-shortcuts .imprensa-shortcuts-grid,
    .internal-shortcuts .internal-shortcuts-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 10px !important;
        padding: 12px !important;
        border-radius: 20px !important;
    }

    .imprensa-shortcut-card,
    .internal-shortcut-card {
        min-width: 0 !important;
        min-height: 86px !important;
        padding: 10px 8px 9px !important;
        gap: 6px !important;
        border-radius: 15px !important;
    }

    .imprensa-shortcut-icon,
    .internal-shortcut-icon {
        width: 34px !important;
        height: 34px !important;
        border-radius: 11px !important;
        font-size: .95rem !important;
    }

    .imprensa-shortcut-label,
    .internal-shortcut-label {
        font-size: .78rem !important;
        line-height: 1.08 !important;
    }
}

@media (max-width: 575px) {
    .imprensa-shortcuts,
    .internal-shortcuts {
        margin-top: -26px !important;
        padding-bottom: 22px !important;
    }

    .imprensa-shortcuts .imprensa-shortcuts-container,
    .internal-shortcuts .internal-shortcuts-container {
        width: calc(100% - 20px) !important;
    }

    .imprensa-shortcuts .imprensa-shortcuts-grid,
    .internal-shortcuts .internal-shortcuts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        padding: 10px !important;
        border-radius: 18px !important;
    }

    .imprensa-shortcut-card,
    .internal-shortcut-card {
        min-height: 78px !important;
        padding: 9px 6px 8px !important;
        border-radius: 14px !important;
    }

    .imprensa-shortcut-icon,
    .internal-shortcut-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: .88rem !important;
    }

    .imprensa-shortcut-label,
    .internal-shortcut-label {
        font-size: .72rem !important;
        line-height: 1.05 !important;
    }
}

/* Grids da Home */
@media (max-width: 1100px) {
    .grid-noticias-iba,
    .grid-mista-agenda-parceiro,
    .home-videos-layout {
        grid-template-columns: 1fr !important;
    }

    .banners-grid,
    .grid-eventos-home,
    .content-card-grid,
    .partners-grid,
    .videos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .col-parceiro,
    .col-agenda {
        min-width: 0 !important;
    }
}

@media (max-width: 767px) {
    .quick-links-section,
    .secao-mista-agenda-parceiro,
    .home-videos-section,
    .associadas-section,
    .content-page-section,
    .internal-page-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .banners-grid,
    .grid-eventos-home,
    .content-card-grid,
    .partners-grid,
    .videos-grid,
    .home-video-list {
        grid-template-columns: 1fr !important;
    }

    .grid-noticias-iba,
    .rows-container {
        gap: 18px !important;
    }

    .card-news-horizontal {
        display: grid !important;
        grid-template-columns: 112px minmax(0, 1fr) !important;
        gap: 14px !important;
        align-items: center !important;
        min-width: 0 !important;
    }

    .card-news-img {
        width: 112px !important;
        height: 86px !important;
        min-width: 112px !important;
        border-radius: 12px !important;
        object-fit: cover !important;
    }

    .card-news-body {
        min-width: 0 !important;
    }

    .card-news-titulo {
        font-size: 1rem !important;
        line-height: 1.25 !important;
    }

    .card-news-date,
    .card-news-tag {
        font-size: .78rem !important;
    }
}

@media (max-width: 420px) {
    .card-news-horizontal {
        grid-template-columns: 96px minmax(0, 1fr) !important;
        gap: 12px !important;
    }

    .card-news-img {
        width: 96px !important;
        height: 76px !important;
        min-width: 96px !important;
    }
}

/* Agenda / cards */
.agenda-list-compact,
.home-agenda-pagination {
    max-width: 100%;
}

@media (max-width: 767px) {
    .agenda-item,
    .home-agenda-page-item {
        gap: 12px !important;
        padding: 14px !important;
        align-items: center !important;
    }

    .mini-date {
        width: 52px !important;
        min-width: 52px !important;
        height: 52px !important;
    }

    .agenda-info {
        min-width: 0 !important;
    }

    .agenda-info h3,
    .agenda-info .agenda-title {
        font-size: .98rem !important;
        line-height: 1.22 !important;
    }

    .home-agenda-pagination {
        justify-content: center !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
    }
}

/* Parcerias */
@media (max-width: 1024px) {
    .partners-toolbar,
    .parcerias-toolbar,
    .partner-search-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .partner-count,
    .parcerias-count {
        align-self: flex-start !important;
    }
}

@media (max-width: 767px) {
    .partner-card,
    .parcerias-card,
    .parceria-card {
        border-radius: 18px !important;
    }

    .partner-card__image,
    .parcerias-card__image,
    .partner-logo-area,
    .partner-card-image {
        min-height: 170px !important;
        height: 170px !important;
    }

    .partner-card__content,
    .parcerias-card__content,
    .partner-content {
        padding: 18px !important;
    }
}

/* Vídeos */
.video-embed,
.video-responsive,
.home-video-feature-thumb {
    position: relative;
    width: 100%;
}

.video-embed iframe,
.video-responsive iframe,
.video-embed video,
.video-responsive video,
.home-video-feature-thumb iframe,
.home-video-feature-thumb video {
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 767px) {
    .home-video-feature {
        grid-template-columns: 1fr !important;
    }

    .home-video-feature-content {
        padding: 18px !important;
    }

    .home-video-small {
        grid-template-columns: 100px minmax(0, 1fr) !important;
        gap: 12px !important;
    }

    .home-video-small-thumb {
        width: 100px !important;
        min-width: 100px !important;
        height: 70px !important;
    }
}

/* Páginas internas / conteúdo vindo do CMS */
@media (max-width: 991px) {
    .internal-page-container,
    .container-noticias.internal-page-container {
        width: min(100% - 28px, 900px) !important;
    }

    .internal-modern-card,
    .article-page-card,
    .content-page-card,
    .article-page-card--detail {
        padding: 28px !important;
        border-radius: 22px !important;
    }

    .article-main-figure img,
    .article-content img {
        max-width: 100% !important;
        height: auto !important;
    }

    .article-content table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

@media (max-width: 575px) {
    .internal-modern-card,
    .article-page-card,
    .content-page-card,
    .article-page-card--detail {
        padding: 20px !important;
        border-radius: 18px !important;
    }

    .article-content,
    .article-content p,
    .content-page-section p {
        font-size: 1rem !important;
        line-height: 1.68 !important;
    }

    .article-content ul,
    .article-content ol {
        padding-left: 20px !important;
    }
}

/* Formulários */
input,
select,
textarea,
button {
    max-width: 100%;
}

@media (max-width: 767px) {
    form,
    .contact-form,
    .associe-form,
    .area-form-inter,
    .newsletter-form {
        max-width: 100% !important;
    }

    input,
    select,
    textarea {
        font-size: 16px !important; /* evita zoom automático no iOS */
    }

    .area-form-inter fieldset,
    .associe-form-card,
    .contact-card {
        padding: 20px !important;
        border-radius: 18px !important;
    }
}

/* Footer */
@media (max-width: 1100px) {
    .footer-bottom-nav {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 28px !important;
    }

    .footer-top-row {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) {
    .site-footer {
        text-align: center !important;
    }

    .footer-container {
        width: calc(100% - 28px) !important;
    }

    .footer-top-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .footer-logo-area,
    .footer-contact-area {
        align-items: center !important;
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border-right: 0 !important;
    }

    .footer-bottom-nav {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .nav-column {
        text-align: center !important;
    }

    .nav-column ul {
        display: grid !important;
        gap: 8px !important;
    }

    .newsletter-form input[type="email"],
    .newsletter-form button {
        min-height: 44px !important;
        border-radius: 10px !important;
    }

    .footer-legal-bar,
    .footer-legal-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }
}

/* LGPD / cookies */
@media (max-width: 767px) {
    .lgpd-cookie-banner {
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
        width: auto !important;
        max-width: none !important;
    }

    .lgpd-cookie-card {
        border-radius: 18px !important;
        padding: 16px !important;
    }

    .lgpd-cookie-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .lgpd-cookie-actions button,
    .lgpd-cookie-actions a {
        width: 100% !important;
        justify-content: center !important;
    }

    .whatsapp-float {
        width: 54px !important;
        height: 54px !important;
        right: 16px !important;
        bottom: 16px !important;
        font-size: 1.7rem !important;
    }

    .lgpd-cookie-banner.is-visible ~ .whatsapp-float,
    body:has(.lgpd-cookie-banner.is-visible) .whatsapp-float {
        bottom: 128px !important;
    }
}

/* Títulos em telas pequenas */
@media (max-width: 575px) {
    .section-title,
    .events-section-header .section-title {
        font-size: clamp(1.85rem, 9vw, 2.5rem) !important;
        line-height: 1.08 !important;
        letter-spacing: .04em !important;
    }

    .section-subtitle,
    .events-section-header .section-subtitle {
        font-size: .98rem !important;
        padding: 0 !important;
    }
}


.siamfesp-responsive-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    background: #111827;
    margin: 24px 0;
}

.siamfesp-responsive-media iframe,
.siamfesp-responsive-media video {
    width: 100% !important;
    height: 100% !important;
    display: block;
}


/* ==========================================================================
   HOTFIX MOBILE SIAMFESP - cards, cookies e prevenção de estouro horizontal
   ========================================================================== */

@media (max-width: 767px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    body > * {
        max-width: 100vw;
    }

    main,
    section,
    .container,
    .container-noticias,
    .content-page-section,
    .internal-page-section,
    .quick-links-section,
    .secao-mista-agenda-parceiro,
    .home-videos-section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .container,
    .container-noticias,
    .container-videos-cta-inner,
    .internal-page-container,
    .footer-container {
        width: calc(100% - 24px) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /*
     * Home / Destaques:
     * no celular fica card vertical para impedir sobreposição de imagem,
     * data, selo de categoria e título.
     */
    .grid-noticias-iba,
    .rows-container,
    .home-news-grid,
    .destaques-news-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .card-news-horizontal,
    .grid-noticias-iba .card-news-horizontal,
    .rows-container .card-news-horizontal {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 0 18px !important;
        overflow: hidden !important;
        border-radius: 18px !important;
        background: #fff !important;
        box-shadow: 0 12px 30px rgba(16, 24, 40, .10) !important;
        text-align: left !important;
    }

    .card-news-horizontal .card-news-img,
    .grid-noticias-iba .card-news-img,
    .rows-container .card-news-img,
    .card-news-img {
        display: block !important;
        float: none !important;
        position: relative !important;
        inset: auto !important;
        transform: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: 184px !important;
        min-height: 184px !important;
        max-height: 184px !important;
        object-fit: cover !important;
        object-position: center center !important;
        border-radius: 18px 18px 0 0 !important;
        margin: 0 !important;
        z-index: 1 !important;
    }

    .card-news-horizontal .card-news-body,
    .grid-noticias-iba .card-news-body,
    .rows-container .card-news-body,
    .card-news-body {
        display: block !important;
        position: relative !important;
        inset: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 14px 16px 18px !important;
        margin: 0 !important;
        text-align: left !important;
        background: #fff !important;
        z-index: 2 !important;
    }

    .card-news-date {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        position: static !important;
        transform: none !important;
        margin: 0 0 8px !important;
        color: #6b7280 !important;
        font-size: .86rem !important;
        line-height: 1.25 !important;
        text-align: left !important;
    }

    .card-news-tag,
    .home-category-title {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: static !important;
        transform: none !important;
        max-width: 100% !important;
        width: auto !important;
        margin: 0 0 9px !important;
        padding: 6px 10px !important;
        border-radius: 999px !important;
        white-space: normal !important;
        text-align: left !important;
        font-size: .72rem !important;
        line-height: 1.1 !important;
        z-index: 3 !important;
    }

    .card-news-titulo,
    .card-news-title,
    .card-news-horizontal h2,
    .card-news-horizontal h3 {
        display: block !important;
        position: static !important;
        transform: none !important;
        max-width: 100% !important;
        margin: 0 !important;
        color: #111827 !important;
        font-size: 1.08rem !important;
        line-height: 1.28 !important;
        letter-spacing: 0 !important;
        text-align: left !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }

    .card-news-horizontal a,
    .card-news-horizontal a:hover {
        text-decoration: none !important;
    }

    /*
     * Cards/eventos/listas em geral: impedir que texto ou imagens saiam do box.
     */
    .agenda-item,
    .home-agenda-page-item,
    .card-evento-vertical,
    .home-video-small,
    .partner-card,
    .parcerias-card,
    .content-link-card {
        max-width: 100% !important;
        overflow: hidden !important;
    }
}

@media (max-width: 420px) {
    .card-news-horizontal .card-news-img,
    .grid-noticias-iba .card-news-img,
    .rows-container .card-news-img,
    .card-news-img {
        height: 166px !important;
        min-height: 166px !important;
        max-height: 166px !important;
    }

    .card-news-horizontal .card-news-body,
    .grid-noticias-iba .card-news-body,
    .rows-container .card-news-body,
    .card-news-body {
        padding: 13px 14px 16px !important;
    }

    .card-news-titulo,
    .card-news-title,
    .card-news-horizontal h2,
    .card-news-horizontal h3 {
        font-size: 1rem !important;
        line-height: 1.28 !important;
    }
}

/* Cookie/LGPD: no mobile o box fica inteiro dentro da tela */
@media (max-width: 767px) {
    .lgpd-cookie-banner,
    .lgpd-cookie-banner.is-visible,
    .privacy-bar-clean,
    .privacy-bar-clean.show-bar,
    .cookie-banner,
    .cookie-consent {
        position: fixed !important;
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
        top: auto !important;
        width: auto !important;
        max-width: calc(100vw - 20px) !important;
        min-width: 0 !important;
        margin: 0 !important;
        transform: none !important;
        box-sizing: border-box !important;
        z-index: 12000 !important;
    }

    .lgpd-cookie-card,
    .privacy-bar-clean,
    .cookie-card,
    .cookie-consent-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        max-height: calc(100dvh - 92px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .lgpd-cookie-main,
    .lgpd-cookie-content,
    .lgpd-cookie-text {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-wrap: anywhere !important;
        text-align: left !important;
    }

    .lgpd-cookie-card h2,
    .lgpd-cookie-card h3,
    .privacy-bar-clean h2,
    .privacy-bar-clean h3 {
        font-size: 1.05rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .lgpd-cookie-card p,
    .privacy-bar-clean p,
    .cookie-card p {
        font-size: .9rem !important;
        line-height: 1.45 !important;
        margin-bottom: 10px !important;
    }

    .lgpd-cookie-actions,
    .privacy-actions,
    .cookie-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 9px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .lgpd-cookie-actions button,
    .lgpd-cookie-actions a,
    .privacy-actions button,
    .privacy-actions a,
    .cookie-actions button,
    .cookie-actions a,
    .privacy-bar-clean button,
    .privacy-bar-clean .btn {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 42px !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: normal !important;
        text-align: center !important;
        border-radius: 999px !important;
        box-sizing: border-box !important;
    }

    .whatsapp-float {
        width: 52px !important;
        height: 52px !important;
        right: 14px !important;
        bottom: 14px !important;
        z-index: 9000 !important;
    }

    body.lgpd-open .whatsapp-float,
    body.cookie-open .whatsapp-float {
        display: none !important;
    }
}

/* Header mobile: manter limpo e sem empurrar conteúdo lateral */
@media (max-width: 767px) {
    header,
    .header-top,
    .nav-bar-wrapper {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .header-top {
        min-height: 76px !important;
    }

    .brand-area {
        max-width: calc(100vw - 96px) !important;
    }

    .brand-area .logo img {
        max-width: 140px !important;
        height: auto !important;
    }
}


/* ==========================================================================
   HOTFIX MOBILE V2 - Destaques da Home com imagem preenchendo o card
   ========================================================================== */

@media (max-width: 767px) {
    .grid-noticias-iba {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .grid-noticias-iba .card-news-horizontal,
    .card-news-horizontal {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        border-radius: 20px !important;
        background: #fff !important;
        box-shadow: 0 14px 32px rgba(16, 24, 40, .10) !important;
        text-decoration: none !important;
    }

    /*
     * Importante:
     * .card-news-img é uma DIV, não a imagem.
     * Por isso ela precisa ocupar 100% do card e o IMG interno também.
     */
    .grid-noticias-iba .card-news-horizontal .card-news-img,
    .card-news-horizontal .card-news-img,
    .card-news-img {
        display: block !important;
        position: relative !important;
        float: none !important;
        inset: auto !important;
        transform: none !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        border-radius: 20px 20px 0 0 !important;
        background: #f3f4f6 !important;
    }

    .grid-noticias-iba .card-news-horizontal .card-news-img img,
    .card-news-horizontal .card-news-img img,
    .card-news-img img {
        display: block !important;
        position: static !important;
        float: none !important;
        transform: none !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }

    .grid-noticias-iba .card-news-horizontal .card-news-body,
    .card-news-horizontal .card-news-body,
    .card-news-body {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 14px 16px 18px !important;
        margin: 0 !important;
        background: #fff !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }

    .grid-noticias-iba .card-news-date,
    .card-news-date {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        position: static !important;
        width: 100% !important;
        margin: 0 0 8px !important;
        padding: 0 !important;
        color: #6b7280 !important;
        font-size: .9rem !important;
        line-height: 1.25 !important;
        white-space: normal !important;
        text-align: left !important;
    }

    .grid-noticias-iba .card-news-tag,
    .grid-noticias-iba .home-category-title,
    .card-news-tag,
    .home-category-title {
        display: inline-flex !important;
        position: static !important;
        width: auto !important;
        max-width: 100% !important;
        margin: 0 0 10px !important;
        padding: 6px 11px !important;
        border-radius: 999px !important;
        font-size: .72rem !important;
        line-height: 1.1 !important;
        white-space: normal !important;
        text-align: left !important;
    }

    .grid-noticias-iba .card-news-titulo,
    .card-news-titulo {
        display: block !important;
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #111827 !important;
        font-size: 1.08rem !important;
        line-height: 1.28 !important;
        text-align: left !important;
        letter-spacing: 0 !important;
        overflow-wrap: anywhere !important;
    }

    /* Remove qualquer respiro exagerado acima dos cards no mobile */
    .container-noticias {
        width: calc(100% - 24px) !important;
        max-width: calc(100% - 24px) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 420px) {
    .grid-noticias-iba .card-news-horizontal .card-news-img,
    .card-news-horizontal .card-news-img,
    .card-news-img {
        height: 184px !important;
        min-height: 184px !important;
        max-height: 184px !important;
    }

    .grid-noticias-iba .card-news-horizontal .card-news-body,
    .card-news-horizontal .card-news-body,
    .card-news-body {
        padding: 13px 14px 16px !important;
    }

    .grid-noticias-iba .card-news-titulo,
    .card-news-titulo {
        font-size: 1.02rem !important;
        line-height: 1.28 !important;
    }
}


span.imprensa-shortcut-label {
    text-transform: uppercase;
}
span.internal-shortcut-label {
    text-transform: uppercase;
}
/* =========================================================
   Correção cards internos administrados pelo CMS
   Páginas como /servicos/dados-estatisticos usam:
   <div class="box-internos box-dois"> ... </div>
   Mantém 3 cards por linha no desktop, todos com a mesma largura,
   imagens padronizadas e botão alinhado no final.
   ========================================================= */
.article-content .box-internos.box-dois,
.box-internos.box-dois {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 30px !important;
    width: 100% !important;
    margin: 34px 0 0 !important;
    align-items: stretch !important;
}

.article-content .box-internos.box-dois > a,
.box-internos.box-dois > a {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    color: inherit !important;
    text-decoration: none !important;
}

.article-content .box-internos.box-dois > a:nth-child(3n),
.box-internos.box-dois > a:nth-child(3n) {
    margin-right: 0 !important;
}

.article-content .box-internos.box-dois .thumb,
.box-internos.box-dois .thumb {
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
    margin: 0 0 16px !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #f2f4f7 !important;
}

.article-content .box-internos.box-dois .thumb img,
.box-internos.box-dois .thumb img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
}

.article-content .box-internos.box-dois h2,
.box-internos.box-dois h2 {
    min-height: 54px !important;
    margin: 0 0 10px !important;
    color: #202939 !important;
    font-size: 18px !important;
    line-height: 1.28 !important;
    font-weight: 800 !important;
    overflow-wrap: anywhere !important;
}

.article-content .box-internos.box-dois p,
.box-internos.box-dois p {
    margin: 0 0 20px !important;
    color: #d94a43 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    font-weight: 700 !important;
}

.article-content .box-internos.box-dois .leia-mais,
.box-internos.box-dois .leia-mais {
    margin-top: auto !important;
}

@media (max-width: 991px) {
    .article-content .box-internos.box-dois,
    .box-internos.box-dois {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }

    .article-content .box-internos.box-dois .thumb,
    .box-internos.box-dois .thumb {
        height: 210px !important;
        min-height: 210px !important;
    }
}

@media (max-width: 630px) {
    .article-content .box-internos.box-dois,
    .box-internos.box-dois {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .article-content .box-internos.box-dois .thumb,
    .box-internos.box-dois .thumb {
        height: 56vw !important;
        min-height: 220px !important;
        max-height: 310px !important;
    }

    .article-content .box-internos.box-dois h2,
    .box-internos.box-dois h2 {
        min-height: 0 !important;
    }
}

figure.article-main-figure {
    display: none;
}