:root {
      --verde:        #1a6b3c;
      --verde-claro:  #2e9e5b;
      --verde-menta:  #d4edd9;
      --amarelo:      #f5c518;
      --laranja:      #f07d2f;
      --creme:        #faf7f2;
      --escuro:       #1a1a1a;
      --cinza:        #6b7280;
      --branco:       #ffffff;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--creme);
      color: var(--escuro);
      overflow-x: hidden;
    }

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: .75rem 2.5rem;
      background: rgba(250,247,242,0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(26,107,60,0.1);
    }
    .nav-logo-wrap {
      display: flex; align-items: center; gap: .75rem;
      text-decoration: none;
    }
    .nav-logo-svg { width: 44px; height: 44px; flex-shrink: 0; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .nav-logo-helil {
      font-family: 'Fraunces', serif;
      font-size: 1.35rem; font-weight: 900;
      color: var(--verde); letter-spacing: -0.5px;
    }
    .nav-logo-sub { font-size: .6rem; color: var(--cinza); letter-spacing: .3px; text-transform: uppercase; }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { text-decoration: none; color: var(--escuro); font-weight: 500; font-size: .9rem; transition: color .2s; }
    .nav-links a:hover { color: var(--verde); }
    .nav-cta {
      background: var(--verde); color: var(--branco);
      padding: .55rem 1.4rem; border-radius: 50px;
      text-decoration: none; font-weight: 600; font-size: .88rem;
      transition: background .2s, transform .15s;
    }
    .nav-cta:hover { background: var(--verde-claro); transform: translateY(-1px); }

    .hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 7rem 2.5rem 4rem;
      gap: 3rem;
      max-width: 1200px; margin: 0 auto;
    }
    .hero-text { animation: fadeUp .9s ease both; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: var(--verde-menta); color: var(--verde);
      padding: .35rem 1rem; border-radius: 50px;
      font-size: .78rem; font-weight: 600; letter-spacing: .4px;
      text-transform: uppercase; margin-bottom: 1.5rem;
    }
    .hero-badge::before { content: '●'; font-size: .6rem; }
    h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      font-weight: 900; line-height: 1.08;
      letter-spacing: -1.5px; color: var(--escuro);
      margin-bottom: 1.4rem;
    }
    h1 em { color: var(--verde); font-style: italic; }
    .hero-desc { font-size: 1.05rem; line-height: 1.7; color: var(--cinza); max-width: 480px; margin-bottom: 2.2rem; }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: .6rem;
      background: var(--verde); color: var(--branco);
      padding: .85rem 2rem; border-radius: 50px;
      text-decoration: none; font-weight: 600; font-size: .95rem;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(26,107,60,0.3);
    }
    .btn-primary:hover { background: var(--verde-claro); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,107,60,0.35); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: .6rem;
      border: 2px solid var(--escuro); color: var(--escuro);
      padding: .85rem 2rem; border-radius: 50px;
      text-decoration: none; font-weight: 600; font-size: .95rem;
      transition: background .2s, color .2s;
    }
    .btn-secondary:hover { background: var(--escuro); color: var(--branco); }

    .hero-visual { animation: fadeUp .9s .2s ease both; position: relative; }
    .hero-card {
      background: var(--verde); border-radius: 28px;
      padding: 3rem; color: white;
      position: relative; overflow: hidden;
      min-height: 420px;
      display: flex; flex-direction: column; justify-content: flex-end;
    }
    .hero-card::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 70% 20%, rgba(245,197,24,0.25), transparent 60%),
                  radial-gradient(circle at 10% 80%, rgba(240,125,47,0.2), transparent 50%);
    }
    .hero-card-logo {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-62%);
      opacity: .18; width: 220px; height: 220px;
    }
    .hero-card-label { font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; opacity: .7; margin-bottom: .5rem; }
    .hero-card-title { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
    .hero-stats {
      display: flex; gap: 1.5rem; margin-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.2); padding-top: 1.5rem;
    }
    .stat-item { display: flex; flex-direction: column; }
    .stat-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 900; color: var(--amarelo); }
    .stat-label { font-size: .75rem; opacity: .75; }

    section { padding: 6rem 2.5rem; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-tag {
      display: inline-block;
      background: var(--verde-menta); color: var(--verde);
      padding: .3rem .9rem; border-radius: 50px;
      font-size: .75rem; font-weight: 700; letter-spacing: .5px;
      text-transform: uppercase; margin-bottom: 1rem;
    }
    h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 900; letter-spacing: -1px; line-height: 1.15;
      margin-bottom: 1rem;
    }
    h2 em { color: var(--verde); font-style: italic; }
    .section-subtitle { font-size: 1rem; line-height: 1.7; color: var(--cinza); max-width: 560px; margin-bottom: 3rem; }

    .sobre { background: var(--branco); }
    .sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .sobre-info-cards { display: flex; flex-direction: column; gap: 1.2rem; }
    .info-card {
      background: var(--creme); border-radius: 16px;
      padding: 1.4rem 1.6rem;
      display: flex; align-items: flex-start; gap: 1rem;
      border: 1px solid rgba(26,107,60,0.08);
      transition: transform .2s, box-shadow .2s;
    }
    .info-card:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
    .info-card-icon {
      font-size: 1.4rem; flex-shrink: 0;
      width: 44px; height: 44px;
      background: var(--verde-menta); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .info-card h4 { font-size: .78rem; color: var(--cinza); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .2rem; }
    .info-card p { font-size: .9rem; font-weight: 500; color: var(--escuro); }

    .oficinas { background: var(--escuro); }
    .oficinas h2 { color: var(--branco); }
    .oficinas .section-tag { background: rgba(255,255,255,0.1); color: var(--amarelo); }
    .oficinas .section-subtitle { color: rgba(255,255,255,0.6); }

    .carousel-wrapper { position: relative; overflow: hidden; border-radius: 20px; }
    .carousel-track { display: flex; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
    .carousel-slide { min-width: 100%; position: relative; background: #2a2a2a; border-radius: 20px; overflow: hidden; }

    .slide-visual {
      height: 380px;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .slide-futebol .slide-visual { background: linear-gradient(135deg, #1a3a1a, #2e7d32); }
    .slide-musica  .slide-visual { background: linear-gradient(135deg, #1a1a3a, #4a148c); }
    .slide-luta    .slide-visual { background: linear-gradient(135deg, #2a1a0a, #bf360c); }
    .slide-artes   .slide-visual { background: linear-gradient(135deg, #3a2a1a, #e65100); }

    .slide-visual img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
    }

    .slide-nav {
      position: absolute; bottom: .8rem; right: 1rem;
      display: flex; gap: .4rem; z-index: 2;
    }
    .slide-nav-btn {
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.3);
      color: white; font-size: .8rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .slide-nav-btn:hover { background: rgba(0,0,0,0.8); }
    .slide-photo-counter {
      position: absolute; top: .8rem; right: 1rem;
      background: rgba(0,0,0,0.5); color: white;
      padding: .2rem .6rem; border-radius: 50px;
      font-size: .72rem; z-index: 2;
    }

    .slide-info { padding: 2rem 2.5rem; }
    .slide-badge {
      display: inline-block;
      background: var(--amarelo); color: var(--escuro);
      padding: .25rem .8rem; border-radius: 50px;
      font-size: .72rem; font-weight: 700; letter-spacing: .5px;
      text-transform: uppercase; margin-bottom: .8rem;
    }
    .slide-info h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; color: var(--branco); margin-bottom: .5rem; }
    .slide-info p { font-size: .9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

    .carousel-controls {
      display: flex; align-items: center; justify-content: center;
      gap: 1rem; margin-top: 2rem;
    }
    .carousel-btn {
      width: 48px; height: 48px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.2);
      background: transparent; color: white;
      font-size: 1.2rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, border-color .2s;
    }
    .carousel-btn:hover { background: var(--verde); border-color: var(--verde); }
    .carousel-dots { display: flex; gap: .5rem; }
    .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.3); cursor: pointer;
      transition: background .2s, transform .2s; border: none;
    }
    .dot.active { background: var(--amarelo); transform: scale(1.3); }

    .localizacao { background: var(--creme); }
    .localizacao-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
    .map-container {
      border-radius: 24px; overflow: hidden;
      border: 3px solid var(--verde);
      box-shadow: 0 12px 40px rgba(26,107,60,0.15);
      cursor: pointer; transition: transform .2s, box-shadow .2s;
    }
    .map-container:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(26,107,60,0.2); }
    .map-container iframe { display: block; width: 100%; height: 360px; border: none; }
    .map-caption {
      background: var(--verde); color: white;
      padding: .9rem 1.5rem;
      display: flex; align-items: center; gap: .7rem;
      font-size: .85rem; font-weight: 500;
    }
    .localizacao-info { padding-top: 1rem; }
    .address-block {
      background: var(--branco); border-radius: 20px;
      padding: 2rem; margin-bottom: 1.5rem;
      border: 1px solid rgba(26,107,60,0.1);
    }
    .address-block h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .5px; color: var(--cinza); margin-bottom: .5rem; }
    .address-block p { font-size: 1rem; font-weight: 500; line-height: 1.6; }
    .btn-mapa {
      display: flex; align-items: center; gap: .7rem;
      background: var(--verde); color: white;
      padding: 1rem 1.8rem; border-radius: 14px;
      text-decoration: none; font-weight: 600; font-size: .9rem;
      transition: background .2s, transform .15s;
      width: fit-content;
      box-shadow: 0 4px 18px rgba(26,107,60,0.25);
    }
    .btn-mapa:hover { background: var(--verde-claro); transform: translateY(-2px); }

    .contato { background: var(--verde); }
    .contato-inner { max-width: 900px; margin: 0 auto; text-align: center; }
    .contato h2 { color: var(--branco); }
    .contato .section-tag { background: rgba(255,255,255,0.15); color: var(--amarelo); }
    .contato p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
    .whatsapp-btn {
      display: inline-flex; align-items: center; gap: .9rem;
      background: #25D366; color: white;
      padding: 1.1rem 2.6rem; border-radius: 50px;
      text-decoration: none; font-weight: 700; font-size: 1.05rem;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 6px 30px rgba(0,0,0,0.2);
    }
    .whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
    .whatsapp-icon { width: 26px; height: 26px; }
    .cnpj-info {
      margin-top: 3rem; padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.5); font-size: .82rem;
    }
    .cnpj-info strong { color: rgba(255,255,255,0.7); }

    footer { background: #111; color: rgba(255,255,255,0.5); text-align: center; padding: 2rem; font-size: .82rem; }
    footer strong { color: rgba(255,255,255,0.8); }

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

    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; padding: 6rem 1.5rem 3rem; }
      .hero-visual { display: none; }
      h1 { font-size: 2.6rem; }
      section { padding: 4rem 1.5rem; }
      .sobre-grid { grid-template-columns: 1fr; gap: 2rem; }
      .localizacao-grid { grid-template-columns: 1fr; }
      .slide-visual { height: 240px; }
    }
