/* ============================================
   🎨 VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
   ============================================ */

  :root {
    /* Paleta atualizada: azul claro e roxo */
    --yellow-50: #eef5ff;   /* azul bem claro para fundos sutis */
    --yellow-100: #ece8ff;  /* roxo bem claro */
    --yellow-300: #a5d8ff;  /* azul claro */
    --yellow-400: #b197fc;  /* roxo claro (links/acento) */
    --yellow-500: #4dabf7;  /* azul principal (gradiente) */
    --yellow-600: #845ef7;  /* roxo médio (pontos/brilhos) */
    --yellow-700: #7048e8;  /* roxo forte (gradiente) */
    --black-900: #0e0e10;
    --black-800: #141417;
    --gray-400: #5b6175;  /* subtítulos mais legíveis em fundo claro */
    --gray-500: #495069;  /* textos secundários com bom contraste */
    --white: #ffffff;

    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-xl: 0 25px 60px rgba(0,0,0,.35);
    --shadow-md: 0 12px 30px rgba(0,0,0,.25);
    --shadow-sm: 0 6px 18px rgba(0,0,0,.18);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(116, 192, 252, 0.1);

    --container: 1200px;
  }

/* ============================================
   🔄 RESET E CONFIGURAÇÕES BASE
   ============================================ */

  * { box-sizing: border-box; }
  html, body { overflow-x: hidden; }
  html, body { height: 100%; }
  body {
    scroll-behavior: smooth;
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #0f1221;
    background: linear-gradient(180deg, var(--yellow-50) 0%, #ffffff 40%, var(--yellow-100) 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 20%, rgba(116,192,252,0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(132,94,247,0.12) 0%, transparent 50%),
      radial-gradient(circle at 40% 60%, rgba(77,171,247,0.08) 0%, transparent 40%),
      radial-gradient(circle at 90% 30%, rgba(116,192,252,0.1) 0%, transparent 45%),
      radial-gradient(circle at 10% 90%, rgba(132,94,247,0.08) 0%, transparent 35%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 20s ease-in-out infinite;
  }

  @keyframes backgroundFloat {
    0%, 100% { 
      transform: translateY(0px) rotate(0deg);
      opacity: 0.8;
    }
    25% { 
      transform: translateY(-10px) rotate(1deg);
      opacity: 0.9;
    }
    50% { 
      transform: translateY(5px) rotate(-0.5deg);
      opacity: 0.7;
    }
    75% { 
      transform: translateY(-5px) rotate(0.5deg);
      opacity: 0.85;
    }
  }

  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
  }

  .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 1px, 1px);
    border: 0;
  }

/* ============================================
   🧭 NAVBAR
   ============================================ */

  .navbar {
    position: sticky;
    top: 0; z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 72px;
  }

  .brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
  .brand-icon { color: var(--yellow-500); font-size: 22px; }
  .brand-name {
    font-family: 'Bebas Neue', system-ui, sans-serif;
    letter-spacing: 0.5px;
    font-size: 23px;
    color: var(--black-800);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .brand-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
  }

  .nav { display: flex; align-items: center; gap: 16px; }
  .nav-toggle {
    display: none;
    background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.1));
    color: var(--black-800);
    border: 1px solid rgba(0,0,0,.2);
    width: 44px; height: 44px; border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .nav-toggle svg {
    fill: #000;
    width: 20px;
    height: 20px;
  }

  .nav-toggle:hover {
    background: linear-gradient(135deg, rgba(255,255,255,.3), rgba(255,255,255,.2));
    border-color: rgba(0,0,0,.3);
    transform: translateY(-1px);
  }

  .menu { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
  .menu a.nav-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--black-800); 
    text-decoration: none; 
    font-weight: 600;
    padding: 10px 14px; 
    border-radius: 10px; 
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .menu a.nav-link:hover {
    background: linear-gradient(135deg, rgba(116, 192, 252, 0.15), rgba(132, 94, 247, 0.1));
    color: var(--yellow-600);
    transform: translateY(-1px);
  }

  .menu a.nav-link::after {
    content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px;
    background: linear-gradient(90deg, var(--yellow-400), var(--yellow-700));
    transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
  }

  .menu a.nav-link:hover::after { transform: scaleX(1); }

