:root {
    --nav: #0f172a;
    --accent: #2563eb;
    --accent-hover: #1e4fd1;
    --text: #1b1b1f;
    --muted: #64748b;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --border: #e2e8f0;
    --green: #16a34a;
    --radius: 14px;
    --max-w: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ===================================================
   Botões
   =================================================== */

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border: 0; cursor: pointer;
    transition: transform .12s, background .12s;
    font-family: inherit;
    text-decoration: none;
}
.btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--bg-soft); }
.btn-ghost {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-whats { background: #25D366; }
.btn-whats:hover { background: #1da851; }

/* ===================================================
   Estados de carga / erro
   =================================================== */

.academy-loading {
    min-height: 70vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 14px; color: var(--muted);
}
.academy-spinner {
    width: 36px; height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.academy-error {
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
}
.academy-error h1 { color: var(--text); margin-bottom: 12px; font-size: 28px; }
.academy-error a { color: var(--accent); text-decoration: underline; margin-top: 14px; display: inline-block; }

/* ===================================================
   TopBar
   =================================================== */

.topbar {
    background: #0b0b0b;
    color: #cbd5e1;
    font-size: 12px;
    padding: 11px 0;
    letter-spacing: 0.02em;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.topbar-open  { color: #4ade80; font-weight: 700; }
.topbar-closed { color: #f87171; font-weight: 700; }

/* ===================================================
   Header / Nav
   =================================================== */

header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
    color: #fff;
    transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s;
}
header.header-scrolled,
header.header-static {
    background: rgba(11,11,11,0.92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.nav .logo,
.nav ul a {
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
header.header-scrolled .nav .logo,
header.header-scrolled .nav ul a {
    text-shadow: none;
}
.nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0;
    gap: 12px;
}
.nav .logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 18px;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 32px; width: auto; border-radius: 6px;
}
.logo-mark {
    width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), #6a42e6);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 13px; color: #fff;
    flex-shrink: 0;
}
.nav ul {
    list-style: none;
    display: flex; gap: 24px;
    flex: 1; justify-content: center;
    margin: 0; padding: 0;
}
.nav ul a {
    font-size: 13px; font-weight: 500;
    opacity: .85; transition: opacity .12s;
    color: #fff;
}
.nav ul a:hover { opacity: 1; }
.nav-cta {
    background: #ef4444;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(239,68,68,0.35);
    transition: box-shadow .2s, transform .15s, background .15s;
}
.nav-cta:hover {
    background: #dc2626;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.18), 0 6px 24px rgba(239,68,68,0.55);
    transform: translateY(-1px);
}
.nav-mobile-toggle {
    display: none;
    background: transparent; border: 0;
    color: #fff; font-size: 22px; cursor: pointer;
    padding: 4px;
    line-height: 1;
}

/* ===================================================
   Seção — Helpers gerais
   =================================================== */

.section { padding: 70px 0; }
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}
.section-eyebrow {
    text-transform: uppercase; letter-spacing: .12em;
    font-size: 11px; font-weight: 700; color: var(--accent);
    margin-bottom: 10px;
}
.section-head h2 {
    font-size: 36px; font-weight: 800;
    letter-spacing: -.01em; line-height: 1.2;
    margin-bottom: 10px;
}
.section-head p { font-size: 16px; color: var(--muted); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===================================================
   Hero
   =================================================== */

.hero {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    color: #fff;
}
.hero-empty {
    padding: 70px 0 90px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}
.hero-empty .hero-content { max-width: 720px; }
.hero-empty h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900; line-height: 1.05;
    letter-spacing: -.02em; margin-bottom: 18px;
}
.hero-empty p { font-size: 18px; opacity: .85; max-width: 560px; }

/* Hero carrossel — adaptativo ao tamanho real da imagem (sem corte) */
.hero-carousel {
    background: #000;
    width: 100%;
}
.hero-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 600;
    background: #000;
    overflow: hidden;
    touch-action: pan-y;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .8s ease-in-out;
    will-change: opacity;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* Sem max-height — qualquer limite quebra o aspect-ratio e força corte.
   A altura é ditada 100% pela proporção natural da imagem. */

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 2px 14px rgba(0,0,0,0.35);
    transition: background .2s, transform .2s, border-color .2s;
}
.hero-arrow:hover {
    background: #ef4444;
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.22), 0 6px 24px rgba(239,68,68,0.45);
}
.hero-arrow-prev { left: 18px; }
.hero-arrow-next { right: 18px; }
.hero-arrow-prev:hover { transform: translateY(-50%) translateX(-3px); }
.hero-arrow-next:hover { transform: translateY(-50%) translateX(3px); }
@media (max-width: 720px) {
    .hero-arrow { width: 36px; height: 36px; font-size: 22px; }
    .hero-arrow-prev { left: 8px; }
    .hero-arrow-next { right: 8px; }
}

.hero-dots {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 4;
}
.hero-dots .dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,.45);
    border: none; padding: 0;
    cursor: pointer; transition: all .3s ease;
    overflow: hidden;
    position: relative;
}
.hero-dots .dot.active {
    background: rgba(255,255,255,0.18);
    width: 56px; border-radius: 6px;
}
/* Progress bar dentro do dot ativo — preenche 6s e reseta */
.hero-dots .dot.active::after {
    content: '';
    position: absolute; inset: 0;
    background: #ef4444;
    transform-origin: left center;
    animation: heroDotProgress 6s linear forwards;
    border-radius: 6px;
}
@keyframes heroDotProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* ===================================================
   Highlights
   =================================================== */

.highlights {
    padding: 28px 0;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}
.highlights-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px 32px;
    align-items: center;
}
.highlight-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 4px;
}
.hl-ico {
    width: 38px; height: 38px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--text);
}
.hl-ico img { width: 100%; height: 100%; object-fit: contain; }
.hl-ico-emoji { font-size: 24px; }
.hl-text {
    display: flex; flex-direction: column;
    line-height: 1.35;
    min-width: 0;
}
.hl-text strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.hl-text span {
    font-size: 12px;
    color: var(--muted);
}
@media (max-width: 720px) {
    .highlights { padding: 18px 0; }
    .highlights-row { gap: 14px 20px; }
}

