* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      width: 100%;
      height: 100%;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: black;
      color: #ffffff;
      overflow-x: hidden;
    }

    

    /* ===================== NAVEGAÇÃO ===================== */

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    

    .logo-section {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-placeholder {
      width: 120px;
      height: 56px;
      background-image: url('../marcas/lOGO\ SERTAO\ NA\ ARTE\ PNG.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size: 120px;
      flex-shrink: 0;
    }

    


   

    .nav-links {
      display: none;
      align-items: center;
      gap: 32px;
    }

    .nav-link {
      position: relative;
      font-size: 14px;
      font-weight: 500;
      color: #d1d5db;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: #d86800;
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: #ffffff;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .btn-contact {
      background: linear-gradient(135deg, #ff7c02 0%, #0c0c0c 100%);
      color: white;
      padding: 8px 20px;
      border-radius: 20px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      transition: opacity 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .btn-contact:hover {
      opacity: 0.9;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: #ffffff;
      cursor: pointer;
      padding: 8px;
      width: 32px;
      height: 32px;
      flex-shrink: 0;
    }

    .mobile-menu-btn:hover {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
    }

    .mobile-menu-btn svg {
      width: 100%;
      height: 100%;
      stroke-width: 2;
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 40;
      background: rgba(26, 26, 46, 0.98);
      backdrop-filter: blur(16px);
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 24px;
      overflow-y: auto;
      padding-top: 80px;
      padding-bottom: 40px;
    }

    .mobile-menu.active {
      display: flex;
    }

    .mobile-menu-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      color: #ffffff;
      cursor: pointer;
      width: 32px;
      height: 32px;
    }

    .mobile-menu-close svg {
      width: 100%;
      height: 100%;
    }

    .mobile-nav-link {
      font-family: 'Bebas Neue', cursive;
      font-size: 32px;
      text-decoration: none;
      color: #ffffff;
      transition: color 0.3s ease;
      cursor: pointer;
    }

    .mobile-nav-link:hover {
      color: #ec6a00;
    }


    /* ===================== CONTEÚDO PRINCIPAL ===================== */

    main {
      width: 100%;
      margin-top: 80px;
    }

    section {
      padding: 64px 0;
    }

    section.secondary {
      background: rgba(15, 52, 96, 0.3);
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }


    /* ===================== BANNER ===================== */

    .banner-image {
      width: 100%;
      height: auto;
      border-radius: 16px;
      display: block;
      margin-bottom: 48px;
    }

    .banner-content {
      position: relative;
      z-index: 10;
      text-align: center;
    }

    .banner-logo {
    
      background-repeat: no-repeat;
      background-size: 150px;
      width: 150px;
      height: 150px;
      
      
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .banner-content h1 {
      font-family: 'Bebas Neue', cursive;
      font-size: 90px;
      color: #ffffff;
      margin-bottom: 100px;
      
    }

    

    


    /* ===================== GALERIA HERO (TOPO) ===================== */

    .galeria-hero {
      width: 100%;
      padding-top: 80px; /* altura da nav fixa */
      background: #000;
      border-bottom: 1px solid rgba(255, 124, 2, 0.2);
    }

    .galeria-hero-header {
      text-align: center;
      padding: 48px 16px 24px;
    }

    .galeria-hero-title {
      font-family: 'Bebas Neue', cursive;
      font-size: 3rem;
      letter-spacing: 3px;
      margin-bottom: 10px;
    }

    .galeria-hero-subtitle {
      color: #9ca3af;
      font-size: 15px;
      letter-spacing: 1px;
    }

    .galeria-hero-container {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 16px 48px;
      justify-content: center;
    }

    /* Botões da galeria hero sempre visíveis */
    .galeria-hero-btn {
      display: flex !important;
    }

    /* Imagens maiores e mais destacadas na galeria hero */
    .fotos-hero img {
      width: 400px !important;
      height: 320px !important;
      border-radius: 16px !important;
      box-shadow: 0 8px 40px rgba(255, 124, 2, 0.3) !important;
      border: 2px solid rgba(255, 124, 2, 0.15);
    }

    .fotos-hero img:hover {
      transform: scale(1.04) !important;
      box-shadow: 0 12px 50px rgba(255, 124, 2, 0.55) !important;
      border-color: rgba(255, 124, 2, 0.5);
    }

    @media (min-width: 768px) {
      .galeria-hero-title {
        font-size: 4.5rem;
      }
      .fotos-hero img {
        width: 520px !important;
        height: 400px !important;
      }
    }

    @media (min-width: 1024px) {
      .galeria-hero-title {
        font-size: 5.5rem;
      }
      .fotos-hero img {
        width: 640px !important;
        height: 480px !important;
      }
    }

    /* ===================== BOTÕES PRINCIPAIS ===================== */

    .main-buttons {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-bottom: 64px;
    }

    .main-button {
      padding: 24px 32px;
      border-radius: 24px;
      text-align: center;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-family: 'Bebas Neue', cursive;
      font-size: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 200px;
    }

    .main-button.accent {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #ffffff;
    }

    .main-button.accent:hover {
      border-color: rgba(150, 58, 5, 0.5);
    }

    .main-button.secondary {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #ffffff;
    }

    .main-button.secondary:hover {
      border-color: rgba(150, 58, 5, 0.5);
    }

    .main-button svg {
      width: 48px;
      height: 48px;
    }


    /* ===================== DESTAQUES ===================== */

    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
    }

    .highlight-card {
      padding: 24px;
      border-radius: 12px;
      border: 1px solid #ca7300;
      background: #00000080;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .highlight-card-featured {
      grid-column: span 2;
      background: linear-gradient(135deg, rgba(202, 115, 0, 0.15) 0%, rgba(255, 149, 0, 0.1) 100%);
      border: 2px solid #ca7300;
      padding: 32px;
    }

    @media (max-width: 768px) {
      .highlight-card-featured {
        grid-column: span 1;
      }
    }

    .highlight-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(69, 187, 233, 0.2);
    }

    .highlight-card-featured:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 30px 60px rgba(202, 115, 0, 0.3);
    }

    .highlight-card .emoji {
      font-size: 48px;
      margin-bottom: 12px;
    }

    .highlight-card h3 {
      font-family: 'Bebas Neue', cursive;
      font-size: 20px;
      margin-bottom: 8px;
    }

    .highlight-card p {
      font-size: 14px;
      color: #9ca3af;
      margin-bottom: 12px;
      flex-grow: 1;
    }

    .highlight-badge {
      display: inline-block;
      font-size: 12px;
      background: #fc8600;
      color: #ffffff;
      padding: 4px 12px;
      border-radius: 20px;
      width: fit-content;
    }


    /* ===================== TÍTULOS DE SEÇÃO ===================== */
    .section-title {
      font-family: 'Bebas Neue', cursive;
      font-size: 48px;
      text-align: center;
      margin-bottom: 64px;
    }

    .text-gradient {
      background: white;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }


    /* ===================== CARDS ===================== */

    .card {
      background: rgba(255, 255, 255, 0.05);;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 32px;
      margin-bottom: 40px;
      margin-left: 20px;
      margin-right: 20px;
      transition: all 0.3s ease;
    }

    

    .card.accent-gradient {
      background: linear-gradient(to right, rgba(69, 181, 233, 0.2), rgba(255, 107, 107, 0.05));
      border-color: rgba(255, 255, 255, 0.3);
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(233, 162, 69, 0.2);
    }

    .card-footer {
      background: rgba(255, 255, 255, 0.05);;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 32px;
      transition: all 0.3s ease;
    }

    .card-footer:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(92, 0, 100, 0.692);
    }

    /* ===================== GRIDS ===================== */

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 32px;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
    }

    .grid-6 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 16px;
    }


    /* ===================== UTILITÁRIOS ===================== */

    .flex-center-gap {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    iframe {
      border-radius: 15px;
      width: 100%;
      height: auto;
      max-width: 100%;
    }

    

   /* Você que está vendo o código, ROCK É CULTURA!! VEJA ESSA GALERIA E TAMBÉM VENHA PRESENCIAR O ROCK SERTÃO E APOIAR ESSA CULTURA 👨‍🎤 */
    .icon-box {
      width: 48px;
      height: 48px;
      background-color: #ca7300;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .icon-box svg {
      width: 24px;
      height: 24px;
    }

    .section-label {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    

    

    .section-label h3 {
      font-family: 'Bebas Neue', cursive;
      font-size: 30px;
      margin: 0;
    }

    .section-label-2 h3{
      font-family: 'Bebas Neue', cursive;
      font-size: 30px;
      margin: 30px 100px;
    }

    .text-gray-300 {
      color: #d1d5db;
    }

    .text-gray-400 {
      color: #9ca3af;
    }

    .text-sm {
      font-size: 14px;
    }

    .text-xs {
      font-size: 12px;
    }

    .mb-16 {
      margin-bottom: 64px;
    }

    .mb-24 {
      margin-bottom: 24px;
    }

    .mb-4 {
      margin-bottom: 16px;
    }

    .galeria-container {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 100px auto;
      max-width: 100%;
      position: relative;
      justify-content: center;
    }

    .galeria-btn {
      display: none;
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #ff7c02 0%, #df8600 100%);
      border: none;
      border-radius: 50%;
      color: white;
      cursor: pointer;
      transition: all 0.3s ease;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(255, 124, 2, 0.3);
    }

    .galeria-btn:hover {
      background: linear-gradient(135deg, #ff8c12 0%, #e8960a 100%);
      box-shadow: 0 6px 25px rgba(255, 124, 2, 0.5);
      transform: scale(1.1);
    }

    .galeria-btn:active {
      transform: scale(0.95);
    }

    /* Mostrar setas apenas no desktop */
    @media (min-width: 1024px) {
      .galeria-btn {
        display: flex;
      }
    }

    .fotos {
      display: flex;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-behavior: smooth;
      gap: 20px;
      padding: 20px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      cursor: grab;
      user-select: none;
      max-width: 100%;
      position: relative;
    }

    .fotos:active {
      cursor: grabbing;
    }

    /* Estilo da scrollbar para navegadores webkit */
    .fotos::-webkit-scrollbar {
      height: 8px;
    }

    .fotos::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      margin: 10px 0;
    }

    .fotos::-webkit-scrollbar-thumb {
      background: linear-gradient(135deg, #ff7c02 0%, #df8600 100%);
      border-radius: 10px;
      transition: background 0.3s ease;
    }

    .fotos::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(135deg, #ff8c12 0%, #e8960a 100%);
    }

    .fotos img {
      border-radius: 20px;
      padding: 0;
      width: 300px;
      height: 250px;
      flex-shrink: 0;
      scroll-snap-align: start;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      object-fit: cover;
    }

    .fotos img:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 25px rgba(255, 124, 2, 0.4);
    }

    

    /* Aumentar tamanho das imagens em tablet e desktop */
    @media (min-width: 768px) {
      .fotos img {
        width: 400px;
        height: 320px;
      }
    }

    @media (min-width: 1024px) {
      .fotos img {
        width: 500px;
        height: 400px;
      }
    }

    /* ===================== GALERIA DE VÍDEOS ===================== */

    .videos-container {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 100px auto;
      max-width: 100%;
      position: relative;
      justify-content: center;
    }

    .videos {
      display: flex;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-behavior: smooth;
      gap: 20px;
      padding: 20px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      cursor: grab;
      user-select: none;
      max-width: 100%;
      position: relative;
    }

    .videos:active {
      cursor: grabbing;
    }

    /* Estilo da scrollbar para vídeos */
    .videos::-webkit-scrollbar {
      height: 8px;
    }

    .videos::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      margin: 10px 0;
    }

    .videos::-webkit-scrollbar-thumb {
      background: linear-gradient(135deg, #ff7c02 0%, #df8600 100%);
      border-radius: 10px;
      transition: background 0.3s ease;
    }

    .videos::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(135deg, #ff8c12 0%, #e8960a 100%);
    }

    .video-item {
      flex-shrink: 0;
      width: 300px;
      height: 169px;
      scroll-snap-align: start;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .video-item:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 25px rgba(255, 124, 2, 0.4);
    }

    .video-item iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Aumentar tamanho dos vídeos em tablet e desktop */
    @media (min-width: 768px) {
      .video-item {
        width: 400px;
        height: 225px;
      }
    }

    @media (min-width: 1024px) {
      .video-item {
        width: 560px;
        height: 315px;
      }
    }



    /* ===================== FORMULÁRIOS ===================== */

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 12px 16px;
      font-size: 14px;
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s ease;
      resize: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #e94560;
      background: rgba(255, 255, 255, 0.15);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    button[type="submit"] {
      width: 100%;
      padding: 16px;
      border: none;
      border-radius: 12px;
      background-color: rgb(77, 1, 77);
      color: #ffffff;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    button[type="submit"]:hover {
      opacity: 0.7;
    }

    .form-message {
      text-align: center;
      font-size: 14px;
      color: #4ade80;
      margin-top: 16px;
      display: none;
    }

    .form-message.show {
      display: block;
    }


    /* ===================== TABELAS ===================== */

    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 24px;
    }

    thead {
      background: rgba(233, 135, 69, 0.2);
    }

    th, td {
      padding: 16px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    th {
      font-weight: 600;
      color: #ffffffbd;
    }

    .execucao {
      white-space: nowrap;
      display: inline-block;
    }

    tr:hover {
      background: rgba(255, 255, 255, 0.288);
    }


    /* ===================== RODAPÉ ===================== */

    footer {
      padding: 32px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(26, 26, 46, 0.5);
    }

    footer .footer-top {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-bottom: 32px;
    }

    footer .footer-logo-section {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    footer .logo-placeholder {
      width: 120px;
      height: 100px;
    }

    footer .logo-text p {
      font-family: 'Bebas Neue', cursive;
      font-size: 18px;
      line-height: 1;
      margin: 0;
    }

    footer .logo-text p:last-child {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      color: #9ca3af;
    }

    footer .footer-info {
      text-align: center;
    }

    footer .footer-info p {
      font-size: 12px;
      color: #9ca3af;
      line-height: 1.6;
      margin-bottom: 4px;
    }

    footer .footer-bottom {
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
    }

    footer .footer-bottom p {
      font-size: 12px;
      color: #4b5563;
    }
    
    #documentos {
      padding: 0px;
      margin: 0px;
    }

    /* ===================== LAYOUT RESPONSIVO ===================== */

    @media (min-width: 769px) {
      .nav-links {
        display: flex;
      }

      .logo-text {
        display: block;
      }
    }

    @media (max-width: 768px) {
      nav .nav-container {
        height: 64px;
        display: flex;
      }

      .mobile-menu-btn {
        display: flex;
        width: 40px;
        height: 40px;
      }

      .hamb {
        width: 40px;
        height: 40px;

      }

      .banner-content h1 {
        font-size: 48px;
      }

      .section-title {
        font-size: 36px;
      }

      .main-buttons {
        grid-template-columns: 1fr;
      }

      .grid-2, .grid-3 {
        grid-template-columns: 1fr;
      }

      .grid-4, .grid-6 {
        grid-template-columns: repeat(2, 1fr);
      }

      section {
        padding: 48px 0;
      }

      .card {
        padding: 24px;
      }

      table {
        font-size: 12px;
      }

      th, td {
        padding: 12px 8px;
      }

      thead {
        display: none;
      }

      tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.02);
      }

      td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      td:before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        font-weight: 600;
        text-align: left;
        color: #ca7300;
      }

      td:last-child {
        border-bottom: none;
      }

      .execucao {
        white-space: nowrap;
        display: inline-block;
      }
    }

    /* ===================== IMAGEM PROJETO ===================== */

    .img-rock-sertao-projeto {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      display: block;
    }

    .cine-sertao {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 20px;
      display: block;
      margin-top: 16px;
    }

    .img-circuito-formativo {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 20px;
      display: block;
      margin-top: 16px;
    }

    /* Responsividade para projetos */
    @media (max-width: 768px) {
      .card.accent-gradient[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
      }

      .card.accent-gradient[style*="grid-template-columns"] > div:first-child {
        aspect-ratio: 16/9;
        height: auto;
      }
    }

    /* links documentos */

    .pdf-estatuto {
      text-decoration: none;
      color: #ca7300;
    }

    .pdf-estatuto:hover {
      color: #ff91025b;
    }

    .documento-ata {
      text-decoration: none;
      color: #ca7300;
    }

    .documento-ata:hover {
      color: #ff91025b;
    }

    /* ===================== MODAL DE TRANSPARÊNCIA ===================== */

    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        animation: fadeIn 0.3s ease-in;
    }

    .modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .modal-content {
      background-color: #1f2937;
      border: 1px solid #374151;
      border-radius: 12px;
      padding: 32px;
      max-width: 1100px;
      width: 94%;
      max-height: 85vh;
      overflow-y: auto;
      animation: slideUp 0.3s ease-out;
      color: #e5e7eb;
    }

    @keyframes slideUp {
        from {
            transform: translateY(50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        border-bottom: 1px solid #374151;
        padding-bottom: 16px;
    }

    .modal-header h2 {
        margin: 0;
        font-size: 24px;
        color: #ffffff;
    }

    .modal-close {
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #9ca3af;
        transition: color 0.2s;
        padding: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-close:hover {
        color: #ffffff;
    }

    .modal-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .modal-section h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 16px;
        color: #ca7300;
        text-transform: uppercase;
    }

    .modal-image {
      border-radius: 8px;
      overflow: hidden;
      background-color: #111827;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 420px;
    }

    .modal-image img {
      max-width: 100%;
      width: auto;
      height: auto;
      max-height: 780px;
      object-fit: contain;
      cursor: zoom-in;
    }

    .image-placeholder {
        text-align: center;
        padding: 32px;
        color: #6b7280;
    }

    .image-placeholder svg {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
        opacity: 0.5;
    }

    .modal-attachments {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .attachment-item {
        background-color: #111827;
        border: 1px solid #374151;
        border-radius: 8px;
        padding: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.2s;
    }

    .attachment-item:hover {
        background-color: #1f2937;
        border-color: #ca7300;
    }

    .attachment-name {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
    }

    .attachment-name svg {
        width: 24px;
        height: 24px;
        color: #ca7300;
        flex-shrink: 0;
    }

    .attachment-name p {
        margin: 0;
        font-size: 14px;
        color: #e5e7eb;
    }

    .attachment-button {
        background-color: #ca7300;
        color: #ffffff;
        border: none;
        padding: 8px 16px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 600;
        transition: background-color 0.2s;
    }

    .attachment-button:hover {
        background-color: #b86500;
    }

    .table tbody tr {
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .table tbody tr:hover {
        background-color: rgba(202, 115, 0, 0.1);
    }

    .pdf-viewer-modal {
        display: none;
        position: fixed;
        z-index: 1100;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .pdf-viewer-modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pdf-viewer-content {
        background-color: #1f2937;
        border-radius: 12px;
        width: 90%;
        height: 90vh;
        display: flex;
        flex-direction: column;
        border: 1px solid #374151;
    }

    .pdf-viewer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 24px;
        border-bottom: 1px solid #374151;
    }

    .pdf-viewer-header h3 {
        margin: 0;
        font-size: 18px;
        color: #ffffff;
    }

    .pdf-viewer-close {
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #9ca3af;
        transition: color 0.2s;
        padding: 0;
        width: 32px;
        height: 32px;
    }

    .pdf-viewer-close:hover {
        color: #ffffff;
    }

    .pdf-viewer-frame {
        flex: 1;
        border: none;
    }

    @media (max-width: 768px) {
        .modal-body {
            grid-template-columns: 1fr;
        }

        .modal-content {
            padding: 20px;
            width: 95%;
        }

        .modal-header h2 {
            font-size: 18px;
        }
    }

    /* ===================== TEMA ROCK GLOBAL ===================== */

    :root {
      --rock-bg: #050505;
      --rock-surface: rgba(15, 15, 15, 0.82);
      --rock-surface-strong: rgba(26, 10, 10, 0.92);
      --rock-border: rgba(255, 123, 0, 0.28);
      --rock-border-strong: rgba(255, 72, 0, 0.55);
      --rock-text: #f6eee8;
      --rock-muted: #c2b7af;
      --rock-accent: #ff6a00;
      --rock-accent-2: #ff003c;
      --rock-accent-3: #ffd166;
      --rock-shadow: 0 18px 45px rgba(0, 0, 0, 0.48);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      color: var(--rock-text);
      background-color: var(--rock-bg);
      background-image:
        radial-gradient(circle at top, rgba(255, 106, 0, 0.2), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(255, 0, 60, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(3, 3, 3, 1)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 14px);
      background-attachment: fixed;
    }

    ::selection {
      background: rgba(255, 106, 0, 0.38);
      color: #ffffff;
    }

    nav {
      background: linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(24, 8, 8, 0.94));
      border-bottom: 1px solid var(--rock-border);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    .logo-placeholder {
      filter: drop-shadow(0 0 14px rgba(255, 106, 0, 0.25));
    }

    .nav-link {
      color: #f3d8c4;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .nav-link::after {
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--rock-accent), var(--rock-accent-2));
      box-shadow: 0 0 18px rgba(255, 106, 0, 0.35);
    }

    .nav-link:hover,
    .mobile-nav-link:hover {
      color: #ffffff;
      text-shadow: 0 0 14px rgba(255, 106, 0, 0.3);
    }

    .btn-contact,
    .attachment-button,
    .btn-submit,
    button[type="submit"] {
      background: linear-gradient(135deg, var(--rock-accent) 0%, var(--rock-accent-2) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      box-shadow: 0 10px 24px rgba(255, 106, 0, 0.28);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .btn-contact:hover,
    .attachment-button:hover,
    .btn-submit:hover,
    button[type="submit"]:hover {
      opacity: 1;
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(255, 80, 0, 0.35);
    }

    .mobile-menu {
      background:
        radial-gradient(circle at top, rgba(255, 106, 0, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.99), rgba(18, 6, 6, 0.98));
    }

    .mobile-nav-link {
      letter-spacing: 0.08em;
      text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    }

    section {
      position: relative;
    }

    section.secondary {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 72, 0, 0.05)),
        rgba(9, 9, 9, 0.74);
      border-top: 1px solid rgba(255, 123, 0, 0.12);
      border-bottom: 1px solid rgba(255, 123, 0, 0.08);
    }

    .galeria-hero {
      background:
        radial-gradient(circle at top, rgba(255, 106, 0, 0.16), transparent 35%),
        linear-gradient(180deg, rgba(18, 6, 6, 0.98), rgba(5, 5, 5, 1));
      border-bottom: 1px solid rgba(255, 106, 0, 0.22);
    }

    .galeria-hero-title,
    .section-title,
    .banner-content h1,
    .section-label h3,
    .section-label-2 h3,
    .highlight-card h3,
    .card h3,
    .card h4,
    .modal-section h3 {
      letter-spacing: 0.08em;
      text-shadow: 0 5px 18px rgba(0, 0, 0, 0.35);
    }

    .section-title {
      text-shadow: 0 8px 24px rgba(255, 106, 0, 0.16);
    }

    .text-gradient {
      background: linear-gradient(90deg, var(--rock-accent-3) 0%, var(--rock-accent) 45%, var(--rock-accent-2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .main-button {
      border-radius: 18px;
      border: 1px solid rgba(255, 123, 0, 0.14);
      box-shadow: var(--rock-shadow);
      letter-spacing: 0.06em;
      overflow: hidden;
    }

    .main-button.accent,
    .main-button.secondary {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 106, 0, 0.06)),
        var(--rock-surface);
      border-color: rgba(255, 106, 0, 0.2);
    }

    .main-button:hover,
    .main-button.accent:hover,
    .main-button.secondary:hover {
      transform: translateY(-6px);
      border-color: var(--rock-border-strong);
      box-shadow: 0 22px 40px rgba(255, 72, 0, 0.18);
    }

    .highlight-card,
    .card,
    .card-footer,
    .formulario-container,
    .validacao-info,
    .modal-content,
    .pdf-viewer-content {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 72, 0, 0.045)),
        var(--rock-surface);
      border: 1px solid var(--rock-border);
      box-shadow: var(--rock-shadow);
    }

    .highlight-card,
    .card {
      position: relative;
      overflow: hidden;
    }

    .highlight-card::before,
    .card::before {
      content: '';
      position: absolute;
      inset: 0 0 auto 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--rock-accent), var(--rock-accent-2), transparent);
      opacity: 0.9;
    }

    .highlight-card-featured,
    .card.accent-gradient {
      background:
        radial-gradient(circle at top left, rgba(255, 123, 0, 0.18), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 72, 0, 0.09)),
        rgba(18, 10, 10, 0.92);
      border-color: var(--rock-border-strong);
    }

    .highlight-card:hover,
    .card:hover,
    .card-footer:hover {
      box-shadow: 0 24px 48px rgba(255, 72, 0, 0.16);
      border-color: rgba(255, 123, 0, 0.34);
    }

    .highlight-badge,
    .pdf-estatuto,
    .documento-ata {
      color: var(--rock-accent-3);
    }

    .highlight-badge {
      background: linear-gradient(135deg, rgba(255, 106, 0, 0.92), rgba(255, 0, 60, 0.88));
      box-shadow: 0 10px 18px rgba(255, 72, 0, 0.18);
    }

    .pdf-estatuto:hover,
    .documento-ata:hover {
      color: #ffffff;
    }

    .icon-box,
    .dot {
      background: linear-gradient(135deg, var(--rock-accent), var(--rock-accent-2));
      box-shadow: 0 10px 20px rgba(255, 106, 0, 0.24);
    }

    .text-gray-300 {
      color: #ddd3cb;
    }

    .text-gray-400,
    .galeria-hero-subtitle,
    .form-group small,
    footer .footer-info p,
    footer .logo-text p:last-child,
    footer .footer-bottom p {
      color: var(--rock-muted);
    }

    .galeria-btn {
      background: linear-gradient(135deg, var(--rock-accent) 0%, var(--rock-accent-2) 100%);
      box-shadow: 0 8px 22px rgba(255, 72, 0, 0.26);
    }

    .galeria-btn:hover {
      background: linear-gradient(135deg, #ff7d21 0%, #ff275e 100%);
      box-shadow: 0 12px 28px rgba(255, 72, 0, 0.36);
    }

    .fotos img,
    .fotos-hero img,
    .video-item,
    .img-rock-sertao-projeto,
    .cine-sertao,
    .img-circuito-formativo,
    .quero-tocar-banner,
    .quero-tocar-logo,
    .modal-image {
      border: 1px solid rgba(255, 123, 0, 0.2);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
    }

    .fotos img:hover,
    .fotos-hero img:hover,
    .video-item:hover {
      box-shadow: 0 20px 40px rgba(255, 72, 0, 0.24);
    }

    .periodo-inscricao {
      background: linear-gradient(135deg, rgba(255, 106, 0, 0.14), rgba(255, 0, 60, 0.08));
      border: 1px solid rgba(255, 123, 0, 0.24);
      border-left: 4px solid var(--rock-accent);
      box-shadow: var(--rock-shadow);
    }

    .apresentacao h2,
    .periodo-inscricao h3,
    .validacao-info h3,
    .formulario-container h3,
    .modal-header h2,
    .pdf-viewer-header h3 {
      color: var(--rock-accent-3);
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 0.08em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select,
    .attachment-item,
    .modal-image,
    .pdf-viewer-header {
      background: rgba(10, 10, 10, 0.78);
      border-color: rgba(255, 123, 0, 0.16);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: rgba(255, 123, 0, 0.9);
      box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
      background: rgba(20, 12, 12, 0.92);
    }

    thead {
      background: linear-gradient(90deg, rgba(255, 106, 0, 0.18), rgba(255, 0, 60, 0.12));
    }

    th {
      color: #ffe3c4;
    }

    tr:hover {
      background: rgba(255, 106, 0, 0.12);
    }

    .modal {
      background-color: rgba(0, 0, 0, 0.82);
      backdrop-filter: blur(8px);
    }

    .modal-header,
    .pdf-viewer-header {
      border-bottom: 1px solid rgba(255, 123, 0, 0.18);
    }

    .attachment-item:hover {
      background-color: rgba(25, 12, 12, 0.92);
      border-color: rgba(255, 123, 0, 0.38);
    }

    footer {
      background:
        radial-gradient(circle at top, rgba(255, 106, 0, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(16, 7, 7, 0.98), rgba(6, 6, 6, 1));
      border-top: 1px solid rgba(255, 123, 0, 0.16);
    }

    footer .footer-bottom {
      border-top: 1px solid rgba(255, 123, 0, 0.12);
    }

    footer .logo-text p:first-child {
      color: #ffffff;
      letter-spacing: 0.12em;
    }

    @media (max-width: 768px) {
      .btn-contact,
      .attachment-button,
      .btn-submit,
      button[type="submit"] {
        letter-spacing: 0.04em;
      }

      .highlight-card,
      .card,
      .card-footer {
        margin-left: 0;
        margin-right: 0;
      }
    }

    /* ===================== PÁGINAS DE PROJETOS ===================== */

    body.project-page {
      --project-primary: var(--rock-accent);
      --project-secondary: var(--rock-accent-2);
      --project-soft: rgba(255, 106, 0, 0.12);
      --project-surface: rgba(12, 12, 12, 0.88);
    }

    body.theme-rock {
      --project-primary: #ff7a18;
      --project-secondary: #ff174f;
      --project-soft: rgba(255, 94, 0, 0.15);
      --project-surface: rgba(22, 10, 10, 0.9);
    }

    body.theme-cine {
      --project-primary: #5dd6ff;
      --project-secondary: #7c3aed;
      --project-soft: rgba(93, 214, 255, 0.14);
      --project-surface: rgba(8, 12, 22, 0.9);
      background-image:
        radial-gradient(circle at top, rgba(93, 214, 255, 0.16), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(124, 58, 237, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(5, 8, 20, 0.96), rgba(3, 5, 12, 1)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 14px);
    }

    body.theme-formacao {
      --project-primary: #f59e0b;
      --project-secondary: #10b981;
      --project-soft: rgba(16, 185, 129, 0.12);
      --project-surface: rgba(12, 18, 14, 0.9);
      background-image:
        radial-gradient(circle at top, rgba(245, 158, 11, 0.18), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(16, 185, 129, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(8, 12, 10, 0.96), rgba(3, 5, 4, 1)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 14px);
    }

    .project-page-intro {
      max-width: 860px;
      margin: -28px auto 40px;
      text-align: center;
      color: var(--rock-muted);
      line-height: 1.8;
    }

    .project-card-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .project-card-link--featured {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .project-card-link__media {
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 20px;
      background: rgba(0, 0, 0, 0.3);
    }

    .project-card-link__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .project-card-link__content h3,
    .project-card-link h3 {
      font-family: 'Bebas Neue', cursive;
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .project-card-link__tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 6px 12px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--project-primary), var(--project-secondary));
      color: #ffffff;
      margin-bottom: 16px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
    }

    .project-card-link__header {
      margin-bottom: 8px;
    }

    .project-card-link__pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 20px;
    }

    .project-pill {
      display: inline-flex;
      align-items: center;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: #f5ede6;
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 14px;
    }

    .project-card-link__cta,
    .project-back-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #ffffff;
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 0.08em;
      font-size: 1.05rem;
      margin-top: 20px;
    }

    .project-card-link__cta {
      color: var(--project-primary);
    }

    .project-card-link:hover .project-card-link__cta,
    .project-back-link:hover {
      color: #ffffff;
    }

    .project-hero {
      padding: 72px 0 48px;
    }

    .project-hero__grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 32px;
      align-items: stretch;
    }

    .project-hero__content,
    .project-hero__visual,
    .project-stat,
    .project-subnav,
    .project-story,
    .project-timeline,
    .project-highlight-box,
    .project-cta-panel {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
        var(--project-surface);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      box-shadow: var(--rock-shadow);
    }

    .project-hero__content {
      padding: 40px;
    }

    .project-kicker {
      display: inline-flex;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--project-soft);
      color: var(--project-primary);
      border: 1px solid rgba(255, 255, 255, 0.08);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 12px;
      margin-bottom: 20px;
    }

    .project-title {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(3rem, 7vw, 5.2rem);
      line-height: 0.95;
      margin-bottom: 18px;
      letter-spacing: 0.06em;
    }

    .project-lead {
      font-size: 1.05rem;
      line-height: 1.9;
      color: #e8ddd5;
      max-width: 58ch;
    }

    .project-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 28px;
    }

    .project-actions .btn-contact {
      text-decoration: none;
    }

    .project-hero__visual {
      overflow: hidden;
      min-height: 100%;
      position: relative;
    }

    .project-hero__visual img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      display: block;
    }

    .project-hero__overlay {
      position: absolute;
      inset: auto 20px 20px 20px;
      padding: 18px 20px;
      border-radius: 18px;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .project-hero__overlay p {
      margin: 0;
      color: #f4ece5;
      font-size: 14px;
      line-height: 1.7;
    }

    .project-stat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 24px;
    }

    .project-stat {
      padding: 22px;
    }

    .project-stat strong {
      display: block;
      font-family: 'Bebas Neue', cursive;
      font-size: 1.8rem;
      margin-bottom: 8px;
      color: var(--project-primary);
      letter-spacing: 0.06em;
    }

    .project-stat span {
      color: var(--rock-muted);
      line-height: 1.6;
      font-size: 14px;
    }

    .project-subnav {
      margin: 16px auto 24px;
      padding: 16px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .project-subnav a {
      color: #ffffff;
      text-decoration: none;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.3s ease;
    }

    .project-subnav a:hover {
      background: var(--project-soft);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }

    .project-section {
      padding: 24px 0 56px;
    }

    .project-section__intro {
      max-width: 760px;
      margin: 0 auto 28px;
      text-align: center;
      color: var(--rock-muted);
      line-height: 1.8;
    }

    .project-story-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 28px;
      align-items: start;
    }

    .project-story,
    .project-highlight-box,
    .project-timeline,
    .project-cta-panel {
      padding: 32px;
    }

    .project-story p,
    .project-highlight-box li,
    .project-cta-panel p {
      line-height: 1.9;
      color: #e5dbd3;
    }

    .project-highlight-box ul {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .project-highlight-box li {
      position: relative;
      padding-left: 20px;
    }

    .project-highlight-box li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--project-primary);
      font-size: 1.2rem;
    }

    .project-timeline {
      display: grid;
      gap: 18px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 18px;
      align-items: start;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .timeline-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .timeline-year {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 42px;
      border-radius: 999px;
      background: var(--project-soft);
      color: var(--project-primary);
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 0.08em;
      font-size: 1.1rem;
      padding: 0 12px;
    }

    .timeline-content h4,
    .project-highlight-box h3,
    .project-story h3,
    .project-cta-panel h3 {
      font-family: 'Bebas Neue', cursive;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      margin-bottom: 10px;
    }

    .timeline-content p {
      line-height: 1.8;
      color: #d9cec6;
    }

    .project-media-grid,
    .project-impact-grid,
    .project-cta-grid {
      display: grid;
      gap: 24px;
    }

    .project-impact-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .project-impact-card {
      padding: 28px;
      border-radius: 22px;
      background: var(--project-surface);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--rock-shadow);
    }

    .project-impact-card h3 {
      font-family: 'Bebas Neue', cursive;
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: var(--project-primary);
    }

    .project-impact-card p {
      line-height: 1.8;
      color: #ded4cc;
    }

    .project-cta-grid {
      grid-template-columns: 1fr 1fr;
    }

    .project-back-link {
      text-decoration: none;
      color: var(--project-primary);
    }

    .project-video-note {
      margin-top: 20px;
      text-align: center;
      color: var(--rock-muted);
      font-size: 14px;
    }

    body.theme-cine .project-kicker,
    body.theme-cine .project-card-link__tag,
    body.theme-cine .timeline-year,
    body.theme-cine .project-subnav a:hover,
    body.theme-cine .project-impact-card h3,
    body.theme-cine .project-stat strong,
    body.theme-cine .project-card-link__cta,
    body.theme-cine .project-back-link {
      color: #d8f6ff;
    }

    body.theme-cine .project-card-link__tag,
    body.theme-cine .btn-contact,
    body.theme-cine .attachment-button,
    body.theme-cine .btn-submit,
    body.theme-cine button[type="submit"] {
      background: linear-gradient(135deg, var(--project-primary), var(--project-secondary));
      box-shadow: 0 10px 24px rgba(93, 214, 255, 0.22);
    }

    body.theme-cine .project-subnav a:hover,
    body.theme-cine .timeline-year,
    body.theme-cine .project-kicker {
      background: rgba(93, 214, 255, 0.16);
    }

    body.theme-formacao .project-card-link__tag,
    body.theme-formacao .btn-contact,
    body.theme-formacao .attachment-button,
    body.theme-formacao .btn-submit,
    body.theme-formacao button[type="submit"] {
      background: linear-gradient(135deg, var(--project-primary), var(--project-secondary));
      box-shadow: 0 10px 24px rgba(16, 185, 129, 0.22);
    }

    body.theme-formacao .project-subnav a:hover,
    body.theme-formacao .timeline-year,
    body.theme-formacao .project-kicker {
      background: rgba(16, 185, 129, 0.14);
    }

    @media (max-width: 1024px) {
      .project-card-link--featured,
      .project-hero__grid,
      .project-story-grid,
      .project-cta-grid,
      .project-impact-grid {
        grid-template-columns: 1fr;
      }

      .project-hero__visual img {
        min-height: 320px;
      }
    }

    @media (max-width: 768px) {
      .project-hero {
        padding-top: 40px;
      }

      .project-hero__content,
      .project-story,
      .project-highlight-box,
      .project-timeline,
      .project-cta-panel {
        padding: 24px;
      }

      .project-stat-grid {
        grid-template-columns: 1fr;
      }

      .timeline-item {
        grid-template-columns: 1fr;
      }

      .project-title {
        font-size: 2.8rem;
      }
    }

    .project-story p + p {
      margin-top: 16px;
    }

    .project-quote {
      margin-top: 24px;
      padding: 28px;
      border-radius: 22px;
      background: linear-gradient(135deg, var(--project-soft), rgba(255, 255, 255, 0.03));
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-left: 4px solid var(--project-primary);
      box-shadow: var(--rock-shadow);
    }

    .project-quote p {
      margin: 0;
      color: #f4ece5;
      line-height: 1.9;
      font-size: 1.02rem;
    }

    .project-gallery-grid,
    .project-video-grid,
    .project-resource-list {
      display: grid;
      gap: 24px;
    }

    .project-gallery-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .project-gallery-grid figure,
    .project-resource-item {
      margin: 0;
      overflow: hidden;
      border-radius: 22px;
      background: var(--project-surface);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--rock-shadow);
    }

    .project-gallery-grid img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
    }

    .project-gallery-grid figcaption {
      padding: 14px 16px 18px;
      color: #ddd2ca;
      line-height: 1.7;
      font-size: 14px;
    }

    .project-video-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-video-grid .video-item {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
    }

    .project-resource-list {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .project-resource-item {
      padding: 28px;
    }

    .project-resource-item h3 {
      font-family: 'Bebas Neue', cursive;
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      margin-bottom: 10px;
      color: var(--project-primary);
    }

    .project-resource-item p {
      color: #ddd2ca;
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .project-resource-item a {
      text-decoration: none;
    }

    @media (max-width: 1024px) {
      .project-gallery-grid,
      .project-resource-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .project-gallery-grid,
      .project-video-grid,
      .project-resource-list {
        grid-template-columns: 1fr;
      }

      .project-quote {
        padding: 24px;
      }
    }

    @media (max-width: 768px) {
      .galeria-hero-container {
        gap: 10px;
        padding: 0 10px 28px;
      }

      .fotos {
        gap: 12px;
        padding: 12px;
        align-items: center;
      }

      .fotos img {
        width: min(86vw, 300px);
        height: auto;
        max-height: 52vh;
        aspect-ratio: auto;
        object-fit: contain !important;
        background: rgba(0, 0, 0, 0.35);
      }

      .fotos-hero img {
        width: min(90vw, 320px) !important;
        height: auto !important;
        max-height: 56vh;
        aspect-ratio: auto;
        object-fit: contain !important;
        background: rgba(0, 0, 0, 0.35);
      }

      .fotos img:hover,
      .fotos-hero img:hover {
        transform: scale(1.02) !important;
      }
    }

    @media (max-width: 480px) {
      .fotos img {
        width: min(90vw, 260px);
        max-height: 46vh;
      }

      .fotos-hero img {
        width: min(92vw, 280px) !important;
        max-height: 48vh;
      }
    }