/* ============================================
   🎯 HERO SECTION
   ============================================ */

  .section { padding: 80px 0; position: relative; scroll-margin-top: 90px; }
  .hero { padding: 60px 0 40px 0; }
  .hero { position: relative; overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; z-index: -2; }
  .hero-video { width: 100%; height: 100%; object-fit: cover; }
  .hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.8), rgba(0,0,0,.6) 35%, rgba(0,0,0,.8)); }
  .hero-grid {
    display: grid; gap: 36px; align-items: center;
    grid-template-columns: 1.2fr 1fr;
  }

  .hero-title {
    font-family: 'Bebas Neue', system-ui, sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.95; margin: 0 0 16px 0;
    color: var(--white);
  }

  .gradient-text { background: linear-gradient(90deg, var(--yellow-300), var(--yellow-700)); -webkit-background-clip: text; background-clip: text; color: transparent; }

  .hero-subtitle { 
    color: rgba(255, 255, 255, 0.95); 
    font-size: clamp(14px, 1.8vw, 16px); 
    max-width: 60ch; 
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  /* Estilos específicos para o conteúdo do subtítulo */
  .hero-subtitle strong {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--yellow-300), var(--yellow-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: 1.4;
  }

  .hero-subtitle br + br {
    margin-bottom: 8px;
  }

  .hero-ctas { 
    display: flex; 
    gap: 62px; 
    margin-top: 24px; 
    flex-wrap: wrap; 
    justify-content: center;
  }

  .hero-badges { 
    margin-top: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 10px; 
    color: rgba(255, 255, 255, 0.9); 
    font-size: 14px; 
  }

  .hero-badges .badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .hero-badges .badge:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.12));
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
  }

  .hero-badges .dot { 
    width: 6px; 
    height: 6px; 
    background: var(--yellow-600); 
    border-radius: 999px; 
    box-shadow: 0 0 0 4px rgba(132,94,247,.18); 
  }

  .hero-media .media-card {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    border: 1px solid rgba(151,117,250,.18);
    box-shadow: var(--shadow-xl);
    max-width: 410px;
    margin: 0 auto;
  }

  .hero-media img { width: 100%; max-width: 410px; height: 100%; display: block; object-fit: cover; object-position: 90% center; aspect-ratio: 3/4; filter: saturate(1.05) contrast(1.05); }
  .media-glow { position: absolute; inset: -20%; background: radial-gradient(50% 50% at 70% 20%, rgba(77,171,247,.28), rgba(77,171,247,0) 60%); pointer-events: none; }

  /* Shapes festivas */
  .shape { position: absolute; pointer-events: none; filter: blur(24px); opacity: .6; }
  .shape-1 { width: 220px; height: 220px; background: radial-gradient(var(--yellow-600), transparent 70%); top: -30px; left: -30px; border-radius: 50%; }
  .shape-2 { width: 280px; height: 280px; background: radial-gradient(#74c0fc, transparent 60%); bottom: -60px; right: 10%; border-radius: 50%; }
  .shape-3 { width: 160px; height: 160px; background: radial-gradient(#845ef7, transparent 70%); top: 20%; right: -40px; border-radius: 50%; }

/* ============================================
   🎵 BANNER STRIP
   ============================================ */

  .banner-strip {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-700));
    padding: 20px 0;
    position: relative;
    overflow: hidden;
  }

  .banner-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,.1) 0%, transparent 50%, rgba(255,255,255,.1) 100%);
    animation: shimmer 3s ease-in-out infinite;
  }

  .strip-content {
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .words-carousel {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .word {
    position: absolute;
    font-family: 'Bebas Neue', system-ui, sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    color: #0f1221;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,.1);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
  }

  .word.active {
    opacity: 1;
    transform: translateX(0);
  }

  .word.next {
    opacity: 0;
    transform: translateX(-100px);
  }

  .strip-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .strip-decoration i {
    color: #0f1221;
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }

/* ============================================
   🎧 AUDIO PLAYER
   ============================================ */

  .player-section { 
    position: relative; 
  }

  .player-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(132,94,247,0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
  }

  .audio-player {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.08));
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 
      0 24px 72px rgba(0,0,0,.5),
      0 12px 40px rgba(116,192,252,.2),
      inset 0 1px 0 rgba(255,255,255,.2);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
  }

  .audio-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(116,192,252,.1) 0%,
      rgba(132,94,247,.05) 50%,
      rgba(255,255,255,.02) 100%
    );
    border-radius: 24px;
    pointer-events: none;
    z-index: 0;
  }

  .ap-cover { 
    position: relative; 
    z-index: 1;
  }

  .ap-cover img { 
    width: 100%; 
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    object-position: right center;
    border-radius: 18px; 
    border: 2px solid rgba(116,192,252,.3);
    box-shadow: 
      0 12px 32px rgba(0,0,0,.3),
      0 4px 16px rgba(116,192,252,.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: saturate(1.1) contrast(1.05);
  }

  .ap-cover:hover img {
    transform: scale(1.02);
    border-color: rgba(116,192,252,.5);
    box-shadow: 
      0 16px 48px rgba(0,0,0,.4),
      0 8px 24px rgba(116,192,252,.3);
  }

  .ap-shuffle { 
    position: absolute; right: 10px; bottom: 10px; 
    border: 1px solid rgba(255,255,255,.2); 
    background: rgba(0,0,0,.6); 
    color: var(--white); 
    width: 36px; height: 36px; 
    border-radius: 10px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
  }

  .ap-shuffle:hover { 
    background: rgba(0,0,0,.8); 
    color: var(--yellow-300);
    border-color: rgba(116,192,252,.5);
  }

  .ap-main { 
    display: grid; 
    gap: 16px; 
    align-content: start; 
    z-index: 1;
    position: relative;
  }

  .ap-title { 
    margin: 0; 
    font-size: 24px; 
    font-weight: 700;
    color: var(--black-800);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
  }

  .ap-artist { 
    margin: 0; 
    color: var(--black-800); 
    font-size: 15px; 
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }

  .ap-timeline { 
    display: grid; 
    grid-template-columns: 60px 1fr 60px; 
    gap: 12px; 
    align-items: center; 
    margin: 8px 0;
  }

  .ap-time { 
    color: var(--gray-500); 
    font-variant-numeric: tabular-nums; 
    font-size: 13px; 
    font-weight: 500;
  }

  .ap-seek { 
    -webkit-appearance: none; 
    appearance: none; 
    height: 8px; 
    border-radius: 999px; 
    background: linear-gradient(90deg, var(--yellow-500), var(--yellow-700)); 
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .ap-seek:hover {
    height: 10px;
  }

  .ap-seek::-webkit-slider-thumb { 
    -webkit-appearance: none; 
    appearance: none; 
    width: 18px; 
    height: 18px; 
    background: var(--white); 
    border-radius: 50%; 
    box-shadow: 
      0 4px 12px rgba(0,0,0,.4),
      0 2px 6px rgba(116,192,252,.3);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .ap-seek::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 
      0 6px 16px rgba(0,0,0,.5),
      0 3px 8px rgba(116,192,252,.4);
  }

  .ap-controls { 
    display: flex; 
    gap: 20px; 
    align-items: center; 
    justify-content: center; 
    margin-top: 8px;
  }

  .ap-btn { 
    width: 48px; 
    height: 48px; 
    border-radius: 16px; 
    border: 1px solid rgba(255,255,255,.4); 
    background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.1)); 
    color: var(--black-800); 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
      0 12px 32px rgba(0,0,0,.3),
      0 4px 16px rgba(116,192,252,.15),
      inset 0 1px 0 rgba(255,255,255,.2);
    position: relative;
    overflow: hidden;
  }

  .ap-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: all 0.3s ease;
  }

  .ap-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(116,192,252,.2), rgba(132,94,247,.1));
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .ap-btn:hover { 
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(255,255,255,.6);
    background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.15));
    box-shadow: 
      0 16px 48px rgba(0,0,0,.4),
      0 8px 24px rgba(116,192,252,.25),
      inset 0 1px 0 rgba(255,255,255,.3);
  }

  .ap-btn:hover svg {
    transform: scale(1.1);
  }

  .ap-btn:hover::before {
    opacity: 1;
  }

  .ap-btn:active {
    transform: translateY(0) scale(0.98);
  }

  .ap-play { 
    width: 56px; 
    height: 56px; 
    border-radius: 50%; 
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-700)); 
    color: #0f1221; 
    border: 2px solid rgba(116,192,252,.4);
    font-size: 18px;
    font-weight: 600;
    box-shadow: 
      0 12px 32px rgba(77,171,247,.3),
      0 6px 16px rgba(132,94,247,.2),
      inset 0 1px 0 rgba(255,255,255,.3);
  }

  .ap-play:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 
      0 16px 48px rgba(77,171,247,.4),
      0 8px 24px rgba(132,94,247,.3),
      inset 0 1px 0 rgba(255,255,255,.4);
  }

  .ap-play::before {
    background: linear-gradient(135deg, rgba(255,255,255,.3), rgba(255,255,255,.1));
  }

  .ap-btn.active { 
    color: var(--yellow-300); 
    border-color: rgba(116,192,252,.6);
    background: linear-gradient(135deg, rgba(116,192,252,.2), rgba(132,94,247,.1));
  }