/* ===================================================
   Owner / Dono
   =================================================== */

.owner-section { background: var(--bg-soft); }
.owner-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: center;
}
.owner-img-col { display: flex; justify-content: center; }
.owner-photo {
    width: 280px; height: 280px;
    border-radius: 20px;
    object-fit: cover;
}
.owner-initials {
    background: linear-gradient(135deg, var(--accent), #6a42e6);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 72px; font-weight: 900;
}
.owner-content .section-eyebrow { margin-bottom: 10px; }
.owner-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 6px; }
.owner-role { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.owner-quote {
    font-size: 18px; font-style: italic; line-height: 1.6;
    border-left: 4px solid var(--accent);
    padding-left: 20px; margin: 0;
    color: var(--text);
}

/* ===================================================
   Modalidades
   =================================================== */

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.modality-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color .15s, transform .15s;
}
.modality-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
.modality-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #6a42e6);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #fff;
    margin-bottom: 16px;
}
.modality-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.modality-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===================================================
   Depoimentos
   =================================================== */

.testimonials-section { background: var(--bg-soft); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}
.testimonials-grid:has(> .testimonial-card:only-child) {
    grid-template-columns: minmax(300px, 560px);
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testimonial-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    flex: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.testimonial-initials {
    background: linear-gradient(135deg, var(--accent), #6a42e6);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 16px;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-since { display: block; font-size: 12px; color: var(--muted); }
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1;
}
.testimonial-stars .star.filled { color: #f59e0b; }
.testimonial-stars .star.empty  { color: #e5e7eb; }
.testimonials-metric {
    display: inline-block;
    margin: 0 auto 28px;
    padding: 8px 18px;
    background: linear-gradient(90deg, rgba(245,158,11,0.08), rgba(245,158,11,0.18));
    border: 1px solid rgba(245,158,11,0.35);
    color: #b45309;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
}
.testimonials-section .container { text-align: center; }
.testimonials-section .testimonials-metric { display: inline-block; }
.testimonials-grid { text-align: left; }

/* ===================================================
   Localização — single
   =================================================== */

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.location-map {
    min-height: 380px;
    background: linear-gradient(135deg, #94a3b8, #64748b);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.location-map iframe {
    width: 100%; height: 100%; min-height: 380px; border: 0;
}
.location-map-placeholder {
    font-size: 80px; opacity: .35;
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; min-height: 380px;
}
.location-info {
    padding: 36px 36px;
    display: flex; flex-direction: column; justify-content: center;
}
.location-info h3 {
    font-size: 26px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 12px;
}
.addr-block {
    font-size: 15px; color: var(--text);
    margin-bottom: 18px; line-height: 1.7;
}
.addr-block .city { color: var(--muted); font-size: 14px; }
.info-list {
    display: flex; flex-direction: column; gap: 10px;
    padding: 16px 0; border-top: 1px solid var(--border);
}
.info-list .row {
    display: flex; align-items: flex-start; gap: 12px; font-size: 14px;
}
.info-list .ico-circle {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(37,99,235,.1); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 16px;
}
.location-info .cta-row { margin-top: 20px; }

/* ===================================================
   Localização — múltiplas unidades
   =================================================== */

.units-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.unit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
}
.unit-map-wrap {
    height: 200px; overflow: hidden;
    background: linear-gradient(135deg, #94a3b8, #64748b);
}
.unit-map-wrap iframe { width: 100%; height: 100%; border: 0; }
.unit-map {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; opacity: .5; color: #fff;
}
.unit-body { padding: 20px 22px; }
.unit-tag {
    display: inline-block; padding: 3px 10px;
    background: rgba(37,99,235,.1); color: var(--accent);
    border-radius: 999px; font-size: 11px; font-weight: 700;
    margin-bottom: 10px;
}
.unit-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.unit-body .addr { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.unit-body .meta {
    font-size: 12px; color: var(--muted);
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex; gap: 14px; flex-wrap: wrap;
}

/* ===================================================
   Planos
   =================================================== */

.plans-section { background: var(--bg-soft); }
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.plan-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    text-align: center;
    transition: transform .15s, box-shadow .15s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.plan-card.featured {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(37,99,235,.15);
}
.plan-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    padding: 4px 14px; border-radius: 999px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em;
    white-space: nowrap;
}
.plan-card .name {
    font-size: 13px; color: var(--muted);
    font-weight: 600; text-transform: uppercase;
    letter-spacing: .04em; margin-bottom: 8px;
}
.plan-card .price {
    font-size: 40px; font-weight: 900;
    letter-spacing: -.02em; margin-bottom: 0;
}
.plan-card .price small {
    font-size: 13px; font-weight: 600; color: var(--muted);
    display: block; margin-top: 4px;
}
.plan-card ul {
    list-style: none;
    margin: 20px 0; text-align: left;
    flex: 1;
}
.plan-card ul li {
    font-size: 14px; padding: 7px 0;
    color: var(--text);
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--border);
}
.plan-card ul li:last-child { border-bottom: 0; }
.plan-card ul li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.plan-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.plans-trial {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--muted);
}

/* ===================================================
   Primeiro Dia
   =================================================== */

.firstday-section { background: var(--bg-soft); }
.firstday-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.firstday-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    position: relative;
}
.firstday-card::before {
    counter-increment: none;
}
.firstday-icon {
    font-size: 44px;
    margin-bottom: 18px;
}
.firstday-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.firstday-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===================================================
   Equipe
   =================================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.team-card { text-align: center; }
.team-card .avatar {
    width: 100%; aspect-ratio: 1;
    border-radius: 16px;
    background: linear-gradient(135deg, #94a3b8, #64748b);
    margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 36px; font-weight: 800;
    overflow: hidden;
}
.team-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.team-card p  { font-size: 13px; color: var(--muted); }

/* ===================================================
   Galeria
   =================================================== */

.gallery-grid {
    columns: 4;
    column-gap: 14px;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; display: block;
    transition: transform .3s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,.55); color: #fff;
    font-size: 12px; padding: 6px 10px;
    transform: translateY(100%); transition: transform .25s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ===================================================
   Loja / Produtos
   =================================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .15s, box-shadow .15s;
    display: flex; flex-direction: column;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.product-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex; align-items: center; justify-content: center;
    font-size: 56px; color: #94a3b8;
    overflow: hidden;
}
.product-body {
    padding: 14px 16px 18px;
    display: flex; flex-direction: column; flex: 1;
}
.product-cat {
    font-size: 11px; color: var(--muted);
    text-transform: uppercase; letter-spacing: .04em;
    font-weight: 600; margin-bottom: 4px;
}
.product-name {
    font-size: 14px; font-weight: 700;
    line-height: 1.3; margin-bottom: 8px;
}
.product-price {
    font-size: 20px; font-weight: 800;
    color: var(--accent); margin-bottom: 12px; margin-top: auto;
}

/* ===================================================
   FAQ
   =================================================== */

.faq-list {
    max-width: 800px; margin: 0 auto;
}
.faq-category {
    font-size: 13px; font-weight: 700;
    color: var(--accent); text-transform: uppercase;
    letter-spacing: .08em;
    margin: 28px 0 10px;
}
.faq-category:first-child { margin-top: 0; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    font-size: 15px; font-weight: 600;
    cursor: pointer;
    list-style: none;
    user-select: none;
    gap: 12px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-arrow {
    transition: transform .2s;
    flex-shrink: 0; font-size: 18px; color: var(--muted);
}
details[open] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    padding: 0 20px 18px;
    font-size: 14px; color: var(--muted);
    line-height: 1.65;
}

/* ===================================================
   Indique e Ganhe
   =================================================== */

.referral-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    padding: 70px 0;
}
.referral-inner {
    max-width: 640px; margin: 0 auto;
    text-align: center;
}
.referral-inner .section-eyebrow { color: #60a5fa; }
.referral-inner h2 {
    font-size: 34px; font-weight: 800;
    margin-bottom: 14px; color: #fff;
}
.referral-inner > p {
    font-size: 16px; opacity: .8; margin-bottom: 20px; line-height: 1.6;
}
.referral-reward {
    display: inline-block;
    background: rgba(37,99,235,.25);
    border: 1px solid rgba(37,99,235,.5);
    color: #93c5fd;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 15px; font-weight: 700;
    margin-bottom: 24px;
}

/* ===================================================
   Instagram
   =================================================== */

.insta-section { background: var(--bg-soft); }
.insta-section .section-eyebrow { color: #e1306c; }
.insta-section h2 { font-size: 28px; }

/* ===================================================
   CTA Final
   =================================================== */

.cta-section {
    background: linear-gradient(135deg, var(--nav) 0%, #1e3a8a 100%);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 38px; font-weight: 900;
    margin-bottom: 14px; letter-spacing: -.01em;
}
.cta-section p {
    font-size: 17px; opacity: .85;
    max-width: 540px; margin: 0 auto 28px;
}
.cta-row-center {
    display: flex; gap: 12px;
    justify-content: center; flex-wrap: wrap;
}

/* ===================================================
   Lead Form
   =================================================== */

.leadform-section { background: var(--bg-soft); }
.leadform-box {
    max-width: 560px; margin: 0 auto;
    text-align: center;
}
.leadform-box h2 {
    font-size: 28px; font-weight: 800; margin-bottom: 8px;
}
.leadform-box > p {
    font-size: 15px; color: var(--muted); margin-bottom: 28px;
}
.leadform-fields {
    display: flex; flex-direction: column; gap: 12px;
}
.leadform-fields input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color .15s;
}
.leadform-fields input:focus {
    outline: none;
    border-color: var(--accent);
}
.leadform-fields button {
    align-self: stretch;
    padding: 14px;
    font-size: 16px;
}

/* ===================================================
   Footer
   =================================================== */

.academy-footer {
    background: #0b0f1a;
    color: #94a3b8;
    padding: 56px 0 24px;
    font-size: 13px;
    line-height: 1.6;
}
.academy-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media (max-width: 900px) {
    .academy-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 540px) {
    .academy-footer .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.footer-col h4 {
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; color: #cbd5e1; font-size: 13px; }
.footer-col a { color: #cbd5e1; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-brand-row { margin-bottom: 12px; }
.footer-logo { height: 38px; width: auto; max-width: 200px; }
.footer-logo-mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    font-size: 14px;
}
.footer-tagline {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 14px;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.footer-social a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: inline-flex; align-items: center; justify-content: center;
    color: #cbd5e1;
    font-size: 13px;
    transition: background .15s, color .15s;
}
.footer-social a:hover { background: rgba(255,255,255,0.14); color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}
.footer-powered { opacity: 0.6; font-size: 11px; }
.social-row a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: #1e293b;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
    transition: background .12s;
    color: #94a3b8;
}
.social-row a:hover { background: var(--accent); color: #fff; }

/* ===================================================
   WhatsApp Flutuante
   =================================================== */

.whats-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 100;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    cursor: pointer;
    transition: transform .15s;
}
.whats-float:hover { transform: scale(1.08); }

/* ===================================================
   Responsive — 980px (tablet)
   =================================================== */

@media (max-width: 980px) {
    .hero h1 { font-size: 38px; }
    .hero > .hero-content > p { font-size: 16px; }

    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .modalities-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .firstday-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { columns: 2; }
    .units-grid { grid-template-columns: 1fr; }

    .location-grid { grid-template-columns: 1fr; }
    .location-map { min-height: 260px; }
    .location-map iframe { min-height: 260px; }

    .owner-grid { grid-template-columns: 1fr; }
    .owner-img-col { display: none; } /* oculta foto em tablet para economizar espaço */

    .footer-grid { grid-template-columns: 1fr 1fr; }

    .nav ul { display: none; }
    .nav ul.open {
        display: flex; flex-direction: column;
        position: absolute; top: 60px; left: 0; right: 0;
        background: var(--nav); z-index: 99;
        padding: 16px 20px; gap: 12px;
    }
    .nav-mobile-toggle { display: block; }

    .section-head h2 { font-size: 28px; }
}

/* ===================================================
   Responsive — 600px (mobile)
   =================================================== */

@media (max-width: 600px) {
    .hero { padding: 50px 0 70px; }
    .hero h1 { font-size: 30px; }
    .hero-stats { gap: 24px; }
    .hero-stat .num { font-size: 26px; }

    .highlights-grid { grid-template-columns: 1fr; }
    .modalities-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .firstday-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { columns: 1; }

    .section-head h2, .cta-section h2 { font-size: 24px; }
    .cta-section { padding: 50px 0; }
    .cta-section p { font-size: 15px; }

    .location-info { padding: 22px 18px; }
    .location-info h3 { font-size: 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .plan-card { padding: 26px 20px; }
    .plan-card .price { font-size: 32px; }

    .owner-grid { grid-template-columns: 1fr; }
    .owner-img-col { display: none; }

    .leadform-box h2 { font-size: 22px; }

    .topbar { display: none; } /* oculta topbar em mobile muito pequeno */
}

/* ── Seção banner customizado (config Shop pattern) ── */
.section-banner {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 36px;
    aspect-ratio: 16 / 5;
    background: #000;
}
.section-banner img,
.section-banner picture { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-banner picture img { width: 100%; height: 100%; }
.section-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: clamp(16px, 4vw, 40px);
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.35));
}
@media (max-width: 720px) {
    .section-banner { aspect-ratio: 4 / 5; max-height: 70vh; }
}

/* ── Vídeos & redes sociais ── */
.academy-videos { padding: 56px 0; }
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.video-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s;
}
.video-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #1f2937;
    overflow: hidden;
}
.video-cover img { width: 100%; height: 100%; object-fit: cover; }
.video-cover-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 56px; opacity: 0.6;
}
.video-play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.2s;
}
.video-card.video-link:hover .video-play-overlay { opacity: 1; }
.video-caption {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

/* ── Horário de funcionamento ── */
.academy-hours { padding: 56px 0; background: var(--bg-soft); }
.hours-status-wrap { text-align: center; margin: 0 auto 22px; }
.hours-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}
.hours-badge-open { background: rgba(22,163,74,0.12); color: #166534; }
.hours-badge-closed { background: rgba(220,38,38,0.12); color: #991b1b; }
.hours-grid {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: 0; }
.hours-day {
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
}
.hours-time {
    font-weight: 600;
    color: #475569;
    font-size: 14px;
}
.hours-row.is-closed .hours-time { color: #94a3b8; font-style: italic; }

/* ── Texto livre ── */
.academy-text { padding: 48px 0; }
.academy-text .text-body {
    max-width: 720px;
    margin: 24px auto 0;
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
}

.modality-card .modality-desc {
    margin-top: 6px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.section-description {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
}

.section-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}
.btn-cta-primary {
    background: #ef4444;
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 18px rgba(239,68,68,0.35);
    transition: transform .15s, box-shadow .2s, background .15s;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
}
.btn-cta-primary:hover {
    background: #dc2626;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.18), 0 10px 30px rgba(239,68,68,0.6);
    transform: translateY(-2px);
}
.btn-cta-secondary {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    transition: background .15s, border-color .15s, color .15s;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
}
.btn-cta-secondary:hover {
    background: var(--bg-soft);
    border-color: var(--text);
}

