    /* DESIGN SYSTEM & CORES CÊNICAS PREMIUM */
    :root {
      --bg-primary: #010306;
      --text-main: #f5f3f7;
      --accent: #0060a6;
      --accent-secondary: #6cc0f5;
      --accent-glow: rgba(0, 96, 166, 0.25);
      --accent-secondary-glow: rgba(108, 192, 245, 0.2);
      --surface: rgba(6, 12, 24, 0.45);
      --border: rgba(0, 96, 166, 0.12);
      --border-hover: rgba(108, 192, 245, 0.35);
      --font-title: 'Outfit', sans-serif;
      --font-body: 'Inter', sans-serif;
    }

    /* BARRA DE ROLAGEM CUSTOMIZADA (PREMIUM) */
    /* Chrome, Safari, Edge */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg-primary);
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--accent) 0%, rgba(0, 96, 166, 0.4) 100%);
      border-radius: 10px;
      border: 2px solid var(--bg-primary);
      transition: all 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--accent-secondary);
    }

    /* Firefox */
    html {
      scrollbar-width: thin;
      scrollbar-color: var(--accent) var(--bg-primary);
    }

    /* RESET & BASE */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      cursor: none !important; /* Custom cursor */
    }

    /* SELEÇÃO DE TEXTO CUSTOMIZADA */
    ::selection {
      background-color: var(--accent);
      color: #ffffff;
    }
    ::-moz-selection {
      background-color: var(--accent);
      color: #ffffff;
    }
    
    html {
      scroll-behavior: smooth;
      background-color: var(--bg-primary);
      color: var(--text-main);
      font-family: var(--font-body);
      overflow-x: hidden;
      overflow-y: auto;
    }

    body {
      overflow-x: hidden;
      overflow-y: visible;
      position: relative;
    }

    /* CUSTOM CURSOR SYSTEM */
    #custom-cursor {
      position: fixed;
      width: 8px;
      height: 8px;
      background-color: var(--accent-secondary);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    #custom-cursor-follower {
      position: fixed;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(0, 96, 166, 0.4);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.08s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
    }

    /* Hover States do Cursor */
    .hovering-interactive #custom-cursor {
      width: 12px;
      height: 12px;
      background-color: var(--accent);
    }

    .hovering-interactive #custom-cursor-follower {
      width: 60px;
      height: 60px;
      border-color: var(--accent-secondary);
      background-color: rgba(0, 96, 166, 0.05);
    }

    /* DYNAMIC GRADIENT BACKGROUNDS (AURORAS) */
    .spotlight-purple {
      position: absolute;
      top: -10%;
      left: -20%;
      width: 80%;
      height: 80vh;
      background: radial-gradient(circle, rgba(0, 96, 166, 0.16) 0%, rgba(1, 3, 6, 0) 70%);
      filter: blur(100px);
      pointer-events: none;
      z-index: 1;
      animation: pulseGlow 15s ease-in-out infinite alternate;
    }

    .spotlight-gold {
      position: absolute;
      top: 30%;
      right: -20%;
      width: 80%;
      height: 70vh;
      background: radial-gradient(circle, rgba(108, 192, 245, 0.08) 0%, rgba(1, 3, 6, 0) 70%);
      filter: blur(100px);
      pointer-events: none;
      z-index: 1;
      animation: pulseGlow 20s ease-in-out infinite alternate-reverse;
    }

    .spotlight-purple-middle {
      position: absolute;
      top: 60%;
      left: 10%;
      width: 80%;
      height: 90vh;
      background: radial-gradient(circle, rgba(0, 96, 166, 0.08) 0%, rgba(1, 3, 6, 0) 75%);
      filter: blur(120px);
      pointer-events: none;
      z-index: 1;
    }

    @keyframes pulseGlow {
      0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
      100% { transform: scale(1.1) translate(3%, 3%); opacity: 1; }
    }

    /* CANVAS DE PARTÍCULAS 3D INTERATIVAS */
    #particle-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: 1;
      pointer-events: none;
    }

    /* HEADER & NAVIGATION */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      background: transparent;
      backdrop-filter: none;
      border-bottom: 1px solid transparent;
      padding: 1.25rem 0;
      transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
    }

    header.scrolled {
      background: rgba(1, 3, 6, 0.85);
      backdrop-filter: blur(15px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      padding: 0.95rem 0;
    }

    .header-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: var(--font-title);
      font-weight: 900;
      font-size: 1.4rem;
      color: #fff;
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .logo span {
      color: var(--accent-secondary);
    }

    .nav-links {
      display: flex;
      gap: 1.75rem;
      list-style: none;
    }

    .nav-links a {
      color: #b3aebf;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--accent-secondary);
    }

    /* Garante que botões no menu fiquem com texto branco visível */
    .nav-links a.btn-primary {
      color: #ffffff;
    }
    .nav-links a.btn-primary:hover {
      color: #facc15;
      box-shadow: 0 0 20px rgba(0, 96, 166, 0.7), 0 0 35px rgba(250, 204, 21, 0.5);
    }

    /* CONTAINER & LAYOUT */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 2;
    }

    section {
      padding: 9rem 0;
      position: relative;
      border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    }

    /* TYPOGRAPHY */
    h1, h2, h3 {
      font-family: var(--font-title);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    p {
      line-height: 1.7;
      color: #b3aebf;
      font-size: 1.05rem;
    }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1.25rem 2.75rem;
      border-radius: 50px;
      font-family: var(--font-title);
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      font-size: 1.1rem;
      border: none;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s ease-out, height 0.6s ease-out;
      z-index: -1;
    }

    .btn:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent) 0%, #6cc0f5 100%);
      color: #fff;
      box-shadow: 0 4px 25px rgba(0, 96, 166, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 30px var(--accent-glow);
    }

    .btn-secondary {
      background-color: transparent;
      color: var(--text-main);
      border: 1px solid rgba(255, 255, 255, 0.15);
      margin-left: 1rem;
    }

    .btn-secondary:hover {
      border-color: var(--accent-secondary);
      color: var(--accent-secondary);
      transform: translateY(-3px);
      box-shadow: 0 0 25px var(--accent-secondary-glow);
    }

    .btn-whatsapp:hover {
      background-color: #25d366 !important;
      border-color: #25d366 !important;
      color: #fff !important;
      box-shadow: 0 0 25px rgba(37, 211, 102, 0.45) !important;
    }

    .btn-whatsapp:hover i {
      color: #fff !important;
    }

    /* HERO SECTION */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 8rem;
      position: relative;
      overflow: hidden;
    }

    .hero-video-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
    }

    #hero-bg-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.55;
    }

    .hero-video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(1, 3, 6, 0.2) 0%, rgba(1, 3, 6, 0.85) 100%);
    }

    .lens-flare-left {
      position: absolute;
      top: 15%;
      left: 5%;
      width: 150px;
      height: 150px;
      background: radial-gradient(circle, rgba(108, 192, 245, 0.15) 0%, rgba(1, 3, 6, 0) 70%);
      filter: blur(20px);
      pointer-events: none;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(0, 96, 166, 0.08);
      border: 1px solid var(--border);
      padding: 0.6rem 1.4rem;
      border-radius: 30px;
      color: var(--accent-secondary);
      font-family: var(--font-title);
      font-weight: 700;
      margin-bottom: 2rem;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      backdrop-filter: blur(5px);
    }

    .hero h1 {
      font-size: clamp(2.8rem, 6.5vw, 5rem);
      margin-bottom: 1.8rem;
      font-weight: 900;
      background: linear-gradient(135deg, #ffffff 30%, #6cc0f5 70%, #0060a6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.02;
    }

    .hero h1 .word {
      display: inline-block;
      white-space: nowrap;
    }

    .hero h1 .char {
      display: inline;
      opacity: 0;
    }

    .hero p {
      font-size: clamp(1.15rem, 2vw, 1.4rem);
      max-width: 850px;
      margin: 0 auto 3.5rem;
      color: #c9c4d4;
    }

    .hero-meta {
      display: flex;
      justify-content: center;
      gap: 4rem;
      margin-top: 5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 2.5rem;
    }

    .meta-item {
      text-align: left;
    }

    .meta-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      color: #8c829e;
      letter-spacing: 0.08em;
      margin-bottom: 0.35rem;
    }

    .meta-value {
      font-family: var(--font-title);
      font-weight: 800;
      font-size: 1.3rem;
      color: var(--text-main);
    }

    .meta-value span {
      color: var(--accent-secondary);
    }

    /* INTRODUCTION SECTION */
    .intro {
      background: linear-gradient(180deg, rgba(1, 3, 6, 0) 0%, rgba(6, 10, 24, 0.4) 100%);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6rem;
    }

    .section-tag {
      color: var(--accent-secondary);
      font-family: var(--font-title);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 1rem;
      display: block;
      font-size: 0.95rem;
    }

    .section-header h2 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: #fff;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 5rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    .intro-content p {
      font-size: 1.2rem;
      margin-bottom: 1.8rem;
      color: #c4bfc8;
    }

    .intro-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 3.5rem;
      backdrop-filter: blur(15px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
      transition: border-color 0.4s, transform 0.4s;
      transform-style: preserve-3d;
      perspective: 1000px;
    }

    .intro-card:hover {
      border-color: var(--border-hover);
    }

    .intro-card h3 {
      font-size: 1.6rem;
      margin-bottom: 2rem;
      color: var(--accent-secondary);
      transform: translateZ(30px);
    }

    .intro-card-item {
      margin-bottom: 1.8rem;
      transform: translateZ(20px);
    }

    .intro-card-item:last-child {
      margin-bottom: 0;
    }

    .intro-card-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      color: #8c829e;
      letter-spacing: 0.08em;
      margin-bottom: 0.35rem;
    }

    .intro-card-value {
      font-size: 1.1rem;
      color: #e2dfe5;
      line-height: 1.6;
    }

    /* PILARES SECTION */
    .pilares-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
    }

    .pilar-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 3.5rem 2.5rem;
      backdrop-filter: blur(12px);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      transform-style: preserve-3d;
      perspective: 1000px;
    }

    .pilar-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    }

    .pilar-icon {
      width: 65px;
      height: 65px;
      border-radius: 18px;
      background: rgba(0, 96, 166, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--accent);
      margin-bottom: 2.2rem;
      transition: all 0.3s;
      transform: translateZ(25px);
    }

    .pilar-card:hover .pilar-icon {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 0 20px var(--accent-glow);
    }

    .pilar-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
      color: #fff;
      transform: translateZ(20px);
    }

    .pilar-card p {
      transform: translateZ(15px);
    }

    /* CRONOGRAMA INTERATIVO (TIMELINE) SYSTEM */
    .timeline {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      padding: 2rem 0;
    }

    .timeline-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: rgba(255, 255, 255, 0.05);
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .timeline-line-active {
      position: absolute;
      left: 50%;
      top: 0;
      width: 4px;
      height: 0%;
      background: linear-gradient(to bottom, var(--accent) 0%, #6cc0f5 100%);
      box-shadow: 0 0 15px var(--accent-glow);
      transform: translateX(-50%);
      border-radius: 2px;
      will-change: height;
    }

    .timeline-item {
      position: relative;
      width: 50%;
      padding: 2rem 3.5rem;
      box-sizing: border-box;
      will-change: transform, opacity;
    }

    .timeline-item-left {
      left: 0;
      text-align: right;
    }

    .timeline-item-right {
      left: 50%;
      text-align: left;
    }

    .timeline-marker {
      position: absolute;
      top: 2.3rem;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--surface);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: #7c748c;
      z-index: 10;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .timeline-item-left .timeline-marker {
      right: -22px;
    }

    .timeline-item-right .timeline-marker {
      left: -22px;
    }

    .timeline-content {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.2rem;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      transition: all 0.4s ease;
    }

    .timeline-content.highlight {
      border-color: rgba(108, 192, 245, 0.3);
      background: rgba(108, 192, 245, 0.03);
    }

    /* Active States via ScrollTrigger focus */
    .timeline-item.active .timeline-marker {
      background: var(--accent);
      border-color: var(--accent-secondary);
      color: #fff;
      box-shadow: 0 0 15px var(--accent-glow);
      transform: scale(1.15);
    }

    .timeline-item.active .timeline-content {
      border-color: var(--accent);
      box-shadow: 0 0 25px rgba(0, 96, 166, 0.15);
    }

    .timeline-item.active .timeline-content.highlight {
      border-color: var(--accent-secondary);
      box-shadow: 0 0 25px rgba(108, 192, 245, 0.15);
    }

    .timeline-time {
      font-family: var(--font-title);
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--accent-secondary);
      margin-bottom: 0.5rem;
    }

    .timeline-title {
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 1.25rem;
      color: #fff;
      margin-bottom: 0.75rem;
    }

    @media (max-width: 768px) {
      .timeline-line, .timeline-line-active {
        left: 20px;
        transform: none;
      }
      
      .timeline-item {
        width: 100%;
        padding: 1.5rem 0 1.5rem 3.5rem;
      }
      
      .timeline-item-left, .timeline-item-right {
        left: 0;
        text-align: left;
      }
      
      .timeline-item-left .timeline-marker, .timeline-item-right .timeline-marker {
        left: -2px;
      }
    }

    /* MEDIAÇÃO (PAOLA VIANNA) */
    .mediador-card {
      max-width: 960px;
      margin: 0 auto;
      padding: 4rem;
    }

    .mediador-grid {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 4rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .mediador-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .mediador-card {
        padding: 3rem 2rem;
      }
      .mediador-avatar {
        width: 100% !important;
        max-width: 280px;
        height: 370px !important;
      }
    }

    .mediador-avatar-container {
      display: flex;
      justify-content: center;
    }

    .mediador-avatar {
      width: 280px;
      height: 370px;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 15px 40px rgba(0, 96, 166, 0.25);
      border: 3px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
      position: relative;
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .mediador-avatar img {
      width: calc(100% - 8px);
      height: calc(100% - 8px);
      border-radius: 20px;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mediador-card:hover .mediador-avatar {
      border-color: var(--accent-secondary);
      box-shadow: 0 0 35px var(--accent-glow);
    }

    .mediador-card:hover .mediador-avatar img {
      transform: scale(1.06);
    }

    .mediador-content h3 {
      font-size: 2rem;
      color: #fff;
      margin-bottom: 0.35rem;
    }

    .mediador-cargo {
      font-size: 1.1rem;
      color: var(--accent-secondary);
      margin-bottom: 1.5rem;
      font-weight: 600;
    }

    .mediador-bio {
      margin-bottom: 2rem;
      font-size: 1.05rem;
    }

    /* PALESTRANTES */
    .palestrantes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
      gap: 3.5rem;
    }

    @media (max-width: 600px) {
      .palestrantes-grid {
        grid-template-columns: 1fr;
      }
      .palestrante-card {
        flex-direction: column;
        align-items: stretch !important;
        text-align: center;
        padding: 0 !important;
      }
      .palestrante-avatar {
        width: 100% !important;
        max-width: none !important;
        aspect-ratio: 4 / 3 !important;
        height: auto !important;
        border-radius: 27px 27px 0 0 !important;
      }
      .palestrante-info {
        padding: 2.5rem 2rem !important;
        text-align: center;
      }
    }

    .palestrante-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 0;
      display: flex;
      align-items: stretch;
      backdrop-filter: blur(15px);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      transform-style: preserve-3d;
      perspective: 1000px;
      overflow: hidden;
    }

    .palestrante-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    .palestrante-avatar {
      width: 240px;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--accent) 0%, #6cc0f5 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.8rem;
      color: #fff;
      position: relative;
      overflow: hidden;
      border-right: 1px solid var(--border);
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .palestrante-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .palestrante-card:hover .palestrante-avatar {
      border-color: var(--accent-secondary);
    }

    .palestrante-card:hover .palestrante-avatar img {
      transform: scale(1.08);
    }

    .palestrante-info {
      padding: 3rem 3.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      transform: translateZ(20px);
      flex-grow: 1;
    }

    .palestrante-info h3 {
      font-size: 1.6rem;
      color: #fff;
      margin-bottom: 0.35rem;
    }

    .palestrante-cargo {
      font-size: 1rem;
      color: var(--accent-secondary);
      margin-bottom: 1.2rem;
      font-weight: 600;
    }

    /* Autoridades da Abertura Oficial */
    .autoridade-img-container {
      width: 100%;
      aspect-ratio: 3 / 4;
      border-radius: 18px;
      overflow: hidden;
      margin-bottom: 1.5rem;
      border: 1px solid var(--border);
      background: rgba(6, 12, 24, 0.3);
      position: relative;
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .autoridade-img-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .pilar-card:hover .autoridade-img-container {
      border-color: var(--accent-secondary);
      box-shadow: 0 0 25px var(--accent-secondary-glow);
    }

    .pilar-card:hover .autoridade-img-container img {
      transform: scale(1.06);
    }

    /* BUFFET, ATIVIDADES & NATUREZA (EXPERIÊNCIA) */
    /* VIVÊNCIAS EM SUBSEÇÕES VERTICAIS (ZIGUEZAGUE COM GALERIAS) */
    .experiencia-container {
      display: flex;
      flex-direction: column;
      gap: 7rem;
      margin-top: 4rem;
    }

    .experiencia-row {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: center;
    }

    /* Alternância de ordem (Ziguezague) */
    .experiencia-row:nth-child(even) .experiencia-col-text {
      order: 2;
    }
    .experiencia-row:nth-child(even) .experiencia-col-gallery {
      order: 1;
    }

    .experiencia-col-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .experiencia-col-text h3 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 800;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 0.5rem;
    }

    .experiencia-col-text h3 i {
      color: var(--accent);
    }

    .experiencia-col-text p {
      font-size: 1.1rem;
      color: #c9c4d4;
      line-height: 1.6;
    }

    .experiencia-col-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .gallery-img-wrapper {
      border-radius: 18px;
      overflow: hidden;
      aspect-ratio: 4/3;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-img-wrapper.large-photo {
      grid-column: span 2;
      aspect-ratio: 16/9;
    }

    .gallery-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-img-wrapper:hover img {
      transform: scale(1.05);
    }

    .gallery-img-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 96, 166, 0.08) 0%, rgba(10, 6, 24, 0.85) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      color: #7c748c;
      transition: background 0.3s;
    }

    .gallery-img-wrapper:hover {
      transform: translateY(-5px);
      border-color: var(--accent-secondary);
      box-shadow: 0 15px 35px rgba(0, 96, 166, 0.2);
    }

    .gallery-img-wrapper:hover .gallery-img-placeholder {
      background: linear-gradient(135deg, rgba(0, 96, 166, 0.15) 0%, rgba(10, 6, 24, 0.95) 100%);
      color: #fff;
    }

    @media (max-width: 991px) {
      .experiencia-row {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .experiencia-row:nth-child(even) .experiencia-col-text {
        order: 1;
      }
      .experiencia-row:nth-child(even) .experiencia-col-gallery {
        order: 2;
      }
    }

    .exp-list {
      list-style: none;
      margin-top: 1.5rem;
    }

    .exp-list li {
      margin-bottom: 1rem;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      color: #c9c4d4;
    }

    .exp-list li i {
      color: var(--accent-secondary);
      margin-top: 0.25rem;
    }

    /* SMTUR & PARCERIA */
    .parceria-card {
      background: linear-gradient(135deg, rgba(6, 12, 24, 0.7) 0%, rgba(1, 3, 6, 0.95) 100%);
      border: 1px solid var(--border);
      border-radius: 36px;
      padding: 5rem;
      backdrop-filter: blur(20px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    }

    .parceria-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 3.5rem;
      margin-top: 4rem;
    }

    .parceria-item h3 {
      font-size: 1.35rem;
      color: #fff;
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .parceria-item h3 i {
      color: var(--accent-secondary);
    }

    /* INSCRIÇÕES & FORMULÁRIO */
    .inscricao {
      background: linear-gradient(180deg, rgba(1, 3, 6, 0) 0%, #040108 100%);
    }

    .form-wrapper {
      max-width: 700px;
      margin: 0 auto;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 36px;
      padding: 5rem;
      backdrop-filter: blur(20px);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
      transition: border-color 0.3s;
    }

    .form-wrapper:hover {
      border-color: var(--border-hover);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.8rem;
      margin-bottom: 2.5rem;
    }

    @media (max-width: 600px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
      .form-wrapper {
        padding: 3rem 2rem;
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .form-group-full {
      grid-column: 1 / -1;
    }

    label {
      font-size: 0.9rem;
      font-weight: 600;
      color: #b3aebf;
    }

    input, select {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      padding: 1.1rem 1.4rem;
      color: #fff;
      font-family: var(--font-body);
      font-size: 1rem;
      transition: all 0.3s;
    }

    input:focus, select:focus {
      outline: none;
      border-color: var(--accent);
      background: rgba(0, 96, 166, 0.06);
      box-shadow: 0 0 15px rgba(0, 96, 166, 0.25);
    }

    /* TICKER DE APOIO */
    .ticker-section {
      padding: 3rem 0;
      background: rgba(6, 12, 24, 0.4);
      border-top: 1px solid rgba(255, 255, 255, 0.03);
      border-bottom: 1px solid rgba(255, 255, 255, 0.03);
      overflow: hidden;
    }

    .ticker-wrapper {
      display: flex;
      width: 100%;
    }

    .ticker-list {
      display: flex;
      gap: 6rem;
      white-space: nowrap;
      animation: ticker 30s linear infinite;
      padding-right: 6rem;
    }

    .ticker-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      flex-shrink: 0;
    }

    .ticker-item-role {
      font-size: 0.72rem;
      font-family: var(--font-title);
      font-weight: 700;
      color: var(--accent-secondary);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      opacity: 0.8;
    }

    .ticker-item-logo {
      height: 42px;
      width: auto;
      max-width: 180px;
      object-fit: contain;
      filter: grayscale(100%) brightness(0) invert(1);
      opacity: 0.75;
      transition: all 0.3s ease;
    }

    .ticker-item:hover .ticker-item-logo {
      filter: grayscale(0%) brightness(1) invert(0);
      opacity: 1;
    }

    @keyframes ticker {
      0% {
        transform: translate3d(0, 0, 0);
      }
      100% {
        transform: translate3d(-100%, 0, 0);
      }
    }

    /* SEÇÃO DE GALERIA DE FOTOS */
    .galeria-section {
      padding: 6rem 0;
      background: linear-gradient(180deg, rgba(1, 3, 6, 0.2) 0%, rgba(10, 6, 24, 0.4) 100%);
    }

    .galeria-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .galeria-item {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    .galeria-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Overlay de hover com ícone de expansão */
    .galeria-item::after {
      content: '\f00e'; /* FontAwesome search-plus */
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 96, 166, 0.3); /* Roxo translúcido */
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.8rem;
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .galeria-item:hover::after {
      opacity: 1;
    }

    .galeria-item:hover img {
      transform: scale(1.06);
    }

    /* INTERFACE DO LIGHTBOX (MODAL TELA CHEIA) */
    body.lightbox-active {
      cursor: auto !important;
    }
    
    body.lightbox-active * {
      cursor: auto !important;
    }

    body.lightbox-active .lightbox-btn,
    body.lightbox-active .lightbox-btn i,
    body.lightbox-active .lightbox-toolbar-btn,
    body.lightbox-active .lightbox-toolbar-btn i {
      cursor: pointer !important;
    }

    body.lightbox-active #custom-cursor,
    body.lightbox-active #custom-cursor-follower {
      display: none !important;
    }

    .lightbox-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(1, 3, 6, 0.95);
      backdrop-filter: blur(20px);
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      overflow: hidden;
    }

    .lightbox-modal.active {
      display: flex;
      opacity: 1;
    }

    .lightbox-content-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      max-width: 100vw;
      max-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .lightbox-img {
      max-width: 100vw;
      max-height: 100vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 0;
      box-shadow: none;
      cursor: zoom-in;
      user-select: none;
      -webkit-user-drag: none;
      transform-origin: center center;
      transition: transform 0.3s ease;
    }

    /* Barra de Ferramentas de Zoom */
    .lightbox-toolbar {
      position: absolute;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 8px 18px;
      border-radius: 40px;
      z-index: 10020;
      align-items: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }

    .lightbox-toolbar:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
    }

    .lightbox-toolbar-btn {
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.1rem;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .lightbox-toolbar-btn:hover {
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      transform: scale(1.1);
    }

    .lightbox-toolbar-btn:active {
      transform: scale(0.95);
    }

    .lightbox-toolbar-separator {
      width: 1px;
      height: 20px;
      background: rgba(255, 255, 255, 0.15);
    }

    /* Controles Virtuais */
    .lightbox-btn {
      position: absolute;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      z-index: 10010;
      font-size: 1.2rem;
    }

    .lightbox-btn:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: scale(1.1);
    }

    .lightbox-close {
      top: 24px;
      right: 24px;
    }

    .lightbox-prev {
      left: 24px;
      top: 50%;
      transform: translateY(-50%);
    }

    .lightbox-next {
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
    }

    .lightbox-counter {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      color: #b3aebf;
      font-family: var(--font-title);
      font-size: 0.95rem;
      letter-spacing: 0.08em;
      background: rgba(0, 0, 0, 0.5);
      padding: 6px 16px;
      border-radius: 20px;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 991px) {
      .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
      .lightbox-prev {
        left: 10px;
        bottom: 20px;
        top: auto;
      }
      .lightbox-next {
        right: 10px;
        bottom: 20px;
        top: auto;
      }
      .lightbox-close {
        top: 15px;
        right: 15px;
        position: fixed;
      }
      .lightbox-counter {
        bottom: 30px;
        position: fixed;
      }
      .lightbox-content-wrapper {
        max-width: 95%;
        max-height: 75%;
      }
    }

    /* FOOTER */
    footer {
      background: #010306;
      padding: 6rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      text-align: center;
    }

    .footer-logo {
      font-family: var(--font-title);
      font-weight: 900;
      font-size: 1.7rem;
      color: #fff;
      margin-bottom: 1.5rem;
      letter-spacing: -0.03em;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }

    .footer-links a {
      color: #8c829e;
      text-decoration: none;
      transition: color 0.3s;
      font-weight: 500;
    }

    .footer-links a:hover {
      color: var(--accent-secondary);
    }

    .footer-copy {
      font-size: 0.9rem;
      color: #554f60;
    }

    /* BOTÃO WHATSAPP FLUTUANTE */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      color: #fff !important;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.95rem;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.3);
      z-index: 998;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      animation: whatsappPulse 2s infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1) rotate(5deg);
      background-color: #20ba5a;
      box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
      color: #fff !important;
    }

    @keyframes whatsappPulse {
      0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.3);
      }
      70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0);
      }
    }

    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
      }
    }

    /* BOTÕES SOCIAIS */
    .btn-social-nav:hover {
      background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
      border-color: transparent !important;
      transform: scale(1.1);
      box-shadow: 0 5px 20px rgba(214, 36, 159, 0.4);
    }

    .footer-social-btn:hover {
      color: #fff !important;
      transform: translateY(-3px) scale(1.08);
      border-color: transparent !important;
    }

    .footer-social-btn[title="Instagram"]:hover {
      background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
      box-shadow: 0 5px 20px rgba(214, 36, 159, 0.35);
    }

    .footer-social-btn[title="WhatsApp"]:hover {
      background: #25d366 !important;
      box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
    }

    /* MENSAGEM DE SUCESSO DO FORMULÁRIO */
    .success-message {
      display: none;
      text-align: center;
      padding: 3rem 0;
    }

    .success-icon {
      font-size: 4rem;
      color: var(--accent-secondary);
      margin-bottom: 2rem;
    }

    .success-message h3 {
      font-size: 2rem;
      margin-bottom: 1.2rem;
      color: #fff;
    }

    .success-message p {
      margin-bottom: 2.5rem;
    }

    /* INDICADOR DE SCROLL PREMIUM */
    .mouse-icon {
      width: 26px;
      height: 42px;
      border: 2px solid rgba(255, 255, 255, 0.35);
      border-radius: 20px;
      position: relative;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    
    .mouse-wheel {
      width: 4px;
      height: 8px;
      background-color: var(--accent-secondary);
      border-radius: 2px;
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      animation: scrollWheelAnim 1.6s ease-in-out infinite;
    }
    
    @keyframes scrollWheelAnim {
      0% {
        opacity: 0;
        top: 6px;
        height: 4px;
      }
      20% {
        opacity: 1;
        top: 8px;
        height: 8px;
      }
      80% {
        opacity: 1;
        top: 20px;
        height: 8px;
      }
      100% {
        opacity: 0;
        top: 24px;
        height: 4px;
      }
    }
    
    .scroll-indicator:hover .mouse-icon {
      border-color: var(--accent-secondary);
      box-shadow: 0 0 12px var(--accent-secondary-glow);
    }

    @keyframes floatTicket {
      0% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-12px) rotate(4deg); }
      100% { transform: translateY(0px) rotate(0deg); }
    }