/* ============================================
   🖼️ GALERIA
   ============================================ */

  .gallery-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
  }

  .gallery-carousel::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77,171,247,0.06) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 15s ease-in-out infinite reverse;
  }

  .carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 24px;
    padding: 0 12px;
  }

  .carousel-track .card {
    flex: 0 0 300px;
    height: 400px;
    margin: 0;
  }

  .carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
  }

  .carousel-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(116, 192, 252, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
  }

  .carousel-btn:hover {
    background: rgba(116, 192, 252, 0.2);
    border-color: var(--yellow-400);
    transform: scale(1.1);
  }

  .carousel-btn.prev {
    margin-left: 20px;
  }

  .carousel-btn.next {
    margin-right: 20px;
  }

  /* Animação automática do carrossel */
  @keyframes carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .carousel-track.auto-scroll {
    animation: carousel-scroll 20s linear infinite;
  }

  .carousel-track.auto-scroll:hover {
    animation-play-state: paused;
  }

  .card { 
    position: relative; 
    overflow: hidden; 
    border-radius: 20px; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.4),
      0 4px 16px rgba(116, 192, 252, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(116, 192, 252, 0.08) 0%,
      rgba(132, 94, 247, 0.04) 50%,
      rgba(255, 255, 255, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
  }

  .card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(
      135deg,
      rgba(116, 192, 252, 0.15),
      rgba(132, 94, 247, 0.1)
    );
    border-radius: 19px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    z-index: 1;
  }

  .card:hover {
    transform: scale(1.03) translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 8px 32px rgba(116, 192, 252, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  }

  .card:hover::before {
    opacity: 1;
  }

  .card:hover::after {
    opacity: 1;
  }

  .card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    filter: saturate(1.08) contrast(1.08) brightness(1.02); 
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 0;
  }

  .card:hover img { 
    transform: scale(1.08);
    filter: saturate(1.12) contrast(1.12) brightness(1.05);
  }

  /* Overlay de informações no hover */
  .card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      transparent 100%
    );
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
  }

  .card:hover .card-overlay {
    transform: translateY(0);
  }

  .card .card-title {
    font-family: 'Bebas Neue', system-ui, sans-serif;
    font-size: 18px;
    margin: 0 0 8px 0;
    color: var(--white);
  }

  .card .card-description {
    font-size: 14px;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.4;
  }

  /* Galeria harmonizada: cartões com mesma proporção */
  .ratio-portrait,
  .ratio-square,
  .ratio-landscape { 
    grid-column: auto; 
    aspect-ratio: 4/3; 
    align-self: stretch; 
  }

