    /* =============================================
       RESET & VARIÁVEIS
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold:   #ffc602;
      --gold-l: #ffc602;
      --black:  #0A0A0A;
      --dark:   #111111;
      --dark2:  #1A1A1A;
      --dark3:  #222222;
      --gray:   #888888;
      --white:  #F5F3EE;
      --nav-h:  72px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    img { display: block; width: 100%; height: 100%; object-fit: cover; }

    /* =============================================
       SCROLLBAR
    ============================================= */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--dark3); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--gold); }

    /* =============================================
       BOTÕES GLOBAIS
    ============================================= */
    .btn-primary {
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 0.8rem 1.8rem;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--gold-l); transform: translateY(-2px); }

    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(245,243,238,0.3);
      padding: 0.8rem 1.8rem;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.2s, color 0.2s, transform 0.15s;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

    /* =============================================
       TAGS & TÍTULOS DE SEÇÃO
    ============================================= */
    .s-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .s-tag::before {
      content: '';
      display: block;
      width: 22px;
      height: 1px;
      background: var(--gold);
    }

    .s-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 1rem;
    }

    .s-sub {
      font-size: 0.95rem;
      color: var(--gray);
      max-width: 520px;
      line-height: 1.75;
    }

    /* =============================================
       FADE-IN ANIMATION
    ============================================= */
    .fi {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fi.v { opacity: 1; transform: none; }
    .fi.d1 { transition-delay: 0.1s; }
    .fi.d2 { transition-delay: 0.2s; }
    .fi.d3 { transition-delay: 0.3s; }

    /* =============================================
       NAVBAR
    ============================================= */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 4rem;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      background: rgba(10,10,10,0.82);
      border-bottom: 1px solid rgba(255,198,2,0.18);
      transition: background 0.35s;
    }
    #navbar.scrolled { background: rgba(10,10,10,0.97); }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo img {
      height: 36px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      color: var(--gray);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }

    /* =============================================
       HAMBURGER PREMIUM
    ============================================= */
    .hamburger {
      display: none;
      width: 32px;
      height: 32px;
      background: none;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      cursor: pointer;
      position: relative;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(10px);
    }
    .hamburger:hover {
      border-color: var(--gold);
      transform: scale(1.05);
    }
    .hamburger span {
      position: absolute;
      left: 8px;
      right: 8px;
      height: 1.5px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .hamburger span:nth-child(1) { top: 10px; }
    .hamburger span:nth-child(2) { top: 15px; opacity: 1; }
    .hamburger span:nth-child(3) { top: 20px; }
    
    .hamburger.open {
      background: var(--gold);
      border-color: var(--gold);
    }
    .hamburger.open span {
      background: var(--black);
    }
    .hamburger.open span:nth-child(1) {
      top: 15px;
      transform: rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scale(0);
    }
    .hamburger.open span:nth-child(3) {
      top: 15px;
      transform: rotate(-45deg);
    }

    /* =============================================
       MOBILE MENU PREMIUM
    ============================================= */
    #mobileMenu {
      display: none;
      position: fixed;
      inset: 0;
      background: linear-gradient(135deg, rgba(10,10,10,0.98) 0%, rgba(26,26,26,0.98) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 999;
      overflow: hidden;
    }
    #mobileMenu.open { 
      display: flex; 
      animation: menuSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes menuSlideIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .mobile-menu-content {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      position: relative;
    }
    
    #mobileMenu a {
      font-size: 1.8rem;
      font-weight: 300;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      padding: 0.5rem 1rem;
      opacity: 0.8;
    }
    #mobileMenu a:hover { 
      color: var(--gold);
      opacity: 1;
      transform: translateY(-2px);
    }
    
    #mobileMenu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateX(-50%);
    }
    #mobileMenu a:hover::after {
      width: 100%;
    }
    
    #mobileMenu .btn-primary {
      margin-top: 2rem;
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 1rem 2.5rem;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border-radius: 8px;
      box-shadow: 0 8px 32px rgba(255,198,2,0.3);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #mobileMenu .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(255,198,2,0.4);
    }
    
    .mob-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--white);
      font-size: 1.5rem;
      cursor: pointer;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(10px);
    }
    .mob-close:hover {
      background: var(--gold);
      color: var(--black);
      transform: scale(1.1);
      border-color: var(--gold);
    }
    
    /* Menu decoration elements */
    .mobile-menu-content::before {
      content: '';
      position: absolute;
      top: 10%;
      left: 10%;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255,198,2,0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      animation: float 6s ease-in-out infinite;
    }
    
    .mobile-menu-content::after {
      content: '';
      position: absolute;
      bottom: 15%;
      right: 10%;
      width: 150px;
      height: 150px;
      background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      animation: float 8s ease-in-out infinite reverse;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
    }

    /* =============================================
       HERO
    ============================================= */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 7rem 4rem 5rem;
      position: relative;
      overflow: hidden;
    }

    /* ===== HERO SLIDESHOW ===== */
    .hero-img {
      position: absolute;
      inset: 0;
      background: var(--dark2);
      overflow: hidden;
    }

    /* Slides */
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.4s ease;
      z-index: 0;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Gradient overlay sobre os slides */
    .slide-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        to right,
        rgba(10,10,10,0.90) 0%,
        rgba(10,10,10,0.55) 55%,
        rgba(10,10,10,0.18) 100%
      );
      pointer-events: none;
    }

    /* Dots de navegação */
    .slide-dots {
      position: absolute;
      bottom: 2.2rem;
      right: 2.5rem;
      display: flex;
      gap: 0.5rem;
      z-index: 2;
      align-items: center;
    }
    .slide-dot {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      border: none;
      background: rgba(255,255,255,0.25);
      cursor: pointer;
      padding: 0;
      transition: all 0.35s ease;
    }
    .slide-dot.active {
      background: var(--gold);
      width: 26px;
    }
    .slide-dot:hover:not(.active) { background: rgba(255,255,255,0.5); }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 780px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .hero-tag::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--gold);
    }

    #hero h1 {
      font-size: clamp(2.8rem, 7vw, 6rem);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.03em;
      line-height: 0.92;
      margin-bottom: 1.5rem;
    }
    #hero h1 .gold { color: var(--gold); }

    .hero-sub {
      font-size: 1rem;
      color: var(--gray);
      max-width: 440px;
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }

    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

    .hero-stats {
      display: flex;
      gap: 3.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .stat-num {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .stat-lbl {
      font-size: 0.68rem;
      color: var(--gray);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-top: 0.3rem;
    }

    /* =============================================
       SOBRE
    ============================================= */
    #sobre { padding: 0; background: var(--dark); }

    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
    }

    .sobre-img {
      position: relative;
      background: var(--dark2);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      min-height: 520px;
    }
    .sobre-img::after {
      content: 'FOTO DA ACADEMIA\A Proporção sugerida: 4:5';
      white-space: pre;
      color: rgba(255,255,255,0.1);
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
      text-align: center;
    }
    .sobre-img img { position: absolute; inset: 0; }
    .sobre-img-badge {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 0.4rem 0.85rem;
      border-radius: 2px;
      z-index: 2;
    }

    .sobre-txt {
      padding: 5rem 4.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .sobre-txt p {
      font-size: 0.93rem;
      color: var(--gray);
      line-height: 1.85;
      margin-bottom: 1.4rem;
    }

    .valores-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.65rem;
      margin-top: 2rem;
    }
    .v-item {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.82rem;
      color: var(--gray);
      line-height: 1.4;
    }
    .v-item::before {
      content: '—';
      color: var(--gold);
      flex-shrink: 0;
    }

    /* =============================================
       MODALIDADES
    ============================================= */
    #modalidades { padding: 6rem 4rem; background: var(--dark); }

    .mod-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 2rem;
      margin-bottom: 3.5rem;
      flex-wrap: wrap;
    }

    .mod-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: rgba(255,255,255,0.04);
    }

    .mod-card {
      background: var(--dark2);
      padding: 3.5rem;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }
    .mod-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      height: 2px; width: 0;
      background: var(--gold);
      transition: width 0.45s ease;
    }
    .mod-card:hover { background: var(--dark3); }
    .mod-card:hover::after { width: 100%; }

    .mod-icon {
      width: 54px; height: 54px;
      border: 1px solid rgba(255,198,2,0.25);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.75rem;
    }

    .mod-card h3 {
      font-size: 1.6rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      margin-bottom: 0.9rem;
      transition: color 0.3s;
    }
    .mod-card:hover h3 { color: var(--gold); }

    .mod-card p {
      font-size: 0.9rem;
      color: var(--gray);
      line-height: 1.8;
    }

    .mod-pill {
      display: inline-block;
      margin-top: 2rem;
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.65;
    }

    /* Foto interna da modalidade */
    .mod-img-wrap {
      margin-top: 2rem;
      height: 220px;
      background: var(--dark3);
      border-radius: 2px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .mod-img-wrap::after {
      content: attr(data-ph);
      color: rgba(255,255,255,0.1);
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
      text-align: center;
      padding: 1rem;
    }
    .mod-img-wrap img { position: absolute; inset: 0; }

    /* =============================================
       GALERIA
    ============================================= */
    #galeria { padding: 6rem 4rem; background: var(--black); }

    .gal-header { margin-bottom: 2.5rem; }

    .gal-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 6px;
    }

    .gal-item {
      background: var(--dark2);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .gal-item img { position: absolute; inset: 0; transition: transform 0.5s ease; }
    .gal-item:hover img { transform: scale(1.04); }

    /* Placeholder visual */
    .gal-item.ph::after {
      content: attr(data-ph);
      color: rgba(255,255,255,0.1);
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 600;
      text-align: center;
      padding: 1rem;
      white-space: pre-line;
    }

    /* Grid layout das fotos */
    .g1 { grid-column: span 5; min-height: 340px; }
    .g2 { grid-column: span 4; min-height: 340px; }
    .g3 { grid-column: span 3; min-height: 340px; }
    .g4 { grid-column: span 3; min-height: 210px; }
    .g5 { grid-column: span 6; min-height: 210px; }
    .g6 { grid-column: span 3; min-height: 210px; }

    .gal-note {
      margin-top: 1.5rem;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.2);
      letter-spacing: 0.12em;
      text-align: right;
    }

    /* =============================================
       MODAL DE GALERIA
    ============================================= */
    .gallery-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.95);
      z-index: 2000;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .gallery-modal.open {
      display: flex;
      opacity: 1;
    }

    .modal-content {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .modal-image {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
      border-radius: 4px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    }

    .modal-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      transition: all 0.2s;
      z-index: 10;
    }
    .modal-nav:hover {
      background: var(--gold);
      color: var(--black);
      transform: translateY(-50%) scale(1.1);
    }

    .modal-prev { left: 2rem; }
    .modal-next { right: 2rem; }

    .modal-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.5rem;
      transition: all 0.2s;
      z-index: 10;
    }
    .modal-close:hover {
      background: var(--gold);
      color: var(--black);
      transform: scale(1.1);
    }

    .modal-counter {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      color: var(--white);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.7;
    }

    /* Cursor pointer para itens clicáveis */
    .gal-item {
      cursor: pointer;
    }

    /* =============================================
       PLANOS - COMPONENTE ISOLADO
    ============================================= */
    #planos { padding: 6rem 4rem; background: var(--black); }

    .planos-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .planos-header .s-tag { justify-content: center; }
    .planos-header .s-sub { margin: 1rem auto 0; text-align: center; }

    .planos-isolated-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .planos-isolated-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      background: var(--dark2);
      padding: 2rem;
    }

    .planos-isolated-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      gap: 1.5rem;
    }

    .plano-isolated-card {
      flex: 0 0 calc(33.333% - 1rem);
      background: var(--dark3);
      border-radius: 12px;
      padding: 3rem 2.5rem;
      position: relative;
      transition: background 0.2s;
      box-sizing: border-box;
      border-right: 1px solid rgba(255,255,255,0.04);
    }

    .plano-isolated-card:last-child {
      border-right: none;
    }

    .plano-isolated-card:hover { background: var(--dark2); }

    .planos-isolated-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .planos-isolated-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.05);
      color: var(--white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .planos-isolated-btn:hover {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
      transform: scale(1.1);
    }

    .planos-isolated-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .planos-isolated-indicators {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }

    .planos-isolated-indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .planos-isolated-indicator.active {
      background: var(--gold);
      width: 24px;
      border-radius: 4px;
    }

    .planos-carousel-info {
      text-align: center;
      margin-top: 1rem;
      font-size: 0.8rem;
      color: var(--gray);
    }

    /* Mobile */
    @media (max-width: 768px) {
      #planos { padding: 4rem 1.5rem; }
      .planos-isolated-wrapper {
        padding: 0;
        border-radius: 12px;
        overflow: hidden;
      }
      .planos-isolated-track {
        gap: 0;
        width: 100%;
      }
      .plano-isolated-card {
        flex: 0 0 100%;
        padding: 2rem 1.5rem;
        border-right: none;
        border-bottom: none;
        box-sizing: border-box;
      }
      .plano-isolated-card .plano-val { color: var(--gold); }
      .plano-isolated-card .plano-cur { color: var(--gold); opacity: 0.7; }
      .plano-isolated-card:last-child {
        border-bottom: none;
      }
      .planos-isolated-controls {
        margin-top: 1.5rem;
        gap: 0.75rem;
      }
      .planos-isolated-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
      .planos-isolated-indicators {
        margin-top: 1rem;
        gap: 0.4rem;
      }
      .planos-isolated-indicator {
        width: 6px;
        height: 6px;
      }
      .planos-isolated-indicator.active {
        width: 20px;
        height: 6px;
      }
    }

    /* =============================================
       PLANOS
    ============================================= */
    #planos { padding: 6rem 4rem; background: var(--dark); }

    .planos-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .planos-header .s-tag { justify-content: center; }
    .planos-header .s-sub { margin: 1rem auto 0; text-align: center; }

    .planos-grid {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      gap: 1.5rem;
      background: rgba(255,255,255,0.04);
      border-radius: 8px;
      overflow: hidden;
    }

    .plano-card {
      background: var(--dark3);
      padding: 3rem 2.5rem;
      position: relative;
      transition: background 0.2s;
      flex: 0 0 calc(33.333% - 1rem);
      border-right: 1px solid rgba(255,255,255,0.04);
    }

    .plano-card:last-child {
      border-right: none;
    }

    .planos-carousel-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 16px;
      background: var(--dark2);
      padding: 2rem;
    }
    .plano-card:hover { background: var(--dark2); }

    .planos-carousel-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .planos-carousel-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.05);
      color: var(--white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .planos-carousel-btn:hover {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
      transform: scale(1.1);
    }

    .planos-carousel-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .planos-carousel-indicators {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }

    .planos-indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .planos-indicator.active {
      background: var(--gold);
      width: 24px;
      border-radius: 4px;
    }

    .planos-carousel-info {
      text-align: center;
      margin-top: 1rem;
      font-size: 0.8rem;
      color: var(--gray);
    }

    .plano-card.featured {
      border-top: 2px solid var(--gold);
    }

    .plano-badge {
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%) translateY(-100%);
      background: var(--gold);
      color: var(--black);
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.3rem 1rem;
      white-space: nowrap;
    }

    .plano-name {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 1.5rem;
    }

    .plano-price {
      display: flex;
      align-items: baseline;
      gap: 0.3rem;
      margin-bottom: 0.4rem;
    }
    .plano-cur { font-size: 1rem; font-weight: 700; color: var(--gray); }
    .plano-val {
      font-size: 3.8rem;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--white);
    }
    .featured .plano-val { color: var(--gold); }
    .plano-per {
      font-size: 0.72rem;
      color: var(--gray);
      margin-bottom: 2rem;
      line-height: 1.5;
    }

    .plano-sep { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 1.5rem; }

    .plano-feats { list-style: none; margin-bottom: 2rem; }
    .plano-feats li {
      font-size: 0.83rem;
      color: var(--gray);
      padding: 0.42rem 0;
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }
    .plano-feats li::before { content: '✓'; color: var(--gold); font-size: 0.72rem; flex-shrink: 0; }

    /* =============================================
       DEPOIMENTOS CARROSEL ESTILO GOOGLE
    ============================================= */
    #depoimentos { padding: 6rem 4rem; background: var(--black); }

    .dep-header { margin-bottom: 3rem; text-align: center; }

    .testimonials-carousel {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 16px;
      background: var(--dark2);
      padding: 2rem;
    }

    .carousel-container {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      gap: 1.5rem;
    }

    .testimonial-card {
      flex: 0 0 calc(33.333% - 1rem);
      background: var(--dark3);
      border-radius: 12px;
      padding: 2rem;
      border: 1px solid rgba(255,255,255,0.05);
      position: relative;
      transition: all 0.3s ease;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .student-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-l));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--black);
      text-transform: uppercase;
    }

    .student-info {
      flex: 1;
    }

    .student-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.25rem;
    }

    .student-details {
      font-size: 0.85rem;
      color: var(--gray);
      margin-bottom: 0.5rem;
    }

    .rating-stars {
      display: flex;
      gap: 2px;
    }

    .star {
      color: #ffc602;
      font-size: 1rem;
    }

    .star.empty {
      color: rgba(255,255,255,0.2);
    }

    .testimonial-content {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--gray);
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    .review-date {
      font-size: 0.75rem;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .review-badge {
      background: rgba(255,198,2,0.1);
      color: var(--gold);
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .carousel-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .carousel-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.05);
      color: var(--white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .carousel-btn:hover {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
      transform: scale(1.1);
    }

    .carousel-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .carousel-indicators {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }

    .indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .indicator.active {
      background: var(--gold);
      width: 24px;
      border-radius: 4px;
    }

    .google-reviews-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
      font-size: 0.9rem;
      color: var(--gray);
    }

    .google-icon {
      width: 20px;
      height: 20px;
      background: #4285F4;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 0.7rem;
    }

    /* =============================================
       CONTATO
    ============================================= */
    #contato { padding: 6rem 4rem; background: var(--dark); }

    .contato-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr 1.4fr;
      gap: 4rem;
      align-items: start;
    }

    .contato-map {
      border-radius: 4px;
      overflow: hidden;
      margin-top: 2rem;
    }
    .contato-map iframe {
      width: 100%;
      height: 220px;
      border: 0;
      display: block;
      filter: grayscale(0.7) contrast(1.1) brightness(0.65);
    }

    .contato-details {
      padding-top: 0.5rem;
    }

    .contato-info p {
      font-size: 0.92rem;
      color: var(--gray);
      line-height: 1.85;
      margin-bottom: 2.5rem;
    }

    .info-list { display: flex; flex-direction: column; gap: 1.5rem; }

    .info-row { display: flex; align-items: flex-start; gap: 1rem; }

    .info-ico {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,198,2,0.22);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .info-lbl {
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.25rem;
    }
    .info-val { font-size: 0.88rem; color: var(--white); line-height: 1.6; }

    /* Formulário */
    .form-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
      text-align: center;
      margin-bottom: 2rem;
      line-height: 1.2;
    }

    .contact-form { display: flex; flex-direction: column; gap: 1rem; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .fg { display: flex; flex-direction: column; gap: 0.4rem; }
    .fg label {
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .fg input,
    .fg select {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.06);
      color: var(--white);
      padding: 0.9rem 1rem;
      font-size: 0.88rem;
      border-radius: 2px;
      outline: none;
      transition: border-color 0.2s;
      font-family: inherit;
      width: 100%;
    }
    .fg select option { background: var(--dark3); }
    .fg input:focus,
    .fg select:focus { border-color: rgba(255,198,2,0.6); }
    .fg input::placeholder { color: rgba(255,255,255,0.2); }

    .form-btn {
      background: #ffc602;
      color: var(--black);
      border: none;
      padding: 1rem 2rem;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      align-self: flex-start;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .form-btn:hover { background: var(--gold-l); transform: translateY(-2px); }

    #form-msg {
      font-size: 0.82rem;
      color: var(--gold);
      display: none;
      padding: 0.75rem 1rem;
      border: 1px solid rgba(255,198,2,0.2);
      border-radius: 2px;
      background: rgba(255,198,2,0.06);
    }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(255,198,2,0.12);
      padding: 2rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.25rem;
    }

    .foot-logo img { height: 28px; width: auto; display: block; }

    .foot-copy { font-size: 0.72rem; color: var(--gray); }

    .foot-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .foot-links a {
      font-size: 0.72rem;
      color: var(--gray);
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: color 0.2s;
    }
    .foot-links a:hover { color: var(--gold); }

    .foot-dev {
      width: 100%;
      text-align: center;
      font-size: 0.62rem;
      color: rgba(255,255,255,0.18);
      letter-spacing: 0.06em;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.04);
      margin-top: 0.5rem;
    }
    .foot-dev a {
      color: rgba(255,255,255,0.28);
      text-decoration: none;
      transition: color 0.2s;
    }
    .foot-dev a:hover { color: var(--gold); }

    /* =============================================
       RESPONSIVO
    ============================================= */
    @media (max-width: 1024px) {
      #navbar { padding: 0 2rem; }
      #hero { padding: 5.5rem 2rem 4rem; }
      #sobre .sobre-txt { padding: 4rem 2.5rem; }
      #modalidades, #galeria, #planos, #depoimentos, #contato { padding: 5rem 2rem; }
      footer { padding: 2rem; }
      .contato-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .contato-grid > .fi.d2 { grid-column: 1 / -1; }
      .contato-map iframe { height: 200px; }
    }

    @media (max-width: 768px) {
      /* Nav */
      .nav-links, #navbar .btn-primary { display: none; }
      .hamburger { display: flex; }

      /* Hero */
      .hero-img { opacity: 0.25; }
      #hero h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
      .hero-stats { gap: 0; flex-wrap: nowrap; display: grid; grid-template-columns: repeat(3, 1fr); }
      .stat-num { font-size: 1.8rem; }
      .stat-lbl { font-size: 0.52rem; letter-spacing: 0.08em; white-space: nowrap; }

      /* Sobre */
      .sobre-grid { grid-template-columns: 1fr; }
      .sobre-img { min-height: 260px; order: -1; }
      .sobre-txt { padding: 3rem 1.5rem; }
      .valores-grid { grid-template-columns: 1fr; }

      /* Modalidades */
      .mod-grid { grid-template-columns: 1fr; }
      .mod-header { flex-direction: column; align-items: flex-start; }

      /* Galeria */
      .gal-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
      .g1, .g2, .g3, .g4, .g5, .g6 { grid-column: span 1; min-height: 160px; }

      /* Planos */
      .planos-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
      .planos-carousel-container {
        padding: 1.5rem;
        border-radius: 12px;
      }
      .planos-grid {
        gap: 0;
      }
      .plano-slide {
        flex-direction: column;
      }
      .plano-card {
        min-width: 100% !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        padding: 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.04);
      }
      .plano-card:last-child {
        border-bottom: none;
      }
      .planos-carousel-controls {
        margin-top: 1.5rem;
        gap: 0.75rem;
      }
      .planos-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
      .planos-carousel-indicators {
        margin-top: 1rem;
        gap: 0.4rem;
      }
      .planos-indicator {
        width: 6px;
        height: 6px;
      }
      .planos-indicator.active {
        width: 20px;
        height: 6px;
      }

      /* Depoimentos Mobile */
      #depoimentos { padding: 4rem 1.5rem; }
      .testimonials-carousel { 
        padding: 1.5rem; 
        border-radius: 12px;
        background: var(--dark3);
      }
      #depoimentos .carousel-container {
        gap: 0; /* Remove gap no mobile */
      }
      #depoimentos .testimonial-card { 
        flex: 0 0 100% !important; 
        padding: 1.5rem;
        border-radius: 8px;
        background: var(--dark2);
      }
      #depoimentos .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1rem;
      }
      #depoimentos .student-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
      }
      #depoimentos .student-name {
        font-size: 1rem;
        margin-bottom: 0.5rem;
      }
      #depoimentos .student-details {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
      }
      #depoimentos .rating-stars {
        justify-content: center;
      }
      #depoimentos .star {
        font-size: 0.9rem;
      }
      #depoimentos .testimonial-content {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: center;
      }
      #depoimentos .testimonial-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        padding-top: 0.75rem;
      }
      #depoimentos .review-date {
        font-size: 0.65rem;
      }
      #depoimentos .review-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
      }
      .carousel-controls {
        margin-top: 1.5rem;
        gap: 0.75rem;
      }
      .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
      .carousel-indicators {
        margin-top: 1rem;
        gap: 0.4rem;
      }
      .indicator {
        width: 6px;
        height: 6px;
      }
      .indicator.active {
        width: 20px;
        height: 6px;
      }

      /* Contato */
      .contato-grid { grid-template-columns: 1fr; gap: 2rem; }
      .contato-map iframe { height: 220px; }
      .form-row { grid-template-columns: 1fr; }

      /* Footer */
      footer { flex-direction: column; text-align: center; }
      .foot-links { justify-content: center; }

      .hero-btns { flex-direction: column; }
    }

    /* ===== WHATSAPP FLOATING BUTTON ===== */
    .wa-float {
      position: fixed;
      bottom: 1.8rem;
      right: 1.8rem;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.38);
      z-index: 950;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }
    .wa-float:hover {
      transform: scale(1.12) translateY(-2px);
      box-shadow: 0 8px 30px rgba(37,211,102,0.55);
    }
    .wa-float svg { width: 30px; height: 30px; }

    /* Tooltip */
    .wa-float::before {
      content: 'Falar no WhatsApp';
      position: absolute;
      right: calc(100% + 12px);
      background: #1a1a1a;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      white-space: nowrap;
      padding: 0.4rem 0.75rem;
      border-radius: 4px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .wa-float:hover::before { opacity: 1; }

    /* ===== QUANDO TEM IMAGEM REAL — oculta placeholder ===== */
    .sobre-img:has(img)::after,
    .mod-img-wrap:has(img)::after,
    .gal-item:has(img)::after { display: none; }