
/* ========== COCO GOTHIC FONT ========== */
@font-face {
    font-family: "Coco Gothic";
    src: url("../fonts/CocoGothic-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0020-002F, U+003A-003F, U+0041-005A, U+005B-007E, U+00A0-00A9, U+00AB-00B4, U+00B6-00B9, U+00BB-00BE, U+00C0-00FF, U+0100-017F, U+0180-024F, U+1E00-1EFF;
    /* Exclui dígitos (0-9) U+0030-0039 e @ U+0040 - usarão Poppins automaticamente */
  }
  
  @font-face {
    font-family: "Coco Gothic";
    src: url("../fonts/CocoGothic-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0020-002F, U+003A-003F, U+0041-005A, U+005B-007E, U+00A0-00A9, U+00AB-00B4, U+00B6-00B9, U+00BB-00BE, U+00C0-00FF, U+0100-017F, U+0180-024F, U+1E00-1EFF;
    /* Exclui dígitos (0-9) U+0030-0039 e @ U+0040 - usarão Poppins automaticamente */
  }
  
  /* Fallback para números e caracteres especiais usando Poppins */
  @font-face {
    font-family: "Coco Gothic Fallback";
    src: local("Poppins");
    font-weight: normal;
    unicode-range: U+0030-0039, U+0040, U+00AA, U+00BA, U+00BF, U+20AC, U+00A3, U+00A5, U+00A2, U+00A9, U+00AE, U+2122;
  }
  
  @font-face {
    font-family: "Coco Gothic Fallback";
    src: local("Poppins");
    font-weight: bold;
    unicode-range: U+0030-0039, U+0040, U+00AA, U+00BA, U+00BF, U+20AC, U+00A3, U+00A5, U+00A2, U+00A9, U+00AE, U+2122;
  }
  
  /* Font stack que força Poppins para números e caracteres especiais quando Coco Gothic não tem suporte */
  /* Dígitos (0-9), @ (U+0040) e outros caracteres especiais usarão automaticamente Poppins */
  
  :root {
    /* Paleta Premium 2026 */
    --bg-light: #fbf6ef;
    --bg-warm: #fff2e0;
    --ink: #1b1410;
    --ink-soft: #3f352f;
    --muted: rgba(27, 20, 16, 0.64);
  
    /* Gradientes Mágicos */
    --gradient-gold: linear-gradient(135deg, #ffe29a 0%, #f59e0b 55%, #f97316 100%);
    --gradient-magic: linear-gradient(135deg, #0f766e 0%, #0ea5a6 45%, #f59e0b 100%);
    --gradient-sunset: linear-gradient(135deg, #fb7185 0%, #f97316 45%, #fbbf24 100%);
    --gradient-cyan: linear-gradient(135deg, #0ea5a6 0%, #0d9488 50%, #0f766e 100%);
    --gradient-indigo: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #0f4c81 100%);
    --gradient-purple: linear-gradient(135deg, #14b8a6 0%, #0ea5a6 50%, #f59e0b 100%);
    --gradient-amber: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    --gradient-coral: linear-gradient(135deg, #fb7185 0%, #f97316 50%, #ea580c 100%);
  
    /* Glassmorphism Premium */
    --glass-premium: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  
    /* Sombras em camadas */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.25);
  
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
  
    /* Animações */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
    /* Navigation height */
    --navbar-height: 80px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--navbar-height) + 16px);
  }
  
  html,
  body {
    height: 100%;
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  body {
    font-family: "Coco Gothic", "Coco Gothic Fallback", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  
    /* Background global sem imagem fixa */
    background-image:
      radial-gradient(1200px 800px at 10% -10%, rgba(14, 165, 166, 0.22), transparent 70%),
      radial-gradient(900px 700px at 90% 0%, rgba(245, 158, 11, 0.22), transparent 65%),
      linear-gradient(180deg, #fbf6ef 0%, #fff7ea 40%, #fffdf9 100%);
    background-attachment: scroll;
  }
  
  /* Sombra ambiental para separar seções do background */
  .section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 400px at 50% 0%, rgba(255, 255, 255, 0.35), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  
  .section__container,
  .section__header,
  .section__content,
  .atracoes__wrapper,
  .section__content--contato {
    position: relative;
    z-index: 1;
  }
  
  /* Prevent scroll when mobile menu is open */
  body.nav-open {
    overflow: hidden;
  }
  
  /* Overlay escuro quando menu mobile está aberto */
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 0.3s ease;
    /* Permitir cliques passarem através do overlay */
    pointer-events: none;
  }
  
  /* Prevent horizontal scroll on all elements */
  * {
    max-width: 100%;
  }
  
  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }
  
  /* ========== NAVIGATION BAR ========== */
  
  /* Added sticky navigation bar with modern design */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* Modern glassmorphism with subtle gradient */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.85) 100%);
    backdrop-filter: blur(16px) saturate(200%);
    -webkit-backdrop-filter: blur(16px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth), box-shadow 0.3s
      var(--transition-smooth);
  }
  
  .navbar--scrolled {
    /* Enhanced scrolled state with stronger blur */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  
  .navbar--hidden {
    transform: translateY(-100%);
  }
  
  .navbar__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar__logo {
    flex-shrink: 0;
    z-index: 2;
  }
  
  .navbar__logo-img {
    height: 45px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s var(--transition-smooth);
  }
  
  .navbar__logo-img:hover {
    transform: scale(1.05);
  }
  
  .navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    position: relative;
  }
  
  .navbar__toggle-icon {
    width: 100%;
    height: 3px;
    /* Modern gradient color for hamburger icon */
    background: linear-gradient(135deg, #0ea5a6 0%, #f59e0b 100%);
    border-radius: 10px;
    transition: all 0.3s var(--transition-smooth);
  }
  
  .navbar__toggle--active .navbar__toggle-icon:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  
  .navbar__toggle--active .navbar__toggle-icon:nth-child(2) {
    opacity: 0;
  }
  
  .navbar__toggle--active .navbar__toggle-icon:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  
  .navbar__menu {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 32px);
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .navbar__item {
    position: relative;
  }
  
  .navbar__link {
    display: block;
    padding: 8px 16px;
    font-family: "Coco Gothic", sans-serif;
    font-size: 15px;
    font-weight: 600;
    /* Modern dark gray color */
    color: #2b2f33;
    text-decoration: none;
    position: relative;
    border-radius: 12px;
    transition: all 0.3s var(--transition-smooth);
  }
  
  .navbar__link::before {
    /* Added modern background hover effect */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 166, 0.12) 0%, rgba(245, 158, 11, 0.12) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
  }
  
  .navbar__link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    /* Modern gradient underline */
    background: linear-gradient(90deg, #0ea5a6 0%, #f59e0b 50%, #f97316 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--transition-smooth);
  }
  
  .navbar__link:hover::before {
    opacity: 1;
  }
  
  .navbar__link:hover {
    /* Modern teal-amber gradient text on hover */
    color: #0f766e;
    transform: translateY(-2px);
  }
  
  .navbar__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .navbar__link--active {
    color: #0f766e;
  }
  
  .navbar__link--active::before {
    opacity: 1;
  }
  
  .navbar__link--active::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .scroll-progress {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    z-index: 999;
  }
  
  .scroll-progress__bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0ea5a6 0%, #f59e0b 60%, #f97316 100%);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.35);
    transition: width 0.15s ease-out;
  }
  
  .navbar__item--cta {
    margin-left: 8px;
  }
  
  .btn--nav {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  /* Mobile Navigation */
  @media (max-width: 768px) {
    .navbar__toggle {
      display: flex;
    }
  
    .navbar__menu {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: auto;
      width: min(85%, 340px);
      height: 100%;
      height: 100vh;
      height: 100dvh;
      /* Fundo 100% BRANCO SÓLIDO - múltiplas declarações para garantir */
      background: #ffffff !important;
      background-color: #ffffff !important;
      background-image: none !important;
      background-attachment: scroll !important;
      display: flex !important;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      padding: 100px 32px 32px;
      gap: 0;
      box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
      border-left: 4px solid #0ea5a6;
      transform: translateX(100%);
      transition: transform 0.3s var(--transition-smooth);
      z-index: 1001;
      /* Garantir visibilidade e cliques */
      pointer-events: auto !important;
      opacity: 1 !important;
      visibility: visible;
      /* Remover qualquer efeito de transparência */
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      /* Overflow para scroll se necessário */
      overflow-y: auto;
      overflow-x: hidden;
    }
    
    .navbar__menu--active {
      transform: translateX(0);
      display: flex !important;
    }
  
    .navbar__item {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      pointer-events: auto !important;
      background: #ffffff !important;
      background-color: #ffffff !important;
    }
  
    .navbar__item--cta {
      margin-left: 0;
      margin-top: 24px;
      border-bottom: none;
    }
  
    .navbar__link {
      padding: 18px 16px;
      font-size: 17px;
      font-weight: 700;
      /* Texto PRETO e bem visível */
      color: #1a1a1a !important;
      display: block;
      position: relative;
      z-index: 10;
      cursor: pointer;
      /* Garantir que os cliques funcionem */
      pointer-events: auto !important;
      /* Fundo sólido */
      background: #ffffff !important;
      background-color: #ffffff !important;
    }
    
    .navbar__link::before,
    .navbar__link::after {
      display: none !important;
      content: none !important;
    }
    
    .navbar__link:hover,
    .navbar__link:active {
      background: rgba(14, 165, 166, 0.12);
      color: #0f766e !important;
    }
  
    .btn--nav {
      width: 100%;
      justify-content: center;
      font-weight: 700;
    }
  }
  
  /* ========== HERO SECTION ========== */
  
  .soft-fade-edges {
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0) 90%);
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0) 90%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  
  .hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--navbar-height) + clamp(16px, 4vw, 40px)) clamp(24px, 4vw, 60px)
      clamp(24px, 4vw, 60px);
    position: relative;
    isolation: isolate;
    overflow: clip;
  }
  
  .hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("../img/new_hero.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  
  @media (max-width: 768px) {
    .hero__background {
      background-image: url("../img/new_hero_mobile.png");
      background-size: cover;
      background-position: center center;
      min-height: 100vh;
    }
  }
  
  @media (max-width: 480px) {
    .hero__background {
      background-image: url("../img/new_hero_mobile.png");
      background-size: cover;
      background-position: center center;
      min-height: 100vh;
    }
  }
  
  .hero__content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 4vw, 56px);
    position: relative;
    z-index: 1;
    margin-top: clamp(650px, 70vh, 950px);
    animation: fadeInUp 0.8s var(--transition-smooth) backwards;
    animation-delay: 0.3s;
  }
  
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease 0.8s backwards;
  }
  
  .hero__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero__media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;
  }
  
  .hero__logo-stack {
    width: 100%;
    max-width: 496px;
    margin-left: auto;
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
  }
  
  .hero__logo-underlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  
    background-image: url("../img/hero-background.jpg");
    background-size: 80%;
    background-position: center 55%;
    background-repeat: no-repeat;
    opacity: 0.8;
    filter: saturate(1.08) contrast(1.04);
  }
  
  .hero__logo-underlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    opacity: 0.35;
    filter: blur(10px);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 28%, rgba(0, 0, 0, 0) 60%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 28%, rgba(0, 0, 0, 0) 60%);
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero__logo {
    display: none;
  }
  
  @media (min-width: 769px) {
    .hero {
      padding: var(--navbar-height) 0 0;
    }
  
    .hero__content {
      width: 100%;
      max-width: none;
      padding: 0 0 0 clamp(24px, 6vw, 88px);
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      min-height: calc(100svh - var(--navbar-height));
      align-items: center;
    }
  
    .hero__media {
      align-self: stretch;
      justify-content: stretch;
      align-items: stretch;
      min-height: 100%;
    }
  
    .hero__logo-stack {
      max-width: none;
      height: 100%;
      margin-left: 0;
    }
  
    .hero__text {
      justify-self: center;
    }
  }
  
  .hero__eyebrow {
    margin-top: 0;
    font-size: clamp(28px, 4.2vw, 46px);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.08;
    text-transform: none;
    background: var(--gradient-magic);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 6px 24px rgba(15, 118, 110, 0.25);
    position: relative;
  }
  
  .hero__tagline {
    margin-top: 14px;
    font-size: clamp(16px, 2.1vw, 22px);
    font-weight: 500;
    color: var(--ink-soft);
    max-width: 700px;
    position: relative;
  }
  
  .hero__badges::after {
    content: "";
    flex-basis: 100%;
    height: 4px;
    display: block;
    width: clamp(56px, 10vw, 110px);
    margin-top: 18px;
    border-radius: 999px;
    background: var(--gradient-sunset);
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
  }
  
  
  .hero__badges {
    margin-top: clamp(20px, 3vw, 28px);
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .hero__badge {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(14, 165, 166, 0.12);
    color: #0f766e;
    border: 1px solid rgba(14, 165, 166, 0.25);
  }
  
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.92);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease 0.8s backwards;
  }
  
  .hero__actions .btn {
    min-width: 180px;
    padding: 16px 32px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
  }
  
  .hero__actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Added scroll indicator */
  .hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s ease 1.2s backwards;
  }
  
  .hero__scroll-icon {
    width: 28px;
    height: 44px;
    border: 2px solid var(--ink-soft);
    border-radius: 20px;
    position: relative;
  }
  
  .hero__scroll-icon::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--ink-soft);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
  }
  
  @keyframes scrollDown {
    0%,
    100% {
      transform: translate(-50%, 0);
      opacity: 1;
    }
    50% {
      transform: translate(-50%, 12px);
      opacity: 0;
    }
  }
  
  @media (max-width: 768px) {
    .hero__scroll-indicator {
      display: none;
    }
  }
  
  /* ========== BUTTONS PREMIUM ========== */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    /* Modern rounded corners instead of pill shape */
    border-radius: 16px;
    font-family: "Coco Gothic", sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.8vw, 16px);
    letter-spacing: 0.02em;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
  
    transition: all 0.3s var(--transition-smooth);
    will-change: transform;
    user-select: none;
  }
  
  /* Modern shimmer effect on hover */
  .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 40%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0.4) 60%,
      transparent 100%
    );
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
  }
  
  .btn:hover::before {
    transform: translateX(200%) skewX(-15deg);
  }
  
  .btn:focus-visible {
    /* Modern focus ring color */
    outline: 3px solid rgba(14, 165, 166, 0.45);
    outline-offset: 4px;
  }
  
  /* Modern vibrant gradient button */
  .btn--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #0f766e 0%, #0ea5a6 50%, #f59e0b 100%);
    background-size: 200% 200%;
    border: none;
    box-shadow: 0 8px 24px rgba(14, 165, 166, 0.35), 0 4px 12px rgba(245, 158, 11, 0.3), inset 0 1px 0
      rgba(255, 255, 255, 0.3);
    animation: gradient-shift 3s ease infinite;
  }
  
  @keyframes gradient-shift {
    0%,
    100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }
  
  .btn--primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(14, 165, 166, 0.45), 0 8px 20px rgba(245, 158, 11, 0.35), 0 4px 12px
      rgba(249, 115, 22, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  
  .btn--primary:active {
    transform: translateY(-2px) scale(1.01);
  }
  
  /* Modern glass morphism ghost button */
  .btn--ghost {
    color: #2b2f33;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(14, 165, 166, 0.2);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }
  
  .btn--ghost:hover {
    transform: translateY(-4px) scale(1.03);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(14, 165, 166, 0.4);
    box-shadow: 0 12px 32px rgba(14, 165, 166, 0.2), 0 6px 16px rgba(0, 0, 0, 0.1);
    color: #0f766e;
  }
  
  .btn--ghost:active {
    transform: translateY(-2px) scale(1.01);
  }
  
  .btn--large {
    padding: 18px 40px;
    font-size: clamp(15px, 2vw, 17px);
    border-radius: 18px;
  }
  
  /* ========== SECTIONS ========== */
  
  .section {
    padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
    position: relative;
  }
  
  /* Added reveal animation class */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .section--sobre {
    background: linear-gradient(
      to bottom,
      rgba(255, 249, 240, 0.85) 0%,
      rgba(255, 245, 230, 0.9) 50%,
      rgba(255, 249, 240, 0.85) 100%
    );
  }
  
  .section--coracao {
    background: linear-gradient(
      to bottom,
      rgba(14, 165, 166, 0.08) 0%,
      rgba(13, 148, 136, 0.12) 50%,
      rgba(14, 165, 166, 0.08) 100%
    );
    position: relative;
  }
  
  .section--coracao::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(14, 165, 166, 0.16) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .section--publico {
    background: linear-gradient(
      to bottom,
      rgba(2, 132, 199, 0.06) 0%,
      rgba(3, 105, 161, 0.1) 50%,
      rgba(2, 132, 199, 0.06) 100%
    );
    position: relative;
  }
  
  .section--publico::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(2, 132, 199, 0.14) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .section--temporada {
    background-image: url("../img/back1.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
  }
  
  .section--temporada::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 0;
  }
  
  .section--temporada .section__container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    grid-template-columns: 1fr;
    justify-items: start;
    margin-left: clamp(24px, 4vw, 60px);
    margin-right: auto;
  }
  
  .section--temporada .section__content {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }
  
  .section--temporada .section__title,
  .section--temporada .section__overline {
    text-align: left;
  }
  
  .section--temporada .temporada__actions {
    justify-content: flex-start;
  }
  
  .section--regulamento {
    background: linear-gradient(
      to bottom,
      rgba(255, 249, 240, 0.85) 0%,
      rgba(255, 245, 230, 0.9) 50%,
      rgba(255, 249, 240, 0.85) 100%
    );
  }
  
  .section__container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    box-sizing: border-box;
  }
  
  .section__container--reverse {
    direction: rtl;
  }
  
  .section__container--reverse > * {
    direction: ltr;
  }
  
  .section__container--center {
    text-align: center;
  }
  
  .section__content {
    animation: fadeInLeft 0.8s var(--transition-smooth);
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .section__overline {
    font-family: "Coco Gothic", sans-serif;
    font-size: clamp(11px, 1.4vw, 13px);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b45309;
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 18px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 999px;
  }
  
  .section__overline--cyan {
    color: #0f766e;
    background: rgba(14, 165, 166, 0.12);
  }
  
  .section__overline--indigo {
    color: #0f4c81;
    background: rgba(2, 132, 199, 0.12);
  }
  
  .section__overline--purple {
    color: #0f766e;
    background: rgba(14, 165, 166, 0.12);
  }
  
  .section__overline--amber {
    color: #b45309;
    background: rgba(245, 158, 11, 0.12);
  }
  
  .section__title {
    font-family: "Coco Gothic", sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: transparent;
    background: linear-gradient(135deg, #7c2d12 0%, #ea580c 50%, #f59e0b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: clamp(20px, 3vw, 32px);
    letter-spacing: -0.02em;
  }
  
  .section__title--cyan {
    background: var(--gradient-cyan);
    background-clip: text;
    -webkit-background-clip: text;
  }
  
  .section__title--indigo {
    background: var(--gradient-indigo);
    background-clip: text;
    -webkit-background-clip: text;
  }
  
  .section__title--purple {
    background: var(--gradient-purple);
    background-clip: text;
    -webkit-background-clip: text;
  }
  
  .section__title--amber {
    background: var(--gradient-amber);
    background-clip: text;
    -webkit-background-clip: text;
  }
  
  .section__text {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 20px;
    font-weight: 400;
  }
  
  .section__text strong {
    color: var(--ink);
    font-weight: 600;
  }
  
  .section__header {
    max-width: 800px;
    margin: 0 auto clamp(40px, 6vw, 64px);
  }
  
  .section__subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.6;
    color: var(--muted);
    margin-top: 16px;
    font-weight: 400;
  }
  
  .section__text--center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section__image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 0.8s var(--transition-smooth);
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .section__image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, transparent 55%);
    pointer-events: none;
  }
  
  .section__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
  }
  
  .section__image-wrapper:hover .section__image {
    transform: scale(1.05);
  }
  
  /* ========== TEMPORADA SECTION ========== */
  .temporada__info {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
  }
  
  .temporada__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(14, 165, 166, 0.2);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
  }
  
  .temporada__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .temporada__icon {
    font-size: 32px;
    flex-shrink: 0;
    flex-grow: 0;
    line-height: 1;
    min-width: 40px;
    text-align: center;
    align-self: flex-start;
  }
  
  .temporada__item > div {
    flex: 1;
    min-width: 0;
  }
  
  .temporada__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0f766e;
    margin-bottom: 8px;
    white-space: nowrap;
  }
  
  .temporada__value {
    display: block;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.6;
    word-wrap: break-word;
  }
  
  .temporada__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
  }
  
  /* ========== REGULAMENTO SECTION ========== */
  .regulamento__content {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .regulamento__section {
    margin-bottom: 40px;
  }
  
  .regulamento__subtitle {
    font-family: "Coco Gothic", "Poppins", sans-serif;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(245, 158, 11, 0.3);
  }
  
  .regulamento__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }
  
  .regulamento__item {
    padding: 16px 20px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-left: 4px solid #f59e0b;
    border-radius: var(--radius-sm);
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.7;
    color: var(--ink-soft);
  }
  
  .regulamento__item strong {
    color: var(--ink);
    font-weight: 600;
  }
  
  .regulamento__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
  }
  
  /* ========== CORACAO / STAGE LAYOUT ========== */
  .section__container--stage {
    grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
  }
  
  .stage__content {
    display: grid;
    gap: 12px;
  }
  
  .stage__highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 16px;
  }
  
  .stage__highlight {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(14, 165, 166, 0.1);
    border: 1px solid rgba(14, 165, 166, 0.18);
    box-shadow: var(--shadow-sm);
  }
  
  .stage__highlight-title {
    display: block;
    font-weight: 700;
    color: #0f766e;
    margin-bottom: 6px;
    font-size: 14px;
    letter-spacing: 0.02em;
  }
  
  .stage__highlight-text {
    display: block;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.5;
  }
  
  .stage__visual {
    position: relative;
    display: grid;
    align-items: center;
  }
  
  .stage__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .stage__image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 166, 0.25) 0%, transparent 55%);
    pointer-events: none;
  }
  
  .stage__image {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  
  .stage__card {
    position: absolute;
    right: 18px;
    bottom: -22px;
    max-width: 240px;
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--glass-premium);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
  }
  
  .stage__card-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: #0f766e;
    margin-bottom: 6px;
  }
  
  .stage__card-text {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  
  /* ========== PUBLICO LAYOUT ========== */
  .section__container--publico {
    grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
    grid-template-areas:
      "media content"
      "stats stats";
    align-items: start;
  }
  
  .publico__media {
    grid-area: media;
    position: relative;
    justify-self: center;
  }
  
  .publico__media::before {
    content: "";
    position: absolute;
    inset: -18px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }
  
  .publico__media-frame {
    position: relative;
    z-index: 1;
    width: min(320px, 80vw);
    aspect-ratio: 1 / 1;
    border-radius: 38% 62% 46% 54%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid rgba(255, 255, 255, 0.8);
  }
  
  .publico__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .publico__tag {
    position: absolute;
    right: -8px;
    bottom: 18px;
    z-index: 2;
    padding: 10px 16px;
    border-radius: 999px;
    color: #fff;
    font-family: "Poppins", "Coco Gothic", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gradient-indigo);
    box-shadow: var(--shadow-md);
  }
  
  .publico__content {
    grid-area: content;
  }
  
  .publico__stats {
    grid-area: stats;
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 16px;
    margin-top: clamp(24px, 4vw, 40px);
  }
  
  .publico__stat {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(2, 132, 199, 0.18);
    box-shadow: var(--shadow-sm);
  }
  
  .publico__stat-title {
    display: block;
    font-weight: 700;
    color: #0f4c81;
    margin-bottom: 6px;
    font-size: 14px;
  }
  
  .publico__stat-text {
    display: block;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  
  /* Added lazy loading image effect */
  .lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .lazy-image.loaded {
    opacity: 1;
  }
  
  /* ========== ATRAÇÕES SECTION ========== */
  
  .section--atracoes {
    position: relative;
    background: linear-gradient(
      to bottom,
      rgba(14, 165, 166, 0.08) 0%,
      rgba(245, 158, 11, 0.12) 50%,
      rgba(14, 165, 166, 0.08) 100%
    );
    overflow: hidden;
  }
  
  .atracoes__title-icon {
    width: clamp(60px, 10vw, 120px);
    height: auto;
    display: block;
    margin: clamp(16px, 3vw, 24px) auto 0;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
    opacity: 0.95;
  }
  
  .atracoes__hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5%;
  }
  
  .atracoes__bg {
    width: min(90%, 500px);
    height: auto;
    opacity: 0.18;
    filter: blur(1px);
    object-fit: contain;
  }
  
  .atracoes__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(14, 165, 166, 0.2) 0%, transparent 70%);
  }
  
  .atracoes__wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
  }
  
  .section--atracoes .section__header {
    text-align: center;
    margin-bottom: clamp(48px, 8vw, 72px);
  }
  
  .atracoes__grid {
    display: flex;
    gap: var(--atracoes-gap);
    margin-top: 0;
    padding-top: 16px;
    min-width: max-content;
  }
  
  .atracoes__scroll {
    position: relative;
    padding: 0;
    --atracoes-gap: clamp(20px, 3vw, 32px);
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .atracoes__viewport {
    overflow: hidden;
    scrollbar-width: none;
  }
  
  .atracoes__viewport::-webkit-scrollbar {
    display: none;
  }
  
  .atracoes__track {
    --marquee-gap: var(--atracoes-gap);
    --atracoes-loop: 0px;
    --atracoes-duration: 40s;
    display: flex;
    gap: var(--marquee-gap);
    width: max-content;
    animation: atracoes-marquee var(--atracoes-duration) linear infinite;
    will-change: transform;
  }
  
  @keyframes atracoes-marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-1 * var(--atracoes-loop)));
    }
  }
  
  .atracoes__scroll::before,
  .atracoes__scroll::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
  }
  
  .atracoes__scroll::before {
    left: 0;
    background: linear-gradient(90deg, rgba(251, 246, 239, 0.95) 0%, rgba(251, 246, 239, 0) 100%);
  }
  
  .atracoes__scroll::after {
    right: 0;
    background: linear-gradient(270deg, rgba(251, 246, 239, 0.95) 0%, rgba(251, 246, 239, 0) 100%);
  }
  
  /* ========== ATRAÇÃO CARDS ========== */
  
  .atracao-card {
    position: relative;
    overflow: hidden;
    flex: 0 0 clamp(220px, 24vw, 280px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 242, 224, 0.9) 60%, rgba(255, 255, 255, 0.96) 100%);
    border: 1.5px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-md);
    padding: clamp(24px, 4vw, 32px);
    text-align: center;
  
    transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth), border-color 0.3s
      var(--transition-smooth);
  
    animation: fadeInUp 0.6s var(--transition-smooth) backwards;
    animation-delay: calc(var(--card-index, 0) * 0.05s);
  }
  
  .atracao-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120px 120px at 20% 15%, rgba(14, 165, 166, 0.18), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
  }
  
  .atracao-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-sunset);
    opacity: 0.85;
  }
  
  .atracao-card > * {
    position: relative;
    z-index: 1;
  }
  
  .atracao-card:nth-child(1) {
    --card-index: 1;
  }
  .atracao-card:nth-child(2) {
    --card-index: 2;
  }
  .atracao-card:nth-child(3) {
    --card-index: 3;
  }
  .atracao-card:nth-child(4) {
    --card-index: 4;
  }
  .atracao-card:nth-child(5) {
    --card-index: 5;
  }
  .atracao-card:nth-child(6) {
    --card-index: 6;
  }
  .atracao-card:nth-child(7) {
    --card-index: 7;
  }
  .atracao-card:nth-child(8) {
    --card-index: 8;
  }
  .atracao-card:nth-child(9) {
    --card-index: 9;
  }
  .atracao-card:nth-child(10) {
    --card-index: 10;
  }
  .atracao-card:nth-child(11) {
    --card-index: 11;
  }
  .atracao-card:nth-child(12) {
    --card-index: 12;
  }
  
  .atracao-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 46px rgba(14, 165, 166, 0.2), 0 0 0 1px rgba(245, 158, 11, 0.35);
    border-color: rgba(245, 158, 11, 0.45);
  }
  
  .atracao-card__icon {
    font-size: clamp(36px, 5vw, 48px);
    margin: 2px auto 16px;
    line-height: 1;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(14, 165, 166, 0.12);
    border: 1px solid rgba(14, 165, 166, 0.25);
    filter: drop-shadow(0 4px 8px rgba(14, 165, 166, 0.2));
  }
  
  .atracao-card__title {
    font-family: "Coco Gothic", sans-serif;
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 10px;
  }
  
  .atracao-card__desc {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
  }
  
  /* ========== ESTRUTURA & LOCALIZAÇÃO SECTION ========== */
  
  .section--estrutura {
    background: linear-gradient(
      to bottom,
      rgba(245, 158, 11, 0.06) 0%,
      rgba(217, 119, 6, 0.1) 50%,
      rgba(245, 158, 11, 0.06) 100%
    );
    position: relative;
  }
  
  .section--estrutura::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(245, 158, 11, 0.15) 0%, transparent 65%);
    pointer-events: none;
  }
  
  .estrutura__details {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 5vw, 40px);
  }
  
  .estrutura__stats {
    margin-top: clamp(24px, 4vw, 40px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: clamp(16px, 3vw, 24px);
  }
  
  .estrutura__stat {
    padding: clamp(18px, 3vw, 24px);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(245, 158, 11, 0.25);
    box-shadow: var(--shadow-sm);
    text-align: center;
  }
  
  .estrutura__stat-number {
    display: block;
    font-family: "Poppins", "Coco Gothic", sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: #b45309;
    margin-bottom: 6px;
    visibility: visible;
    opacity: 1;
  }
  
  .estrutura__stat-label {
    font-size: 14px;
    color: var(--ink-soft);
  }
  
  .mapa__wrapper {
    margin-top: clamp(40px, 6vw, 64px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 252, 245, 0.9) 100%);
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: clamp(16px, 3vw, 32px);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(245, 158, 11, 0.1);
  
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
  
    animation: fadeInScale 0.8s var(--transition-smooth) backwards;
  }
  
  .mapa__wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(245, 158, 11, 0.2), 0 0 0 2px rgba(245, 158, 11, 0.2);
  }
  
  .estrutura__details .estrutura__stats,
  .estrutura__details .mapa__wrapper {
    margin-top: 0;
  }
  
  .mapa__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s var(--transition-smooth);
  }
  
  .mapa__wrapper:hover .mapa__image {
    transform: scale(1.02);
  }
  
  /* ========== MARKETING & MARCAS SECTIONS (BG IMAGE) ========== */
  
  .section--marketing,
  .section--marcas {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .section__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
  }
  
  .section--marketing .section__bg-image {
    opacity: 0.3;
    background-size: cover;
    background-position: top center;
  }
  
  .section--marcas .section__bg-image {
    opacity: 0.2;
  }
  
  .section--marketing {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(245, 158, 11, 0.08) 100%);
  }
  
  .section--marcas {
    background: linear-gradient(135deg, rgba(8, 47, 73, 0.95) 0%, rgba(6, 78, 59, 0.95) 100%);
  }
  
  .section__container--split {
    position: relative;
    z-index: 1;
    max-width: 900px;
  }
  
  .section__title--coral {
    background: var(--gradient-coral);
    background-clip: text;
    -webkit-background-clip: text;
  }
  
  .section__title--white {
    color: #ffffff;
    background: none;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  }
  
  .section__subtitle--dark {
    color: var(--ink);
    font-weight: 500;
  }
  
  .section__subtitle--white {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
  }
  
  .section__overline--light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
  }
  
  .section__content--panel {
    padding: clamp(28px, 5vw, 40px);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1.5px solid rgba(245, 158, 11, 0.22);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
  }
  
  .section__content--panel-dark {
    background: rgba(6, 60, 68, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  /* ========== MARKETING LAYOUT ========== */
  
  .section__container--marketing {
    grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.9fr);
    align-items: center;
  }
  
  .marketing__content {
    display: grid;
    gap: 16px;
    position: relative;
    z-index: 1;
  }
  
  .marketing__channels {
    list-style: none;
    margin: clamp(24px, 4vw, 32px) 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
  }
  
  .marketing__channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
  }
  
  .marketing__channel:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
  }
  
  .marketing__channel-icon {
    font-size: 22px;
    line-height: 1;
  }
  
  .marketing__channel-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
  }
  
  .marketing__ticker {
    position: relative;
    overflow: hidden;
    margin-top: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.2);
  }
  
  .marketing__ticker-track {
    display: inline-flex;
    gap: 24px;
    padding: 10px 16px;
    white-space: nowrap;
    animation: marketingTicker 18s linear infinite;
    color: #7c2d12;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
  }
  
  .marketing__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 360px;
  }
  
  .marketing__orbit {
    position: relative;
    width: min(360px, 70vw);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px dashed rgba(245, 158, 11, 0.4);
    display: grid;
    place-items: center;
    animation: marketingPulse 6s ease-in-out infinite;
  }
  
  .marketing__orbit::before {
    content: "";
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.2);
  }
  
  .marketing__core {
    width: 160px;
    height: 160px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: var(--shadow-md);
    display: grid;
    place-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px;
  }
  
  .marketing__core-title {
    font-weight: 800;
    font-size: 16px;
    color: #7c2d12;
  }
  
  .marketing__core-subtitle {
    font-size: 13px;
    color: var(--ink-soft);
  }
  
  .marketing__node {
    position: absolute;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.2);
    font-size: 12px;
    font-weight: 700;
    color: #7c2d12;
    box-shadow: var(--shadow-sm);
  }
  
  .marketing__node--social {
    transform: rotate(0deg) translate(0, -160px) rotate(0deg);
  }
  
  .marketing__node--influencers {
    transform: rotate(72deg) translate(0, -160px) rotate(-72deg);
  }
  
  .marketing__node--tv {
    transform: rotate(144deg) translate(0, -160px) rotate(-144deg);
  }
  
  .marketing__node--ooh {
    transform: rotate(216deg) translate(0, -160px) rotate(-216deg);
  }
  
  .marketing__node--partners {
    transform: rotate(288deg) translate(0, -160px) rotate(-288deg);
  }
  
  .marketing__card {
    position: absolute;
    bottom: 12px;
    right: 8%;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: var(--shadow-md);
    max-width: 200px;
    animation: floatUp 6s ease-in-out infinite;
  }
  
  .marketing__card-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b45309;
    font-weight: 700;
    margin-bottom: 6px;
  }
  
  .marketing__card-text {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  
  /* ========== MARCAS LAYOUT ========== */
  
  .section__container--marcas {
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    align-items: start;
  }
  
  .marcas__intro {
    display: grid;
    gap: 16px;
    position: relative;
    z-index: 1;
  }
  
  .marcas__meter {
    margin-top: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .marcas__meter-bar {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #f59e0b, #f97316);
    animation: marcasPulse 4s ease-in-out infinite;
    box-shadow: 0 0 18px rgba(245, 158, 11, 0.4);
  }
  
  .marcas__meter-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  
  .marcas__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  
  .marcas__card {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    transition: transform 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
  }
  
  .marcas__card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.45);
  }
  
  .marcas__card--wide {
    grid-column: span 2;
  }
  
  .marcas__card-icon {
    font-size: 26px;
    display: inline-flex;
    margin-bottom: 12px;
  }
  
  .marcas__card-title {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
  }
  
  .marcas__card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
  }
  
  @keyframes marketingTicker {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
  @keyframes marketingPulse {
    0%,
    100% {
      transform: scale(0.98);
    }
    50% {
      transform: scale(1);
    }
  }
  
  @keyframes floatUp {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes marcasPulse {
    0%,
    100% {
      transform: scaleX(0.85);
      opacity: 0.7;
    }
    50% {
      transform: scaleX(1);
      opacity: 1;
    }
  }
  
  /* ========== FEATURES LIST ========== */
  
  .features-list {
    list-style: none;
    margin: clamp(32px, 5vw, 48px) 0 0;
    padding: 0;
    display: grid;
    gap: clamp(16px, 2.5vw, 24px);
  }
  
  @media (min-width: 900px) {
    .features-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  .features-list__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: clamp(16px, 2.5vw, 20px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(245, 158, 11, 0.2);
    box-shadow: var(--shadow-sm);
  
    transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
  
    animation: fadeInLeft 0.6s var(--transition-smooth) backwards;
    animation-delay: calc(var(--item-index, 0) * 0.08s);
  }
  
  .features-list__item:nth-child(1) {
    --item-index: 1;
  }
  .features-list__item:nth-child(2) {
    --item-index: 2;
  }
  .features-list__item:nth-child(3) {
    --item-index: 3;
  }
  .features-list__item:nth-child(4) {
    --item-index: 4;
  }
  .features-list__item:nth-child(5) {
    --item-index: 5;
  }
  
  .features-list__item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
  }
  
  .features-list__icon {
    font-size: clamp(24px, 3vw, 28px);
    flex-shrink: 0;
    line-height: 1;
  }
  
  .features-list__text {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.6;
    color: var(--ink);
    font-weight: 500;
  }
  
  .features-list--white .features-list__item {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
  }
  
  .features-list--white .features-list__text {
    color: #ffffff;
  }
  
  /* ========== PROJECAO SECTION ========== */
  
  .section--contato {
    position: relative;
    min-height: auto;
    background:
      radial-gradient(900px 600px at 15% 0%, rgba(14, 165, 166, 0.25), transparent 65%),
      radial-gradient(800px 600px at 85% 10%, rgba(249, 115, 22, 0.22), transparent 60%),
      linear-gradient(180deg, #f4fbff 0%, #fef7ee 60%, #fffaf2 100%);
    padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
    overflow: hidden;
  }
  
  .section--contato::after {
    content: "";
    position: absolute;
    inset: -10%;
    background-image:
      radial-gradient(circle at 1px 1px, rgba(14, 165, 166, 0.35) 0, transparent 2px),
      radial-gradient(circle at 1px 1px, rgba(245, 158, 11, 0.25) 0, transparent 2px);
    background-size: 140px 140px, 180px 180px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
  }
  
  .section--contato .section__container {
    position: relative;
    z-index: 1;
  }
  
  .section__content--contato {
    position: relative;
    background: rgba(255, 255, 255, 0.88);
    padding: clamp(36px, 5vw, 64px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 165, 166, 0.2);
    box-shadow: var(--shadow-lg), 0 0 80px rgba(14, 165, 166, 0.18);
    backdrop-filter: blur(12px);
    text-align: left;
    overflow: hidden;
  }
  
  .section__content--contato::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    pointer-events: none;
    opacity: 0.9;
  }
  
  .section__content--contato > * {
    position: relative;
    z-index: 1;
  }
  
  .projecao {
    display: grid;
    gap: clamp(28px, 5vw, 48px);
  }
  
  .projecao__header {
    display: grid;
    gap: 12px;
  }
  
  .projecao__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .projecao__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(14, 165, 166, 0.35);
    background: linear-gradient(135deg, rgba(14, 165, 166, 0.18) 0%, rgba(245, 158, 11, 0.2) 100%);
    color: #0f766e;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  .projecao__lead {
    font-size: clamp(16px, 2.3vw, 20px);
    line-height: 1.8;
    color: var(--ink-soft);
    max-width: 900px;
  }
  
  .projecao__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(16px, 3vw, 24px);
  }
  
  .projecao__stat {
    position: relative;
    padding: clamp(16px, 2.5vw, 24px);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(14, 165, 166, 0.2);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }
  
  .projecao__stat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(14, 165, 166, 0.12), transparent 65%);
    opacity: 0.8;
  }
  
  .projecao__stat::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, rgba(14, 165, 166, 0.9), rgba(245, 158, 11, 0.9));
  }
  
  .projecao__stat > * {
    position: relative;
    z-index: 1;
  }
  
  .projecao__stat-value {
    font-family: "Poppins", "Coco Gothic", sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--ink);
    visibility: visible;
    opacity: 1;
  }
  
  .projecao__stat-label {
    font-size: 14px;
    color: var(--muted);
    margin-top: 6px;
  }
  
  .projecao__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
    gap: clamp(24px, 5vw, 48px);
    align-items: stretch;
  }
  
  /* ========== GALERIA DE FOGOS ========== */
  
  .fogos__galeria {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(6, minmax(0, 1fr));
    gap: clamp(12px, 2.5vw, 20px);
    min-height: clamp(320px, 46vw, 480px);
    position: relative;
  }
  
  .fogos__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(14, 165, 166, 0.2);
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
    animation: fadeInScale 0.8s var(--transition-smooth) backwards;
  }
  
  .fogos__card--primary {
    grid-column: 1 / span 4;
    grid-row: 1 / span 5;
    transform: rotate(-1.5deg);
    animation-delay: 0.1s;
  }
  
  .fogos__card--secondary {
    grid-column: 3 / -1;
    grid-row: 3 / -1;
    transform: rotate(2deg);
    animation-delay: 0.2s;
  }
  
  .fogos__card:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: 0 26px 70px rgba(14, 165, 166, 0.25), 0 0 0 2px rgba(245, 158, 11, 0.2);
  }
  
  .fogos__image {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
  }
  
  .fogos__card:hover .fogos__image {
    transform: scale(1.08);
  }
  
  .fogos__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(14px, 2.5vw, 22px);
    font-family: "Coco Gothic", sans-serif;
    font-size: clamp(14px, 1.8vw, 17px);
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    background: linear-gradient(180deg, rgba(15, 118, 110, 0) 0%, rgba(15, 118, 110, 0.75) 100%);
  }
  
  .fogos__card--secondary .fogos__caption {
    background: linear-gradient(180deg, rgba(249, 115, 22, 0) 0%, rgba(249, 115, 22, 0.7) 100%);
  }
  
  /* ========== CONTATO INFO & CTA ========== */
  
  .projecao__panel {
    position: relative;
    display: grid;
    gap: clamp(20px, 3vw, 28px);
    padding: clamp(24px, 4vw, 32px);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(15, 118, 110, 0.95) 0%, rgba(14, 165, 166, 0.92) 45%, rgba(245, 158, 11, 0.92) 100%);
    box-shadow: var(--shadow-lg), 0 0 50px rgba(14, 165, 166, 0.35);
    color: #ffffff;
    overflow: hidden;
  }
  
  .projecao__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(220px 220px at 20% 0%, rgba(255, 255, 255, 0.35), transparent 65%);
    opacity: 0.6;
    pointer-events: none;
  }
  
  .projecao__panel > * {
    position: relative;
    z-index: 1;
  }
  
  .contato__info {
    margin: 0;
    display: grid;
    gap: clamp(20px, 3vw, 28px);
    align-items: stretch;
  }
  
  .contato__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: clamp(18px, 3vw, 28px);
    background: rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    text-align: center;
  }
  
  .contato__badge-year {
    font-family: "Coco Gothic", sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  }
  
  .contato__badge-label {
    font-family: "Coco Gothic", sans-serif;
    font-size: clamp(13px, 1.8vw, 16px);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
  }
  
  .contato__details {
    display: grid;
    gap: 14px;
    align-items: stretch;
    width: 100%;
  }
  
  .contato__link,
  .contato__producer,
  .contato__horarios {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: clamp(12px, 2.2vw, 16px) clamp(18px, 3vw, 24px);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    font-size: clamp(14px, 1.9vw, 16px);
    color: #ffffff;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: transform 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth), box-shadow 0.3s
      var(--transition-smooth);
  }
  
  .contato__horarios > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.5;
  }
  
  .contato__horarios strong {
    margin-bottom: 2px;
  }
  
  .contato__link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-sm);
  }
  
  .contato__icon {
    font-size: clamp(18px, 2.4vw, 22px);
    flex-shrink: 0;
  }
  
  .cta__actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0;
  }
  
  .cta__actions--panel {
    display: grid;
    gap: 12px;
  }
  
  .cta__actions--panel .btn {
    width: 100%;
    justify-content: center;
  }
  
  .projecao__panel .btn--ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 2px solid rgba(255, 255, 255, 0.5);
  }
  
  .projecao__panel .btn--ghost:hover {
    color: #0f766e;
    background: rgba(255, 255, 255, 0.95);
    border-color: transparent;
  }
  
  /* ========== FOOTER ========== */
  
  /* Added professional footer */
  .footer {
    background: linear-gradient(135deg, rgba(26, 22, 20, 0.95) 0%, rgba(61, 57, 53, 0.98) 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 80px) clamp(32px, 5vw, 48px);
    position: relative;
    overflow: hidden;
  }
  
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
  }
  
  .footer__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 5vw, 48px);
  }
  
  .footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  
  .footer__logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.2));
  }
  
  .footer__tagline {
    font-family: "Coco Gothic", sans-serif;
    font-size: clamp(14px, 1.8vw, 17px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
  }
  
  .footer__social {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  
  .footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
  
    transition: transform 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth), color 0.3s
      var(--transition-smooth);
  }
  
  .footer__social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
  }
  
  .footer__bottom {
    width: 100%;
    padding-top: clamp(24px, 4vw, 32px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  
  .footer__link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s var(--transition-smooth);
  }
  
  .footer__link:hover {
    color: #fbbf24;
  }
  
  .footer__copyright {
    font-size: clamp(13px, 1.6vw, 15px);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }
  
  /* ========== FLOATING CTA ========== */
  
  .cta-float {
    position: fixed;
    left: 32px;
    bottom: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(14, 165, 166, 0.2);
    box-shadow: var(--shadow-md);
    color: #0f766e;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    z-index: 998;
    transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
  }
  
  .cta-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14, 165, 166, 0.25);
  }
  
  .cta-float__icon {
    font-size: 18px;
  }
  
  .cta-float__text {
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  
  /* ========== LIGHTBOX ========== */
  
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(12, 16, 20, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1100;
    padding: 24px;
  }
  
  .lightbox--open {
    opacity: 1;
    pointer-events: auto;
  }
  
  .lightbox__image {
    max-width: min(900px, 92vw);
    max-height: 80vh;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }
  
  .lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  
  .lightbox__close:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
  }
  
  body.lightbox-open {
    overflow: hidden;
  }
  
  [data-lightbox] {
    cursor: pointer;
  }
  
  /* ========== BACK TO TOP BUTTON ========== */
  
  /* Added back to top button */
  .back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: var(--gradient-gold);
    border: 2px solid rgba(255, 206, 120, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 170, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #1f1504;
    z-index: 999;
  
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
  
    transition: opacity 0.3s var(--transition-smooth), visibility 0.3s var(--transition-smooth), transform 0.3s
      var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
  }
  
  .back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .back-to-top:hover {
    box-shadow: 0 8px 32px rgba(255, 170, 0, 0.5), var(--shadow-glow);
    transform: translateY(-3px);
  }
  
  .back-to-top:active {
    transform: translateY(-1px);
  }
  
  @media (max-width: 768px) {
    .back-to-top {
      bottom: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
    }
  
    .cta-float {
      left: 16px;
      bottom: 24px;
      padding: 10px 14px;
    }
  
    .cta-float__text {
      display: none;
    }
    
    .section--temporada .section__container {
      margin-left: 0;
      margin-right: 0;
      max-width: 100%;
      padding-left: clamp(16px, 4vw, 24px);
      padding-right: clamp(16px, 4vw, 24px);
      width: 100%;
      box-sizing: border-box;
    }
    
    .section--temporada .section__content {
      width: 100%;
      max-width: 100%;
      padding: 0;
      box-sizing: border-box;
    }
    
    .section--temporada .temporada__info {
      width: 100%;
      box-sizing: border-box;
    }
    
    .section--temporada .temporada__item {
      width: 100%;
      box-sizing: border-box;
    }
    
    .temporada__item {
      padding: 16px;
      gap: 16px;
    }
    
    .temporada__icon {
      font-size: 28px;
      min-width: 36px;
    }
    
    .temporada__label {
      white-space: normal;
      font-size: 11px;
    }
    
    .temporada__value {
      font-size: 15px;
    }
    
    .temporada__actions {
      flex-direction: column;
      width: 100%;
    }
    
    .temporada__actions .btn {
      width: 100%;
    }
    
    .regulamento__subtitle {
      font-size: clamp(20px, 5vw, 24px);
    }
    
    .regulamento__item {
      padding: 14px 16px;
    }
    
    .regulamento__actions {
      flex-direction: column;
    }
  }
  
  /* ========== RESPONSIVE ENHANCEMENTS ========== */
  
  @media (max-width: 1024px) {
    .section__container {
      grid-template-columns: 1fr;
    }
  
    .section__container--stage {
      grid-template-columns: 1fr;
    }
  
    .section__container--publico {
      grid-template-columns: 1fr;
      grid-template-areas:
        "content"
        "media"
        "stats";
    }
  
    .section__container--marketing,
    .section__container--marcas {
      grid-template-columns: 1fr;
    }
  
    .section__container--reverse {
      direction: ltr;
    }
  
    .section__title {
      font-size: clamp(32px, 6vw, 48px);
    }
  
    .section__subtitle {
      font-size: clamp(16px, 3vw, 20px);
    }
  
    .atracao-card {
      min-width: min(78vw, 320px);
      flex: 0 0 auto;
    }
  
    .atracoes__scroll::before,
    .atracoes__scroll::after {
      opacity: 1;
    }
  }
  
  @media (max-width: 768px) {
    /* Hero section */
    .hero {
      min-height: 100vh;
      padding: calc(var(--navbar-height) + 8px) 20px 20px;
    }
  
    .hero__content {
      padding: 24px 16px;
      margin-top: clamp(350px, 40vh, 450px);
    }
    
    .hero__background {
      background-image: url("../img/new_hero_mobile.png");
      background-size: cover;
      background-position: center center;
      min-height: 100vh;
    }
  
    .hero__actions {
      flex-direction: column;
      width: 100%;
      gap: 12px;
    }
  
    .hero__actions .btn {
      width: 100%;
      min-width: auto;
      padding: 16px 24px;
    }
  
    /* Section adjustments */
    .section {
      padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 40px);
    }
  
    .section__title {
      font-size: clamp(28px, 7vw, 40px);
      line-height: 1.2;
    }
  
    .section__overline {
      font-size: 13px;
    }
  
    .section__subtitle {
      font-size: 16px;
      line-height: 1.6;
    }
  
    .section__text {
      font-size: 15px;
      line-height: 1.7;
    }
  
    .section__image-wrapper {
      margin-top: 32px;
    }
  
    .stage__highlights {
      grid-template-columns: 1fr;
    }
  
    .stage__card {
      position: static;
      margin-top: 16px;
    }
  
    .publico__media-frame {
      width: min(280px, 76vw);
    }
  
    .publico__tag {
      right: 0;
      bottom: 10px;
    }
  
    .publico__stats {
      grid-template-columns: 1fr;
    }
  
    .marketing__visual {
      min-height: 300px;
      margin-top: 24px;
    }
  
    .marketing__orbit {
      width: min(280px, 80vw);
    }
  
    .marketing__node--social,
    .marketing__node--influencers,
    .marketing__node--tv,
    .marketing__node--ooh,
    .marketing__node--partners {
      transform: none;
    }
  
    .marketing__node {
      position: static;
    }
  
    .marketing__orbit {
      border: none;
      animation: none;
      gap: 10px;
    }
  
    .marketing__orbit::before {
      display: none;
    }
  
    .marketing__orbit {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
      width: 100%;
      max-width: 420px;
    }
  
    .marketing__core {
      grid-column: span 2;
      width: auto;
      height: auto;
    }
  
    .marketing__card {
      position: static;
      margin-top: 16px;
      animation: none;
    }
  
    .marcas__grid {
      grid-template-columns: 1fr;
    }
  
    .marcas__card--wide {
      grid-column: auto;
    }
  
    /* Atrações */
    .atracoes__title-icon {
      width: clamp(70px, 15vw, 100px);
      margin-top: 16px;
    }
  
    .atracoes__scroll {
      --atracoes-gap: 16px;
    }
  
    .atracoes__grid {
      gap: var(--atracoes-gap);
      grid-template-columns: 1fr;
    }
  
    .atracao-card {
      padding: 24px 20px;
    }
  
    .atracao-card__icon {
      font-size: clamp(48px, 12vw, 64px);
    }
  
    .atracao-card__title {
      font-size: 18px;
    }
  
    .atracao-card__desc {
      font-size: 14px;
    }
  
    /* Estrutura section */
    .estrutura__grid {
      gap: 16px;
    }
  
    .estrutura__item {
      padding: 20px;
    }
  
    /* Footer */
    .footer {
      padding: 40px 20px 32px;
    }
  
    .footer__content {
      flex-direction: column;
      gap: 24px;
      text-align: center;
    }
  
    /* Fogos galeria */
    .fogos__galeria {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      min-height: auto;
      gap: 20px;
    }
  
    /* Contato */
    .projecao__title-row {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .projecao__stats {
      grid-template-columns: 1fr;
    }
  
    .projecao__layout {
      grid-template-columns: 1fr;
    }
  
    .fogos__card--primary,
    .fogos__card--secondary {
      grid-column: auto;
      grid-row: auto;
      transform: none;
    }
  
    .contato__details {
      width: 100%;
    }
  
    .contato__link,
    .contato__producer {
      width: 100%;
      justify-content: center;
      font-size: 14px;
      text-align: center;
    }
  
    .contato__badge {
      padding: 16px 24px;
    }
  
    .contato__badge-year {
      font-size: 32px;
    }
  
    .contato__badge-label {
      font-size: 13px;
    }
  
    .cta__actions--panel {
      width: 100%;
    }
  }
  
  /* Mobile Small - Extra adjustments for very small screens */
  @media (max-width: 480px) {
    /* Hero */
    .hero {
      padding: 16px;
    }
  
    .hero__content {
      padding: 20px 12px;
    }
  
    .hero__logo-stack {
      max-width: 72vw;
    }
  
    .hero__actions .btn {
      font-size: 15px;
      padding: 14px 20px;
    }
  
    /* Sections */
    .section {
      padding: 32px 16px;
    }
  
    .section__title {
      font-size: clamp(24px, 8vw, 32px);
      margin-bottom: 12px;
    }
  
    .section__overline {
      font-size: 12px;
      margin-bottom: 8px;
    }
  
    .section__subtitle {
      font-size: 15px;
      margin-top: 12px;
    }
  
    .section__text {
      font-size: 14px;
      line-height: 1.65;
    }
  
    /* Buttons */
    .btn {
      font-size: 14px;
      padding: 14px 24px;
    }
  
    .btn--large {
      font-size: 15px;
      padding: 16px 28px;
    }
  
    /* Atrações */
    .atracoes__wrapper {
      padding: 0 16px;
    }
  
    .atracoes__title-icon {
      width: clamp(60px, 18vw, 90px);
    }
  
    .atracao-card {
      padding: 20px 16px;
    }
  
    .atracao-card__icon {
      font-size: 48px;
      margin-bottom: 12px;
    }
  
    .atracao-card__title {
      font-size: 17px;
      margin-bottom: 8px;
    }
  
    .atracao-card__desc {
      font-size: 13px;
    }
  
    /* Estrutura cards */
    .estrutura__item {
      padding: 18px 16px;
    }
  
    .estrutura__number {
      font-size: 28px;
      margin-bottom: 8px;
    }
  
    .estrutura__label {
      font-size: 13px;
    }
  
    /* Footer */
    .footer {
      padding: 32px 16px 24px;
    }
  
    .footer__logo {
      height: 32px;
    }
  
    .footer__text {
      font-size: 13px;
    }
  
    /* Back to top button */
    .back-to-top {
      width: 44px;
      height: 44px;
      bottom: 20px;
      right: 20px;
    }
  
    /* Contato */
    .contato__info {
      gap: 20px;
    }
  
    .projecao__chip {
      font-size: 10px;
      padding: 6px 12px;
    }
  
    .contato__badge {
      padding: 14px 20px;
    }
  
    .contato__badge-year {
      font-size: 28px;
    }
  
    .contato__badge-label {
      font-size: 12px;
    }
  
    .contato__link,
    .contato__producer {
      font-size: 13px;
      padding: 12px 16px;
    }
  
    /* Fogos images */
    .fogos__card {
      border-radius: 16px;
    }
  
    .fogos__image {
      border-radius: 16px;
    }
  
    .fogos__caption {
      font-size: 13px;
      padding: 10px;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  
    .hero__scroll-icon::before {
      animation: none;
    }
  }

  /* ========== POPUP COM PAGINAÇÃO ========== */
  
  .popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 16, 20, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--transition-smooth);
    padding: 24px;
  }
  
  .popup-overlay--visible {
    opacity: 1;
    pointer-events: auto;
  }
  
  .popup-overlay:not(.popup-overlay--visible) {
    display: none;
  }
  
  body.popup-open {
    overflow: hidden;
  }
  
  .popup-container {
    position: relative;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transform: scale(0.9);
    transition: transform 0.4s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .popup-overlay--visible .popup-container {
    transform: scale(1);
  }
  
  .popup-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
  }
  
  .popup-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  .popup-content {
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    align-items: center;
    overflow: visible;
  }
  
  .popup-image-wrapper {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0 80px 0 0;
    overflow: visible;
  }
  
  .popup-image {
    width: auto;
    height: auto;
    max-width: 60vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  .popup-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 15;
    transition: transform 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
  }
  
  .popup-arrow svg {
    width: 28px;
    height: 28px;
    stroke-width: 3;
  }
  
  .popup-arrow:hover {
    transform: translateY(-50%) scale(1.15);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  }
  
  .popup-arrow:active {
    transform: translateY(-50%) scale(1.05);
  }
  
  .popup-arrow--next {
    animation: pulseArrow 2s ease-in-out infinite;
  }
  
  @keyframes pulseArrow {
    0%, 100% {
      transform: translateY(-50%) translateX(0);
    }
    50% {
      transform: translateY(-50%) translateX(8px);
    }
  }
  
  .popup-pagination {
    padding: 16px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-top: none;
  }
  
  .popup-page-indicator {
    font-family: "Coco Gothic", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .popup-image {
      max-width: 70vw;
      max-height: 75vh;
    }
    
    .popup-image-wrapper {
      padding: 0 60px 0 0;
    }
    
    .popup-arrow {
      width: 48px;
      height: 48px;
      right: -15px;
    }
    
    .popup-arrow svg {
      width: 24px;
      height: 24px;
    }
    
    .popup-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: -15px;
      right: -15px;
    }
    
    .popup-pagination {
      padding: 12px 0 0;
    }
    
    .popup-page-indicator {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .popup-overlay {
      padding: 16px;
    }
    
    .popup-image {
      max-width: 80vw;
      max-height: 70vh;
    }
    
    .popup-image-wrapper {
      padding: 0 50px 0 0;
    }
    
    .popup-arrow {
      width: 44px;
      height: 44px;
      right: -12px;
    }
    
    .popup-arrow svg {
      width: 20px;
      height: 20px;
    }
    
    .popup-close {
      width: 36px;
      height: 36px;
      font-size: 20px;
      top: -12px;
      right: -12px;
    }
    
    .popup-pagination {
      padding: 10px 0 0;
    }
  }
  
  /* ========== SEÇÃO PROGRAMAÇÃO ========== */
  .section--programacao {
    background: linear-gradient(135deg, #f8f3ed 0%, #fef8f1 100%);
    position: relative;
    overflow: hidden;
  }
  
  .section--programacao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.06) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.06) 0%, transparent 40%);
    pointer-events: none;
  }
  
  .programacao__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 24px;
    margin-top: 48px;
  }
  
  .programacao__card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(27, 20, 16, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .programacao__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .programacao__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27, 20, 16, 0.12);
  }
  
  .programacao__card:hover::before {
    transform: scaleX(1);
  }
  
  .programacao__card--show::before {
    background: linear-gradient(90deg, #a855f7 0%, #ec4899 100%);
  }
  
  .programacao__card--velozes::before {
    background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
  }
  
  .programacao__card--fogos::before {
    background: linear-gradient(90deg, #8b5cf6 0%, #d946ef 100%);
  }
  
  .programacao__card--meetgreet::before {
    background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 100%);
  }
  
  .programacao__card--atracoes::before {
    background: linear-gradient(90deg, #10b981 0%, #14b8a6 100%);
  }
  
  .programacao__card--dicas {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #fbbf24;
  }
  
  .programacao__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .programacao__icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
  }
  
  .programacao__card-title {
    font-family: "Coco Gothic", "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    line-height: 1.3;
  }
  
  .programacao__card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .programacao__horario {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: rgba(251, 191, 36, 0.08);
    border-radius: 12px;
    border-left: 3px solid #fbbf24;
  }
  
  .programacao__time {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1.2;
  }
  
  .programacao__time--destaque {
    font-size: 32px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .programacao__subtitle {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
    margin: 0;
  }
  
  .programacao__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .programacao__list li {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.5;
    padding-left: 8px;
  }
  
  .programacao__sessoes {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .programacao__sessao {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(168, 85, 247, 0.06);
    border-radius: 10px;
    transition: all 0.2s ease;
  }
  
  .programacao__sessao:hover {
    background: rgba(168, 85, 247, 0.12);
    transform: translateX(4px);
  }
  
  .programacao__sessao-numero {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
  }
  
  .programacao__sessao .programacao__time {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-purple);
  }
  
  .programacao__destaque {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    border-radius: 12px;
  }
  
  .programacao__show-name {
    font-family: "Coco Gothic", "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-purple);
    text-align: center;
  }
  
  .programacao__badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gradient-gold);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
  }
  
  .programacao__obs {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
    padding: 12px;
    background: rgba(27, 20, 16, 0.03);
    border-radius: 8px;
  }
  
  .programacao__obs--alert {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border-left: 3px solid #ef4444;
    font-weight: 600;
  }
  
  .programacao__dicas-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .programacao__dicas-list li {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
  }
  
  .programacao__footer {
    margin-top: 48px;
    text-align: center;
  }
  
  .programacao__footer .section__text {
    font-size: 18px;
    margin-bottom: 24px;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .programacao__grid {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 32px;
    }
    
    .programacao__card {
      padding: 24px;
    }
    
    .programacao__icon {
      font-size: 28px;
    }
    
    .programacao__card-title {
      font-size: 18px;
    }
    
    .programacao__time {
      font-size: 20px;
    }
    
    .programacao__time--destaque {
      font-size: 28px;
    }
    
    .programacao__sessao {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      padding: 14px;
    }
    
    .programacao__footer {
      margin-top: 32px;
    }
  }
  
  @media (max-width: 480px) {
    .programacao__card {
      padding: 20px;
    }
    
    .programacao__time {
      font-size: 18px;
    }
    
    .programacao__time--destaque {
      font-size: 24px;
    }
  }
  
  /* ========== BOTÃO FLUTUANTE DE INFORMAÇÕES ========== */
  .info-float {
    position: fixed;
    bottom: 100px;
    left: 24px;
    z-index: 1999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
  }
  
  .info-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5);
  }
  
  .info-float:active {
    transform: translateY(-2px) scale(1.02);
  }
  
  .info-float__icon {
    font-size: 20px;
    line-height: 1;
  }
  
  .info-float__text {
    font-size: 15px;
    font-weight: 700;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
  
  /* ========== MODAL DE INFORMAÇÕES ========== */
  .info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .info-modal--open {
    display: flex;
  }
  
  .info-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 20, 16, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
  }
  
  .info-modal__container {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .info-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(27, 20, 16, 0.08);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .info-modal__close:hover {
    background: rgba(27, 20, 16, 0.15);
    transform: rotate(90deg);
  }
  
  .info-modal__content {
    overflow-y: auto;
    padding: 40px;
  }
  
  .info-modal__header {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .info-modal__title {
    font-family: "Coco Gothic", "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--ink);
    margin: 12px 0 0;
    line-height: 1.2;
  }
  
  .info-modal__body {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  
  .regulamento__section {
    padding: 24px;
    background: rgba(251, 246, 239, 0.6);
    border-radius: 16px;
    border-left: 4px solid var(--accent-orange);
  }
  
  .regulamento__subtitle {
    font-family: "Coco Gothic", "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 12px;
  }
  
  .regulamento__text {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0;
  }
  
  .regulamento__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .regulamento__item {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
  }
  
  .regulamento__item::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
  }
  
  .info-modal__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid rgba(27, 20, 16, 0.08);
  }
  
  body.info-modal-open {
    overflow: hidden;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .info-float {
      bottom: 90px;
      left: 16px;
      padding: 12px 18px;
    }
    
    .info-float__icon {
      font-size: 18px;
    }
    
    .info-float__text {
      font-size: 14px;
    }
    
    .info-modal {
      padding: 0;
    }
    
    .info-modal__container {
      max-width: 100%;
      max-height: 100%;
      border-radius: 0;
      height: 100%;
    }
    
    .info-modal__content {
      padding: 28px 20px;
    }
    
    .info-modal__title {
      font-size: 26px;
    }
    
    .info-modal__close {
      top: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      font-size: 24px;
    }
    
    .regulamento__section {
      padding: 20px;
    }
    
    .regulamento__subtitle {
      font-size: 18px;
    }
    
    .info-modal__actions {
      flex-direction: column;
    }
    
    .info-modal__actions .btn {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .info-float {
      bottom: 80px;
      left: 12px;
      padding: 10px 16px;
      gap: 8px;
    }
    
    .info-float__icon {
      font-size: 16px;
    }
    
    .info-float__text {
      font-size: 13px;
    }
    
    .info-modal__content {
      padding: 24px 16px;
    }
    
    .info-modal__title {
      font-size: 22px;
    }
    
    .regulamento__section {
      padding: 16px;
    }
    
    .regulamento__subtitle {
      font-size: 16px;
    }
    
    .regulamento__text,
    .regulamento__item {
      font-size: 14px;
    }
  }

  /* ========== POPUP COMUNICADO OFICIAL ========== */
  .comunicado-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .comunicado-overlay--visible {
    opacity: 1;
    visibility: visible;
  }

  .comunicado-container {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #fefcf7 100%);
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
      0 25px 80px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(245, 158, 11, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: comunicadoSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes comunicadoSlideIn {
    from {
      opacity: 0;
      transform: scale(0.9) translateY(30px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  .comunicado-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .comunicado-close:hover {
    background: rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
  }

  .comunicado-content {
    padding: 40px;
    text-align: center;
  }

  .comunicado-logo {
    width: 180px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.3));
  }

  .comunicado-title {
    font-family: "Coco Gothic", "Poppins", sans-serif;
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 700;
    color: #b91c1c;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(185, 28, 28, 0.2);
  }

  .comunicado-body {
    text-align: left;
  }

  .comunicado-body p {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 16px;
  }

  .comunicado-body strong {
    color: var(--ink);
  }

  .comunicado-subtitulo {
    font-family: "Coco Gothic", "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #f59e0b;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .comunicado-destaque {
    font-size: 17px !important;
    font-weight: 600;
    color: #0f766e !important;
    text-align: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 166, 0.08) 0%, rgba(15, 118, 110, 0.12) 100%);
    border-radius: 12px;
    margin: 20px 0 !important;
    border-left: 4px solid #0f766e;
  }

  .comunicado-assinatura {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-style: italic;
    color: var(--ink) !important;
  }

  .comunicado-assinatura strong {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    font-style: normal;
    color: #f59e0b;
  }

  /* Scrollbar do comunicado */
  .comunicado-container::-webkit-scrollbar {
    width: 8px;
  }

  .comunicado-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
  }

  .comunicado-container::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.4);
    border-radius: 4px;
  }

  .comunicado-container::-webkit-scrollbar-thumb:hover {
    background: rgba(245, 158, 11, 0.6);
  }

  /* Responsividade do comunicado */
  @media (max-width: 768px) {
    .comunicado-overlay {
      padding: 12px;
    }

    .comunicado-container {
      border-radius: 20px;
    }

    .comunicado-content {
      padding: 32px 24px;
    }

    .comunicado-logo {
      width: 140px;
    }

    .comunicado-title {
      font-size: 18px;
    }

    .comunicado-body p {
      font-size: 14px;
    }

    .comunicado-subtitulo {
      font-size: 15px;
    }

    .comunicado-destaque {
      font-size: 15px !important;
      padding: 14px 16px;
    }
  }

  @media (max-width: 480px) {
    .comunicado-content {
      padding: 28px 20px;
    }

    .comunicado-logo {
      width: 120px;
      margin-bottom: 20px;
    }

    .comunicado-title {
      font-size: 16px;
      margin-bottom: 20px;
    }

    .comunicado-close {
      top: 12px;
      right: 12px;
      width: 36px;
      height: 36px;
      font-size: 24px;
    }

    .comunicado-body p {
      font-size: 13px;
      margin-bottom: 14px;
    }

    .comunicado-subtitulo {
      font-size: 14px;
    }

    .comunicado-destaque {
      font-size: 14px !important;
      padding: 12px 14px;
    }
  }

  /* Bloquear scroll quando comunicado estiver aberto */
  body.comunicado-open {
    overflow: hidden;
  }
  