/* ============================================
   ⭐ AVALIAÇÕES
   ============================================ */

  .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial-card { 
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 
      0 12px 40px rgba(0, 0, 0, 0.4),
      0 6px 20px rgba(116, 192, 252, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    cursor: pointer;
  }

  .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(116, 192, 252, 0.1) 0%,
      rgba(132, 94, 247, 0.05) 50%,
      rgba(255, 255, 255, 0.02) 100%
    );
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .testimonial-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(
      135deg,
      rgba(116, 192, 252, 0.2),
      rgba(132, 94, 247, 0.15)
    );
    border-radius: 19px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
  }

  .testimonial-card:hover {
    transform: scale(1.05) translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
      0 24px 72px rgba(0, 0, 0, 0.5),
      0 12px 40px rgba(116, 192, 252, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  }

  .testimonial-card:hover::before {
    opacity: 1;
  }

  .testimonial-card:hover::after {
    opacity: 1;
  }

  .testimonial-card .stars { 
    color: var(--yellow-400); 
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 2px;
  }

  .testimonial-card .quote { 
    margin: 16px 0 20px 0; 
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }

  .testimonial-card .author { 
    display: grid; 
    grid-template-columns: 48px 1fr; 
    gap: 12px; 
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .testimonial-card .author img { 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 2px solid rgba(116, 192, 252, 0.4);
    transition: border-color 0.3s ease;
  }

  .testimonial-card:hover .author img {
    border-color: rgba(116, 192, 252, 0.8);
  }

  /* Efeito de brilho sutil no hover */
  .testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle at center,
      rgba(116, 192, 252, 0.1) 0%,
      transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
  }

  .testimonial-card:hover::before {
    opacity: 1;
  }

/* ============================================
   📞 CONTATO
   ============================================ */

  .contact-grid { 
    display: grid; 
    gap: 24px; 
    grid-template-columns: 1fr; 
    position: relative;
  }

  .contact-grid::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(116,192,252,0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 25s ease-in-out infinite;
  }

  .contact-form {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.08));
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.2);
    box-shadow: 
      0 16px 48px rgba(0, 0, 0, 0.3),
      0 8px 24px rgba(116, 192, 252, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }

  .contact-form::before {
    content: "";
    position: absolute; inset: 0; padding: 1px; border-radius: 18px;
    background: linear-gradient(135deg, rgba(116,192,252,.8), rgba(132,94,247,.6) 45%, rgba(255,255,255,.06));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; 
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-field { display: flex; flex-direction: column; gap: 8px; }
  .form-field.full { grid-column: 1/-1; }
  .form-field label { font-weight: 600; font-size: 14px; color: #0f1221; }
  .form-field label[for="email"] { margin-top: 5px; }
  .form-field input {
    background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.8));
    border: 1px solid rgba(255,255,255,.3);
    color: #0f1221;
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  .form-field input:hover {
    background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.85));
    border-color: rgba(255,255,255,.5);
  }

  .form-field input::placeholder { color: rgba(0,0,0,.45); }
  .form-field input:focus {
    border-color: rgba(132,94,247,.8);
    box-shadow: 
      0 0 0 3px rgba(132,94,247,.2), 
      0 8px 24px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(255,255,255,.95));
    transform: translateY(-1px);
  }

  .form-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 25px; justify-content: center; }

/* ============================================
   ℹ️ SOBRE NÓS
   ============================================ */

  .about-grid { display: grid; gap: 36px; align-items: center; grid-template-columns: 1fr 1.2fr; }
  .about-card { 
    position: relative; 
    overflow: hidden; 
    border-radius: 24px; 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    box-shadow: 
      0 24px 72px rgba(0, 0, 0, 0.4),
      0 12px 40px rgba(116, 192, 252, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(116, 192, 252, 0.1) 0%,
      rgba(132, 94, 247, 0.08) 50%,
      rgba(255, 255, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
  }
  
  .about-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
      0 32px 96px rgba(0, 0, 0, 0.5),
      0 16px 48px rgba(116, 192, 252, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.12));
  }
  
  .about-card:hover::before {
    opacity: 1;
  }
  
  .about-card img { 
    width: 100%; 
    height: 100%; 
    display: block; 
    object-fit: cover; 
    aspect-ratio: 4/3; 
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    filter: saturate(1.1) contrast(1.05) brightness(1.02);
    position: relative;
    z-index: 0;
  }
  
  .about-card:hover img {
    filter: saturate(1.2) contrast(1.1) brightness(1.05);
    transform: scale(1.05);
  }
  
  .about-sticker { 
    position: absolute; 
    left: 20px; 
    bottom: 20px; 
    background: linear-gradient(135deg, rgba(0,0,0,.8), rgba(0,0,0,.6)); 
    border: 1px solid rgba(255,255,255,.2); 
    color: var(--yellow-400); 
    padding: 12px 18px; 
    border-radius: 25px; 
    font-weight: 700; 
    font-size: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
  }
  
  .about-card:hover .about-sticker {
    background: linear-gradient(135deg, rgba(0,0,0,.9), rgba(0,0,0,.7));
    border-color: rgba(255,255,255,.3);
    transform: translateY(-2px);
    box-shadow: 
      0 12px 32px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }

  .feature-list { 
    list-style: none; 
    padding: 0; 
    margin: 20px 0 0 0; 
    display: grid; 
    gap: 16px; 
  }

  .feature-list li { 
    grid-template-columns: 48px 1fr; 
    gap: 16px; 
    align-items: center; 
    justify-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.1)); 
    border: 1px solid rgba(255,255,255,.3); 
    padding: 20px; 
    border-radius: 18px; 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.15),
      0 4px 16px rgba(116, 192, 252, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }
  
  .feature-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(116, 192, 252, 0.08) 0%,
      rgba(132, 94, 247, 0.05) 50%,
      rgba(255, 255, 255, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
  }
  
  .feature-list li::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(
      135deg,
      rgba(116, 192, 252, 0.2),
      rgba(132, 94, 247, 0.15)
    );
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    z-index: 0;
  }
  
  .feature-list li:hover {
    background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.15));
    border-color: rgba(255,255,255,.5);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
      0 16px 48px rgba(0, 0, 0, 0.2),
      0 8px 32px rgba(116, 192, 252, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  
  .feature-list li:hover::before {
    opacity: 1;
  }
  
  .feature-list li:hover::after {
    opacity: 1;
  }
  
  .feature-list i { 
    color: var(--yellow-500); 
    font-size: 22px; 
    place-self: center; 
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
  }
  
  .feature-list li:hover i {
    color: var(--yellow-400);
    transform: scale(1.1);
  }
  
  .feature-list h3 { 
    margin: 0 0 6px 0; 
    font-size: 19px; 
    font-weight: 700;
    color: var(--black-800);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
  }
  
  .feature-list p { 
    margin: 0; 
    color: var(--black-800); 
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
  }

  .cta-inline { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; justify-content: center; }

  /* Lista de informações e chips */
  .info-list { 
    list-style: none; 
    padding: 0; 
    margin: 24px 0 0 0; 
    display: grid; 
    gap: 14px; 
  }

  .info-list li { 
    display: grid; 
    align-items: center; 
    justify-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06)); 
    border: 1px solid rgba(255,255,255,.2); 
    padding: 16px; 
    border-radius: 16px; 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .info-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(116, 192, 252, 0.06) 0%,
      rgba(132, 94, 247, 0.04) 50%,
      rgba(255, 255, 255, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
  }
  
  .info-list li:hover {
    background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.1));
    border-color: rgba(255,255,255,.3);
    transform: translateY(-2px);
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
  
  .info-list li:hover::before {
    opacity: 1;
  }
  
  .info-list i { 
    color: var(--yellow-500); 
    font-size: 20px; 
    place-self: center; 
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
  }
  
  .info-list li:hover i {
    color: var(--yellow-400);
    transform: scale(1.1);
  }
  
  .info-list strong { 
    display: block; 
    font-size: 15px; 
    font-weight: 700;
    color: var(--black-800);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
  }

  .info-list span { 
    display: block; 
    color: var(--black-800); 
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
  }

  .chip-list { 
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; 
    margin: 20px 0 0 0; 
  }

  .chip { 
    background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.12)); 
    border: 1px solid rgba(255,255,255,.3); 
    color: var(--black-800); 
    padding: 8px 14px; 
    border-radius: 20px; 
    font-size: 13px; 
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
      0 4px 12px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }
  
  .chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(116, 192, 252, 0.1) 0%,
      rgba(132, 94, 247, 0.08) 50%,
      rgba(255, 255, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
  }
  
  .chip:hover {
    background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.18));
    border-color: rgba(255,255,255,.5);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
      0 8px 20px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  
  .chip:hover::before {
    opacity: 1;
  }

/* ============================================
   🎨 BOTÕES E COMPONENTES
   ============================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-align: center;
  padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 600;
  transition: transform .15s ease, filter .2s ease, background .2s ease, color .2s ease;
}

.btn i { width: 1.25em; text-align: center; }
.btn::after { content: ""; width: 1.25em; }
.btn-primary { background: linear-gradient(90deg, var(--yellow-500), var(--yellow-700)); color: #0f1221;}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-outline { 
  background: rgba(255,255,255,.1); 
  color: var(--white); 
  border: 1px solid rgba(255,255,255,.3); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover { 
  background: rgba(255,255,255,.2); 
  border-color: rgba(255,255,255,.5);
  transform: translateY(-1px);
}

.btn-link { color: var(--yellow-400); text-decoration: none; font-weight: 600; }
.btn-link:hover { color: var(--yellow-300); }

/* ============================================
   📱 WHATSAPP FAB
   ============================================ */

.whatsapp-fab {
  position: fixed; 
  right: 35px; 
  bottom: 18px; 
  z-index: 1200;
  width: 60px; 
  height: 60px; 
  border-radius: 50%;
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.9), rgba(19, 143, 73, 0.8));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff; 
  text-decoration: none;
  box-shadow: 
    0 12px 32px rgba(19, 143, 73, 0.4),
    0 6px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-fab:hover { 
  transform: translateY(-3px) scale(1.05); 
  box-shadow: 
    0 16px 48px rgba(19, 143, 73, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.whatsapp-fab svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
  transition: all 0.3s ease;
}

.whatsapp-fab:hover svg {
  transform: scale(1.1);
}

/* ============================================
   📄 SECTION HEADER
   ============================================ */

.section-header { 
  text-align: center; 
  margin-bottom: 28px; 
  position: relative;
}

.section-header::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(116,192,252,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.section-title {
  font-family: 'Bebas Neue', system-ui, sans-serif; letter-spacing: .5px;
  font-size: clamp(28px, 4.4vw, 44px); margin: 0 0 8px 0;
  margin-top: 20px;
}

.section-subtitle { color: var(--gray-500); margin: 0; }

/* ============================================
   🦶 FOOTER
   ============================================ */

  .footer { padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.22); background: linear-gradient(135deg, var(--yellow-500), var(--yellow-700)); }
  .footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
  .footer-text { margin: 8px 0 0 0; color: var(--white); font-size: 14px; opacity: .9; }
  .footer-social { 
    display: flex; 
    gap: 12px; 
    align-items: center;
  }

  .social { 
    width: 44px; 
    height: 44px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 12px; 
    color: var(--white); 
    text-decoration: none; 
    background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.08)); 
    border: 1px solid rgba(255,255,255,.3); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .social svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    transition: all 0.3s ease;
  }

  .social:hover { 
    background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.15)); 
    color: var(--yellow-300); 
    transform: translateY(-2px);
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .social:hover svg {
    transform: scale(1.1);
  }

/* ============================================
   ✨ ANIMAÇÕES DE ENTRADA
   ============================================ */

  [data-animate] { opacity: 0; transform: translateY(14px) scale(0.995); }
  [data-animate].in-view { opacity: 1; transform: translateY(0) scale(1); transition: all .7s cubic-bezier(.22,1,.36,1); }

/* ============================================
   📱 RESPONSIVIDADE - NAVBAR
   ============================================ */

  @media (max-width: 860px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .menu { 
      position: fixed; 
      left: 50%; 
      top: 80px; 
      transform: translateX(-50%);
      flex-direction: column; 
      background: linear-gradient(135deg, rgba(0,0,0,.95), rgba(0,0,0,.9)); 
      border: 1px solid rgba(255,255,255,.2); 
      padding: 16px; 
      border-radius: 18px; 
      display: none; 
      min-width: 200px; 
      max-width: 90vw;
      z-index: 2000;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    .menu.open { 
      display: flex; 
      left: 50%; 
      transform: translateX(-50%);
    }
    .menu a.nav-link { 
      width: 100%; 
      color: var(--white); 
      font-weight: 600;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
      padding: 12px 16px;
      border-radius: 12px;
      transition: all 0.3s ease;
    }
    .menu a.nav-link:hover {
      background: linear-gradient(135deg, rgba(116, 192, 252, 0.2), rgba(132, 94, 247, 0.15));
      color: var(--yellow-300);
      transform: translateX(4px);
    }
}

/* ============================================
   📱 RESPONSIVIDADE - HERO
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media .media-card {
    max-width: 300px;
  }
}

@media (max-width: 860px) {
    .hero-content {
      text-align: center;
    }
    .hero-subtitle {
      padding: 18px 22px;
      font-size: clamp(14px, 2vw, 16px);
      max-width: 60ch;
    }
    .hero-subtitle strong {
      font-size: clamp(15px, 2.2vw, 18px);
      margin-top: 10px;
      padding-top: 10px;
    }
    .hero-ctas { 
      justify-content: center; 
    }
    .hero-badges { 
      justify-content: center; 
      text-align: center;
    }
  }

  @media (max-width: 520px) {
    .section { padding: 60px 0; }
    .hero { padding: 40px 0 30px 0; }
    .hero-content {
      text-align: center;
    }
    .hero-subtitle {
      padding: 16px 20px;
      font-size: clamp(13px, 1.8vw, 15px);
      max-width: 55ch;
      line-height: 1.5;
    }
    .hero-subtitle strong {
      font-size: clamp(14px, 2vw, 16px);
      margin-top: 8px;
      padding-top: 8px;
    }
    .hero-ctas { 
      justify-content: center; 
    }
    .hero-badges { 
      flex-direction: column; 
      align-items: center; 
      gap: 6px; 
      text-align: center;
    }
  .container { padding: 0 18px; }
  .hero-media .media-card {
    max-width: 250px;
  }
}

/* ============================================
   📱 RESPONSIVIDADE - AUDIO PLAYER
   ============================================ */

@media (max-width: 860px) {
  .audio-player { 
    grid-template-columns: 1fr; 
    gap: 20px;
    padding: 20px;
  }
  .ap-cover { 
    max-width: 280px; 
    margin: 0 auto;
  }
  .ap-controls {
    gap: 16px;
  }
  .ap-btn {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
  .ap-btn svg {
    width: 16px;
    height: 16px;
  }
  .ap-play {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }
  .ap-play svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 520px) {
  .audio-player {
    padding: 16px;
    border-radius: 20px;
  }
  .ap-cover {
    max-width: 240px;
  }
  .ap-title {
    font-size: 20px;
  }
  .ap-artist {
    font-size: 14px;
  }
  .ap-controls {
    gap: 12px;
  }
  .ap-btn {
      width: 40px;
      height: 40px;
    font-size: 13px;
  }
  .ap-btn svg {
    width: 14px;
    height: 14px;
  }
  .ap-play {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }
  .ap-play svg {
      width: 18px;
      height: 18px;
    }
}

/* ============================================
   📱 RESPONSIVIDADE - GALERIA
   ============================================ */

@media (max-width: 860px) {
  .carousel-track .card { flex: 0 0 250px; height: 350px; }
  .carousel-btn { width: 40px; height: 40px; }
  .carousel-btn.prev { margin-left: 10px; }
  .carousel-btn.next { margin-right: 10px; }
  .card { padding: 0; }
  .card:hover { transform: scale(1.02) translateY(-2px); }
}

@media (max-width: 520px) {
    .carousel-track .card { flex: 0 0 200px; height: 300px; }
    .carousel-btn { width: 35px; height: 35px; }
    .carousel-btn.prev { margin-left: 5px; }
    .carousel-btn.next { margin-right: 5px; }
    .card { padding: 0; }
    .card:hover { transform: scale(1.01) translateY(-1px); }
    .card .card-overlay { padding: 16px; }
    .card .card-title { font-size: 16px; }
    .card .card-description { font-size: 13px; }
}

/* ============================================
   📱 RESPONSIVIDADE - AVALIAÇÕES
   ============================================ */

@media (max-width: 860px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .testimonial-card { padding: 20px; }
  .testimonial-card:hover { transform: scale(1.03) translateY(-4px); }
}

@media (max-width: 520px) {
    .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
    .testimonial-card { padding: 18px; }
    .testimonial-card:hover { transform: scale(1.02) translateY(-2px); }
  }

/* ============================================
   📱 RESPONSIVIDADE - SOBRE NÓS
   ============================================ */

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

/* Sobre nós (layout mais sóbrio e centralizado para desktop) */
@media (min-width: 1025px) {
  .about-grid { grid-template-columns: 1fr; justify-items: center; gap: 28px; }
  .about-media, .about-content { width: 100%; max-width: 920px; }
  .about-content { text-align: center; }
  .about .section-title { margin-bottom: 6px; }
  .about-content p {
    color: var(--black-800);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
  }
  .about-content p strong {
    color: var(--black-800);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .feature-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .feature-list li { grid-template-columns: 1fr; text-align: center; padding: 14px; background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.1); }
  .feature-list i { margin: 2px auto 6px auto; }
  .feature-list h3 { font-size: 17px; }
  .feature-list p { font-size: 14px; }
  /* reposiciona o 4º item para a célula 5 (linha 2, coluna 2) */
  .feature-list li:nth-child(4) { grid-column: 2; }
  .info-list { grid-template-columns: repeat(2, minmax(0, 1fr)); text-align: center; }
  .info-list li { grid-template-columns: 1fr; }
  .info-list i { margin: 0 auto; }
  .chip-list { justify-content: center; }
  .about-card img { aspect-ratio: 16/9; }
  .about-sticker { background: rgba(0,0,0,.55); border-color: rgba(255,255,255,.15); color: var(--white); }
}

/* ============================================
   📱 RESPONSIVIDADE - CONTATO
   ============================================ */

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   📱 RESPONSIVIDADE - FOOTER
   ============================================ */

@media (max-width: 520px) {
  .social {
    width: 40px;
    height: 40px;
  }
  .social svg {
    width: 18px;
    height: 18px;
  }
  .footer-social {
    gap: 8px;
  }
  .whatsapp-fab {
    width: 56px;
    height: 56px;
    right: 20px;
    bottom: 20px;
  }
  .whatsapp-fab svg {
    width: 22px;
    height: 22px;
  }
}