/* ============================================
           DESIGN TOKENS & RESET
        ============================================ */
        :root {
            --verde:       #2E7D5B;
            --verde-claro: #3D9E73;
            --verde-bg:    #F0F7F4;
            --verde-light: #E2F0EA;
            --dourado:     #C4973A;
            --texto:       #1A2B22;
            --texto-med:   #3D5248;
            --texto-leve:  #6B8278;
            --branco:      #FFFFFF;
            --cinza-claro: #F5F7F6;
            --borda:       #D8E8E0;
            --sombra:      0 4px 24px rgba(46,125,91,0.10);
            --sombra-hover:0 8px 36px rgba(46,125,91,0.18);
            --radius:      12px;
            --radius-lg:   20px;
            --font-titulo: 'Lora', Georgia, serif;
            --font-corpo:  'DM Sans', system-ui, sans-serif;
            --nav-h:       72px;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-corpo);
            font-size: 15px;
            color: var(--texto);
            background: var(--branco);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        /* ============================================
           HEADER / NAV
        ============================================ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--branco);
            box-shadow: 0 1px 0 var(--borda), 0 2px 16px rgba(0,0,0,0.06);
            height: var(--nav-h);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .site-logo img {
            height: 46px;
            width: auto;
        }

        .main-nav {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .main-nav a {
            font-size: 13.5px;
            font-weight: 500;
            color: var(--texto-med);
            padding: 8px 13px;
            border-radius: 8px;
            transition: background 0.18s, color 0.18s;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }

        .main-nav a:hover {
            background: var(--verde-light);
            color: var(--verde);
        }

        .nav-cta {
            background: #25D366 !important;
            color: var(--branco) !important;
            font-weight: 700 !important;
            font-size: 13.5px !important;
            padding: 10px 20px !important;
            border-radius: 100px !important;
            margin-left: 12px;
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
            box-shadow: 0 3px 14px rgba(37,211,102,0.35) !important;
            transition: background 0.18s, transform 0.15s, box-shadow 0.18s !important;
            letter-spacing: 0.01em !important;
        }
        .nav-cta svg {
            width: 17px;
            height: 17px;
            fill: #fff;
            flex-shrink: 0;
        }
        .nav-cta:hover {
            background: #1ebe5a !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 20px rgba(37,211,102,0.45) !important;
        }

        /* Mobile hamburger (hidden on desktop) */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            margin-left: auto;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--verde);
            border-radius: 2px;
            transition: transform 0.25s, opacity 0.2s;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ============================================
           HERO BANNER
        ============================================ */
        .hero {
            position: relative;
            overflow: hidden;
            min-height: 520px;
            display: flex;
            align-items: center;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url("images/Fisioterapia_Taguatinga.webp") center/cover no-repeat;
            transform: scale(1.03);
            transition: transform 9s ease;
        }
        .hero:hover .hero-bg { transform: scale(1.06); }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                108deg,
                rgba(14,56,36,0.90) 0%,
                rgba(24,90,58,0.82) 42%,
                rgba(30,110,70,0.58) 68%,
                rgba(30,110,70,0.28) 100%
            );
        }

        .hero-arc {
            position: absolute;
            bottom: -2px;
            left: 0; right: 0;
            height: 56px;
            background: var(--branco);
            clip-path: ellipse(54% 100% at 50% 100%);
            z-index: 2;
        }

        .hero-inner {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px 100px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 56px;
            align-items: center;
            width: 100%;
        }

        .hero-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-pretitle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.14);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.24);
            color: rgba(255,255,255,0.90);
            font-size: 11.5px;
            font-weight: 600;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 100px;
            margin-bottom: 22px;
        }
        .hero-pretitle svg { width: 13px; height: 13px; fill: #A8E5C8; }

        .hero-text h1 {
            font-family: var(--font-titulo);
            font-size: clamp(30px, 3.6vw, 50px);
            font-weight: 600;
            color: var(--branco);
            line-height: 1.18;
            margin-bottom: 20px;
        }
        .hero-text h1 em { font-style: italic; color: #A8E5C8; }

        .hero-text p {
            font-size: 16px;
            color: rgba(255,255,255,0.80);
            margin-bottom: 36px;
            max-width: 460px;
            line-height: 1.75;
        }

        .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--branco);
            color: var(--verde);
            font-weight: 700;
            font-size: 14px;
            padding: 15px 28px;
            border-radius: 10px;
            transition: transform 0.18s, box-shadow 0.18s;
            box-shadow: 0 6px 24px rgba(0,0,0,0.18);
        }
        .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(0,0,0,0.24); }
        .btn-hero-primary svg { width: 18px; height: 18px; fill: #25D366; flex-shrink: 0; }

        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid rgba(255,255,255,0.40);
            color: var(--branco);
            font-weight: 600;
            font-size: 14px;
            padding: 13px 24px;
            border-radius: 10px;
            transition: border-color 0.18s, background 0.18s;
        }
        .btn-hero-secondary:hover { border-color: var(--branco); background: rgba(255,255,255,0.10); }
        .btn-hero-secondary svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.8); flex-shrink: 0; }

        /* BADGES refinados */
        .hero-badges { display: flex; flex-direction: column; gap: 14px; }

        .badge-card {
            background: rgba(255,255,255,0.10);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255,255,255,0.20);
            border-radius: 16px;
            padding: 20px 22px;
            display: flex;
            align-items: center;
            gap: 18px;
            transition: background 0.22s, border-color 0.22s, transform 0.22s;
        }
        .badge-card:hover {
            background: rgba(255,255,255,0.16);
            border-color: rgba(255,255,255,0.32);
            transform: translateX(-4px);
        }

        .badge-icon {
            width: 50px; height: 50px;
            background: rgba(255,255,255,0.16);
            border-radius: 13px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .badge-icon svg { width: 26px; height: 26px; fill: #A8E5C8; }

        .badge-info strong {
            display: block;
            color: var(--branco);
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .badge-info span { color: rgba(255,255,255,0.62); font-size: 13px; }

        .badge-stars { display: flex; gap: 2px; margin-top: 5px; }
        .badge-stars svg { width: 13px; height: 13px; fill: #FFD166; }

        /* ============================================
           SECTION GENÉRICA
        ============================================ */
        .section {
            padding: 72px 0;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-tag {
            display: inline-block;
            background: var(--verde-light);
            color: var(--verde);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 100px;
            margin-bottom: 14px;
        }

        .section-title {
            font-family: var(--font-titulo);
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 600;
            color: var(--texto);
            line-height: 1.25;
        }

        .section-title em {
            font-style: italic;
            color: var(--verde);
        }

        .section-subtitle {
            color: var(--texto-leve);
            font-size: 16px;
            margin-top: 12px;
        }

        /* ============================================
           TRATAMENTOS GRID
        ============================================ */
        .treatments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .treatment-card {
            background: var(--branco);
            border: 1px solid var(--borda);
            border-radius: var(--radius);
            overflow: hidden;
            transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
        }

        .treatment-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--sombra-hover);
            border-color: var(--verde-claro);
        }

        .treatment-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .treatment-card:hover img { transform: scale(1.04); }

        .treatment-info {
            padding: 16px;
        }

        .treatment-info h2 {
            font-size: 14.5px;
            font-weight: 600;
            color: var(--texto);
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .treatment-link {
            font-size: 12px;
            color: var(--verde);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 6px;
            transition: gap 0.15s;
        }
        .treatment-card:hover .treatment-link { gap: 8px; }

        /* ============================================
           TURMAS (NATAÇÃO)
        ============================================ */
        .turmas-section {
            background: var(--verde-bg);
        }

        .turmas-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .turma-card {
            background: var(--branco);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--sombra);
            transition: transform 0.22s, box-shadow 0.22s;
        }
        .turma-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--sombra-hover);
        }

        .turma-card-img {
            position: relative;
            overflow: hidden;
        }

        .turma-card img {
            width: 100%;
            height: 130px;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .turma-card:hover img { transform: scale(1.05); }

        /* Banner Metodologia Gustavo Borges */
        .mgb-banner {
            display: flex;
            align-items: center;
            gap: 24px;
            background: var(--branco);
            border: 1px solid var(--borda);
            border-left: 4px solid #143264;
            border-radius: var(--radius);
            padding: 20px 28px;
            margin-bottom: 32px;
            box-shadow: var(--sombra);
        }

        .mgb-banner-logo {
            flex-shrink: 0;
            width: 110px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mgb-banner-logo img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 50%;
            /* Remove fundo preto: o PNG tem fundo preto, blend-mode remove no fundo branco */
            mix-blend-mode: multiply;
        }

        .mgb-banner-text {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .mgb-banner-text strong {
            font-size: 14.5px;
            font-weight: 700;
            color: var(--texto);
            line-height: 1.3;
        }
        .mgb-banner-text span {
            font-size: 13.5px;
            color: var(--texto-leve);
            line-height: 1.65;
        }

        /* CTA abaixo das turmas */
        .turmas-cta {
            text-align: center;
            margin-top: 28px;
        }
        .turmas-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--verde-bg);
            color: var(--verde);
            font-weight: 700;
            font-size: 14px;
            padding: 13px 28px;
            border-radius: 100px;
            border: 2px solid var(--borda);
            transition: background 0.18s, border-color 0.18s, transform 0.18s;
        }
        .turmas-cta-btn:hover {
            background: var(--verde-light);
            border-color: var(--verde-claro);
            transform: translateY(-2px);
        }
        .turmas-cta-btn svg {
            width: 18px; height: 18px;
            fill: var(--verde);
        }

        @media (max-width: 768px) {
            .mgb-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
            .mgb-banner-logo { width: 90px; }
        }

        .turma-info {
            padding: 12px 14px 14px;
        }

        .turma-info h2 {
            font-size: 13px;
            font-weight: 600;
            color: var(--texto);
            line-height: 1.3;
        }

        .turma-badge {
            display: inline-block;
            background: var(--verde-light);
            color: var(--verde);
            font-size: 11px;
            font-weight: 600;
            padding: 3px 9px;
            border-radius: 100px;
            margin-top: 6px;
        }

        /* ============================================
           ESPAÇO FÍSICO (GALERIA)
        ============================================ */
        .espaco-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 16px;
        }

        .espaco-item {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
        }

        .espaco-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .espaco-item:hover img { transform: scale(1.04); }

        .espaco-item.destaque {
            grid-column: 1 / 2;
            grid-row: 1 / 3;
        }
        .espaco-item.destaque img { height: 100%; min-height: 456px; }

        .espaco-label {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(26, 43, 34, 0.75);
            backdrop-filter: blur(8px);
            color: var(--branco);
            font-size: 12px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 100px;
        }

        /* ============================================
           INFORMAÇÕES / INFO STRIP
        ============================================ */
        .info-strip {
            background: var(--verde);
            padding: 48px 0;
        }

        .info-strip-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .info-block h3 {
            font-family: var(--font-titulo);
            font-size: 18px;
            font-weight: 600;
            color: var(--branco);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .info-block p {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .info-block strong {
            color: var(--branco);
        }

        /* Botões sociais */
        .social-btns {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            transition: transform 0.18s, opacity 0.18s;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .social-btn:hover { transform: translateY(-2px); opacity: 0.9; }
        .social-btn svg { width: 17px; height: 17px; fill: #fff; flex-shrink: 0; }
        .social-btn.facebook { background: #1877F2; }
        .social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

        /* Botão WhatsApp strip */
        .wpp-strip-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25D366;
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            padding: 13px 22px;
            border-radius: 10px;
            margin-top: 18px;
            transition: transform 0.18s, box-shadow 0.18s;
            box-shadow: 0 4px 18px rgba(37,211,102,0.30);
        }
        .wpp-strip-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
        .wpp-strip-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

        .horario-table {
            width: 100%;
            border-collapse: collapse;
        }
        .horario-table tr td {
            padding: 5px 0;
            font-size: 13.5px;
            color: rgba(255,255,255,0.8);
            vertical-align: top;
        }
        .horario-table tr td:first-child {
            color: rgba(255,255,255,0.55);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            width: 90px;
            padding-top: 7px;
        }
        .horario-table tr.alt td { color: rgba(255,255,255,0.9); }

        .horario-table tr td strong {
            display: block;
            color: var(--branco);
            font-size: 14px;
        }

        /* ============================================
           MAPA
        ============================================ */
        .mapa-section {
            background: var(--cinza-claro);
        }

        #map {
            height: 400px;
            width: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--sombra);
        }

        .mapa-link-wrap {
            display: block;
        }

        /* ============================================
           FOOTER
        ============================================ */
        footer {
            background: #0F2419;
            color: rgba(255,255,255,0.75);
            padding: 56px 0 0;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
        }

        .footer-brand img {
            height: 42px;
            margin-bottom: 16px;
            filter: brightness(0) invert(1);
            opacity: 0.85;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255,255,255,0.6);
        }

        .footer-col h4 {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.4);
            margin-bottom: 16px;
        }

        .footer-col p, .footer-col a {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 6px;
            display: block;
            transition: color 0.15s;
        }
        .footer-col a:hover { color: var(--branco); }

        .footer-bar {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 18px 32px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: rgba(255,255,255,0.35);
        }
        .footer-bar a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
        .footer-bar a:hover { color: rgba(255,255,255,0.9); }

        /* ============================================
           FLOATING BUTTONS — SVG puro, sem imagens
        ============================================ */
        .floating-buttons {
            position: fixed;
            bottom: 28px;
            right: 28px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 9999;
        }

        .fb-btn {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.22);
            transition: transform 0.18s, box-shadow 0.18s;
            position: relative;
        }
        .fb-btn:hover {
            transform: scale(1.10);
            box-shadow: 0 8px 32px rgba(0,0,0,0.30);
        }
        .fb-btn.wpp  { background: #25D366; }
        .fb-btn.tel  { background: var(--verde); }
        .fb-btn svg  { width: 28px; height: 28px; fill: #fff; }

        /* Tooltip */
        .fb-btn::before {
            content: attr(data-tip);
            position: absolute;
            right: 68px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(12,32,20,0.88);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 8px;
            white-space: nowrap;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s;
        }
        .fb-btn:hover::before { opacity: 1; }

        /* Pulso no botão WhatsApp */
        .fb-btn.wpp::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid rgba(37,211,102,0.45);
            animation: pulse-wpp 2.2s ease-out infinite;
        }
        @keyframes pulse-wpp {
            0%   { transform: scale(1);   opacity: 1; }
            70%  { transform: scale(1.35); opacity: 0; }
            100% { transform: scale(1.35); opacity: 0; }
        }

        /* WhatsApp desktop footer — oculto */
        .whatsapp-icone { display: none; }

        /* ============================================
           MOBILE NAV DRAWER
        ============================================ */
        .mobile-drawer {
            display: none;
            position: fixed;
            top: var(--nav-h);
            left: 0;
            right: 0;
            background: var(--branco);
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            z-index: 999;
            padding: 20px 24px 28px;
            border-top: 1px solid var(--borda);
        }
        .mobile-drawer.open { display: block; }

        .mobile-drawer ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .mobile-drawer a {
            display: block;
            padding: 12px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--texto-med);
            border-radius: 8px;
            transition: background 0.15s, color 0.15s;
        }
        .mobile-drawer a:hover {
            background: var(--verde-light);
            color: var(--verde);
        }

        .mobile-wpp {
            display: block;
            margin-top: 16px;
            background: #25D366;
            color: var(--branco);
            font-weight: 700;
            font-size: 15px;
            text-align: center;
            padding: 14px;
            border-radius: 10px;
        }

        /* ============================================
           CONVENIOS STRIP
        ============================================ */
        .convenios-strip {
            background: var(--verde-light);
            padding: 28px 0;
            text-align: center;
        }
        .convenios-strip p {
            font-size: 15px;
            color: var(--verde);
            font-weight: 500;
        }
        .convenios-strip a {
            font-weight: 700;
            text-decoration: underline;
            color: var(--verde);
        }

        /* ============================================
           RESPONSIVO DESKTOP → TABLET → MOBILE
        ============================================ */
        @media (max-width: 1100px) {
            .treatments-grid { grid-template-columns: repeat(3, 1fr); }
            .turmas-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 900px) {
            .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 28px 80px; }
            .hero-badges { flex-direction: row; flex-wrap: wrap; }
            .badge-card { flex: 1; min-width: 200px; }
            .treatments-grid { grid-template-columns: repeat(2, 1fr); }
            .turmas-grid { grid-template-columns: repeat(2, 1fr); }
            .espaco-item.destaque { grid-column: 1; grid-row: auto; }
            .espaco-item.destaque img { min-height: auto; height: 220px; }
            .espaco-grid { grid-template-columns: 1fr 1fr; }
            .info-strip-inner { grid-template-columns: 1fr; gap: 32px; }
            .footer-inner { grid-template-columns: 1fr; gap: 32px; }
        }

        @media (max-width: 768px) {
            :root { --nav-h: 64px; }
            .hamburger { display: flex; }
            .main-nav { display: none; }
            .header-inner { gap: 0; }
            .site-logo { flex: 1; }
            .section { padding: 48px 0; }
            .hero-inner { padding: 48px 20px; }
            .section-inner { padding: 0 20px; }
            .hero-text h1 { font-size: 26px; }
            .hero-actions { flex-direction: column; gap: 10px; }
            .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
            .treatments-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .treatment-card img { height: 120px; }
            .turmas-grid { grid-template-columns: 1fr 1fr; }
            .espaco-grid { grid-template-columns: 1fr; }
            .espaco-item.destaque img { height: 220px; }
            .info-strip { padding: 40px 0; }
            .info-strip-inner { padding: 0 20px; }
            .footer-inner { padding: 0 20px 40px; }
            .footer-bar { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
            .floating-buttons { bottom: 20px; right: 16px; }
            .fb-btn { width: 50px; height: 50px; }
            .fb-btn svg { width: 24px; height: 24px; }
        }

        @media (max-width: 480px) {
            .treatments-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .turmas-grid { grid-template-columns: 1fr 1fr; }
            .badge-card { min-width: 100%; }
        }

        /* ============================================
           ANIMAÇÕES DE ENTRADA
        ============================================ */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero-pretitle { animation: fadeUp 0.5s ease both; }
        .hero-text h1 { animation: fadeUp 0.6s 0.08s ease both; }
        .hero-text p  { animation: fadeUp 0.6s 0.18s ease both; }
        .hero-actions { animation: fadeUp 0.6s 0.28s ease both; }
        .hero-badges  { animation: fadeUp 0.6s 0.38s ease both; }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: none;
        }

/* =============================================
   PÁGINAS INTERNAS — COMPONENTES COMPARTILHADOS
============================================= */

/* Hero interno (usado em convenios, fisioterapia, etc) */
.page-hero {
    background: linear-gradient(108deg, rgba(14,56,36,0.92) 0%, rgba(24,90,58,0.85) 45%, rgba(30,110,70,0.60) 100%);
    position: relative;
    overflow: hidden;
    padding: 64px 0 72px;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("images/Fisioterapia_Taguatinga.webp") center/cover no-repeat;
    z-index: -1;
}
.page-hero-arc {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 48px;
    background: var(--cinza-claro);
    clip-path: ellipse(54% 100% at 50% 100%);
}
.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color .15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 12px; height: 12px; fill: rgba(255,255,255,0.4); }
.page-hero h1 {
    font-family: var(--font-titulo);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.page-hero h1 em { font-style: italic; color: #A8E5C8; }
.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    line-height: 1.7;
}

/* =============================================
   PÁGINA CONVÊNIOS
============================================= */
.conv-intro { background: var(--cinza-claro); padding: 48px 0 56px; }
.conv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.conv-stat {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--sombra);
    transition: transform .22s, box-shadow .22s;
}
.conv-stat:hover { transform: translateY(-3px); box-shadow: var(--sombra-hover); }
.conv-stat-icon {
    width: 52px; height: 52px;
    background: var(--verde-bg);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.conv-stat-icon svg { width: 26px; height: 26px; fill: var(--verde); }
.conv-stat strong { display: block; font-size: 24px; font-weight: 800; color: var(--verde); line-height: 1; margin-bottom: 4px; }
.conv-stat span { font-size: 13px; color: var(--texto-leve); }

.convenios-sec { padding: 64px 0; }
.convenios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.conv-item {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--texto);
    transition: border-color .18s, background .18s, transform .18s;
}
.conv-item:hover {
    border-color: var(--verde-claro);
    background: var(--verde-bg);
    transform: translateY(-2px);
}
.conv-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--verde);
    flex-shrink: 0;
}
.conv-cta-banner {
    background: linear-gradient(108deg, #0E3824, #1A7A4A);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 48px;
}
.conv-cta-text strong {
    display: block;
    font-family: var(--font-titulo);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.conv-cta-text p { font-size: 14px; color: rgba(255,255,255,0.75); }
.conv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 28px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(37,211,102,.35);
    transition: transform .18s, box-shadow .18s;
    flex-shrink: 0;
}
.conv-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.conv-cta-btn svg { width: 20px; height: 20px; fill: #fff; }
.conv-aviso {
    background: var(--verde-light);
    border: 1px solid var(--borda);
    border-left: 4px solid var(--verde);
    border-radius: var(--radius);
    padding: 16px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
}
.conv-aviso svg { width: 20px; height: 20px; fill: var(--verde); flex-shrink: 0; margin-top: 2px; }
.conv-aviso p { font-size: 13.5px; color: var(--texto-med); line-height: 1.6; }
.conv-aviso strong { color: var(--verde); }

/* Responsivo convênios */
@media (max-width: 1000px) { .convenios-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) {
    .conv-stats { grid-template-columns: 1fr; padding: 0 18px; }
    .convenios-grid { grid-template-columns: repeat(2,1fr); }
    .conv-cta-banner { flex-direction: column; padding: 28px 24px; }
    .conv-cta-btn { width: 100%; justify-content: center; }
    .page-hero-inner { padding: 0 20px; }
    .convenios-sec .section-inner { padding: 0 18px; }
}
@media (max-width: 480px) {
    .convenios-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* =============================================
   PÁGINAS DE SERVIÇO — LAYOUT INTERNO
============================================= */

/* Layout 2 colunas: imagem + texto */
.inner-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 32px;
}
.inner-img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    max-height: 340px;
    box-shadow: var(--sombra);
}
.inner-text p {
    font-size: 15px;
    color: var(--texto2);
    line-height: 1.75;
    margin-bottom: 14px;
}
.inner-text strong { color: var(--texto); }

/* Lista de benefícios */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--texto);
    line-height: 1.5;
}
.benefit-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--verde);
    flex-shrink: 0;
    margin-top: 5px;
}

/* CTA interno */
.inner-cta {
    text-align: center;
    margin-top: 32px;
}

/* Responsivo inner layout */
@media (max-width: 768px) {
    .inner-layout { grid-template-columns: 1fr; }
    .inner-img { max-height: 220px; }
}

/* =============================================
   HORÁRIOS DE NATAÇÃO
============================================= */
.horarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}
.turma-horario-card {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: transform .22s, box-shadow .22s;
}
.turma-horario-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-hover);
}
.th-header {
    position: relative;
    overflow: hidden;
}
.th-header img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
    transition: transform .4s;
}
.turma-horario-card:hover .th-header img { transform: scale(1.05); }
.th-header h3 {
    position: absolute;
    bottom: 24px; left: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.th-header span {
    position: absolute;
    bottom: 8px; left: 12px;
    font-size: 11px;
    color: rgba(255,255,255,.85);
    font-weight: 500;
}
.th-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55), transparent 60%);
}
.th-body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.th-dias {
    font-size: 11px;
    color: var(--verde);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--borda);
}
.th-dias:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.th-slot {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--texto);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.th-slot::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--borda);
    flex-shrink: 0;
}

/* Cores por turma */
.th-adulto h3::after  { content: ''; }
.th-baby    { border-top: 3px solid #25D366; }
.th-infantil{ border-top: 3px solid var(--az, #0B5FA5); }
.th-teen    { border-top: 3px solid var(--dourado, #C4973A); }
.th-adulto  { border-top: 3px solid var(--verde); }

@media (max-width: 900px)  { .horarios-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .horarios-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* =============================================
   PÁGINAS DE SERVIÇO v2 — LAYOUT RICO
============================================= */
.pg-section { padding: 64px 0; }
.pg-section-alt { background: var(--cinza-claro); }

/* Layout 2 colunas */
.pg-two-col {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}
.pg-two-col.reverse { direction: rtl; }
.pg-two-col.reverse > * { direction: ltr; }
.pg-col-a, .pg-col-b {}
.pg-col-a p, .pg-col-b p {
    font-size: 15px;
    color: var(--texto2);
    line-height: 1.78;
    margin-bottom: 14px;
}

/* Imagem interna */
.pg-img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    max-height: 360px;
    box-shadow: var(--sombra);
    transition: transform .4s;
}
.pg-img:hover { transform: scale(1.02); }

/* Cards grid 4 colunas */
.pg-cards-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-top: 8px;
}
.pg-card {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    padding: 22px 18px;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.pg-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-hover);
    border-color: var(--verde-claro);
}
.pg-card-icon {
    width: 44px; height: 44px;
    background: var(--verde-bg);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.pg-card-icon svg { width: 24px; height: 24px; fill: var(--verde); }
.pg-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 6px;
    line-height: 1.3;
}
.pg-card p { font-size: 13px; color: var(--texto-leve); line-height: 1.6; }

/* Diferenciais grid 2x2 */
.pg-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.pg-highlight {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: box-shadow .2s;
}
.pg-highlight:hover { box-shadow: var(--sombra); }
.pg-hl-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--verde-bg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pg-hl-icon svg { width: 22px; height: 22px; fill: var(--verde); }
.pg-highlight strong { display: block; font-size: 14px; font-weight: 700; color: var(--texto); margin-bottom: 4px; }
.pg-highlight p { font-size: 13px; color: var(--texto-leve); line-height: 1.5; margin: 0; }

/* Pool card com imagem */
.pg-pool-card {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sombra);
}
.pg-pool-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.pg-pool-info { padding: 16px 18px; }
.pg-pool-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 12px;
}
.pg-pool-info ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.pg-pool-info li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px; color: var(--texto2);
}
.pg-pool-info li svg { width: 16px; height: 16px; fill: var(--verde); flex-shrink: 0; }

/* Horários hidroginástica */
.horarios-hidrogin {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 20px;
    box-shadow: var(--sombra);
}
.horarios-hidrogin h3 {
    font-family: var(--font-titulo);
    font-size: 18px;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--borda);
}
.horarios-hidrogin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.horarios-hidrogin-grid strong {
    display: block;
    font-size: 11px;
    color: var(--verde);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 10px;
}

/* CTA centralizado */
.pg-cta {
    text-align: center;
    margin-top: 36px;
}

/* Benefits list cols */
.benefits-cols-2 {
    columns: 2;
    column-gap: 24px;
}
.benefits-cols-2 .benefit-item { break-inside: avoid; }

/* Responsivo */
@media (max-width: 1100px) {
    .pg-cards-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
    .pg-two-col { grid-template-columns: 1fr; gap: 28px; }
    .pg-cards-grid { grid-template-columns: repeat(2,1fr); }
    .pg-diff-grid { grid-template-columns: 1fr; }
    .benefits-cols-2 { columns: 1; }
    .horarios-hidrogin-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .pg-cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pg-section { padding: 44px 0; }
}

/* =============================================
   PÁGINA NATAÇÃO — COMPONENTES ESPECÍFICOS
============================================= */

/* Turma row — foto + info lado a lado */
.turma-row {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--borda);
}
.turma-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.turma-row-reverse { grid-template-columns: 1fr 380px; }
.turma-row-reverse .turma-row-foto { order: 2; }
.turma-row-reverse .turma-row-info { order: 1; }

.turma-row-foto { position: relative; }
.turma-row-foto img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--sombra);
    transition: transform .4s;
}
.turma-row:hover .turma-row-foto img { transform: scale(1.02); }

.turma-row-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--verde);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 100px;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.turma-row-info h3 {
    font-family: var(--font-titulo);
    font-size: 22px;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 12px;
    line-height: 1.25;
}
.turma-row-info p {
    font-size: 15px;
    color: var(--texto2);
    line-height: 1.78;
    margin-bottom: 12px;
}

.turma-beneficios {
    list-style: none;
    padding: 0;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.turma-beneficios li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--texto);
    font-weight: 500;
}
.turma-beneficios svg {
    width: 16px; height: 16px;
    fill: var(--verde);
    flex-shrink: 0;
}

/* MGB pilares mini */
.mgb-pilares-mini {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding: 16px;
    background: var(--verde-bg);
    border-radius: var(--radius);
    border-left: 3px solid var(--verde);
}
.mgb-pilar-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--texto);
}
.mgb-pilar-mini svg {
    width: 15px; height: 15px;
    fill: var(--verde);
    flex-shrink: 0;
}

/* MGB foto coluna */
.mgb-foto-col { display: flex; flex-direction: column; gap: 12px; }
.mgb-logo-destaque {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sombra);
}
.mgb-logo-destaque img {
    width: 100%;
    max-width: 180px;
    height: auto;
    mix-blend-mode: multiply;
}
.mgb-fotos-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.mgb-fotos-mini img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--sombra);
    transition: transform .4s;
}
.mgb-fotos-mini img:hover { transform: scale(1.03); }

/* Piscina grid */
.piscina-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.piscina-main-foto {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--sombra);
}
.piscina-info { display: flex; flex-direction: column; gap: 20px; }
.piscina-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.piscina-icon {
    width: 38px; height: 38px;
    background: var(--verde-bg);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.piscina-icon svg { width: 20px; height: 20px; fill: var(--verde); }
.piscina-item strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 4px;
}
.piscina-item p { font-size: 13.5px; color: var(--texto-leve); line-height: 1.6; margin: 0; }

/* Responsivo natação */
@media (max-width: 960px) {
    .turma-row { grid-template-columns: 1fr; gap: 20px; }
    .turma-row-reverse { grid-template-columns: 1fr; }
    .turma-row-reverse .turma-row-foto { order: 0; }
    .turma-row-reverse .turma-row-info { order: 0; }
    .turma-row-foto img { height: 220px; }
    .piscina-grid { grid-template-columns: 1fr; }
    .piscina-main-foto { height: 240px; }
}
@media (max-width: 600px) {
    .mgb-fotos-mini { grid-template-columns: 1fr; }
    .mgb-fotos-mini img { height: 160px; }
}

/* =============================================
   TURMAS COM FOTO — LAYOUT ALTERNADO
============================================= */
.turma-detail {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--borda);
}
.turma-detail:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.turma-detail-reverse {
    grid-template-columns: 1fr 420px;
}
.turma-detail-reverse .turma-detail-img { order: 2; }
.turma-detail-reverse .turma-detail-content { order: 1; }

.turma-detail-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--sombra);
}
.turma-detail-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.turma-detail:hover .turma-detail-img img {
    transform: scale(1.04);
}
.turma-detail-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--verde);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: .04em;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.turma-detail-content h3 {
    font-family: var(--font-titulo);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 14px;
    line-height: 1.25;
}
.turma-detail-content h3 em {
    font-style: italic;
    color: var(--verde);
}
.turma-detail-content p {
    font-size: 15px;
    color: var(--texto2);
    line-height: 1.78;
    margin-bottom: 14px;
}
.turma-detail-content .benefits-list {
    margin-top: 8px;
}

/* Responsivo turma-detail */
@media (max-width: 900px) {
    .turma-detail,
    .turma-detail-reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    .turma-detail-reverse .turma-detail-img { order: 0; }
    .turma-detail-reverse .turma-detail-content { order: 0; }
    .turma-detail-img img { height: 240px; }
}
@media (max-width: 480px) {
    .turma-detail-img img { height: 200px; }
}

/* =============================================
   FAQ GRID — perguntas frequentes
============================================= */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.faq-item {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-left: 3px solid var(--verde);
    border-radius: var(--radius);
    padding: 20px 22px;
    transition: box-shadow .2s, border-color .2s;
}
.faq-item:hover {
    box-shadow: var(--sombra);
    border-left-color: var(--verde-claro);
}
.faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 8px;
    line-height: 1.35;
}
.faq-item p {
    font-size: 14px;
    color: var(--texto-leve);
    line-height: 1.65;
    margin: 0;
}

/* Stats rápidos — hidroginástica */
.hidrog-stats {
    display: flex;
    gap: 0;
    margin-top: 24px;
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    overflow: hidden;
}
.hs-item {
    flex: 1;
    padding: 16px 18px;
    border-right: 1px solid var(--borda);
    text-align: center;
}
.hs-item:last-child { border-right: none; }
.hs-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--verde);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.hs-item span {
    font-size: 12.5px;
    color: var(--texto-leve);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
    .hidrog-stats { flex-direction: column; }
    .hs-item { border-right: none; border-bottom: 1px solid var(--borda); }
    .hs-item:last-child { border-bottom: none; }
}

/* Imagem lateral em seções de texto longo — oculta no mobile */
.pg-img-side {
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 600px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--sombra);
}
@media (max-width: 900px) {
    .pg-img-side { display: none; }
    .pg-two-col[style*="1.4fr"] { grid-template-columns: 1fr !important; }
}

/* =============================================
   SEÇÃO PISCINA — foto larga + texto + 4 cards
============================================= */
.piscina-foto-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--sombra);
}
.piscina-foto-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.piscina-foto-wrap:hover img { transform: scale(1.02); }
.piscina-foto-label {
    position: absolute;
    bottom: 14px; left: 14px;
    background: rgba(12,32,20,.72);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
}

.piscina-texto {
    max-width: 860px;
    margin: 0 auto 32px;
    text-align: center;
}
.piscina-texto p {
    font-size: 15px;
    color: var(--texto2);
    line-height: 1.78;
    margin-bottom: 12px;
}

.piscina-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .piscina-foto-wrap img { height: 260px; }
    .piscina-texto { text-align: left; }
    .piscina-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .piscina-foto-wrap img { height: 200px; }
    .piscina-cards { grid-template-columns: 1fr; }
}

/* =============================================
   FISIOTERAPIA — grid outros tratamentos
============================================= */
.fisio-outros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.fisio-outro-card {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.fisio-outro-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-hover);
    border-color: var(--verde-claro);
}
.fisio-outro-img {
    overflow: hidden;
    height: 160px;
}
.fisio-outro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.fisio-outro-card:hover .fisio-outro-img img { transform: scale(1.05); }
.fisio-outro-body {
    padding: 16px;
}
.fisio-outro-body h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 6px;
    line-height: 1.3;
}
.fisio-outro-body p {
    font-size: 13px;
    color: var(--texto-leve);
    line-height: 1.6;
    margin-bottom: 10px;
}
.fisio-outro-body .treatment-link {
    font-size: 12px;
    color: var(--verde);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .15s;
}
.fisio-outro-card:hover .treatment-link { gap: 8px; }

@media (max-width: 900px) { .fisio-outros-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .fisio-outros-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* =============================================
   RPG — grid de indicações 2 colunas
============================================= */
.rpg-indicacoes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 8px;
}
.rpg-indicacao-card {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    padding: 24px 26px;
    box-shadow: var(--sombra);
    transition: box-shadow .2s;
}
.rpg-indicacao-card:hover { box-shadow: var(--sombra-hover); }
.rpg-ic-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--borda);
}
.rpg-ic-icon {
    width: 44px; height: 44px;
    background: var(--verde-bg);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.rpg-ic-icon svg { width: 24px; height: 24px; fill: var(--verde); }
.rpg-ic-icon-alt { background: #EAF2FB; }
.rpg-ic-icon-alt svg { fill: #0B5FA5; }
.rpg-ic-header h3 {
    font-family: var(--font-titulo);
    font-size: 18px;
    font-weight: 600;
    color: var(--texto);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .rpg-indicacoes-grid { grid-template-columns: 1fr; }
}

/* =============================================
   ACUPUNTURA — grid de técnicas MTC
============================================= */
.acup-tecnicas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 8px;
}
.acup-tecnica-card {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.acup-tecnica-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-hover);
    border-color: var(--verde-claro);
}
.acup-tc-icon {
    width: 48px; height: 48px;
    background: var(--verde-bg);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.acup-tc-icon svg { width: 26px; height: 26px; fill: var(--verde); }
.acup-tecnica-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 8px;
}
.acup-tecnica-card p {
    font-size: 13.5px;
    color: var(--texto-leve);
    line-height: 1.65;
}

@media (max-width: 900px) { .acup-tecnicas-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .acup-tecnicas-grid { grid-template-columns: 1fr; } }

/* =============================================
   ACUPUNTURA — grid de técnicas e indicações
============================================= */
.acup-tecnicas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 8px;
}
.acup-tecnica-card {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.acup-tecnica-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-hover);
    border-color: var(--verde-claro);
}
.acup-icon {
    width: 52px; height: 52px;
    background: var(--verde-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.acup-icon svg { width: 26px; height: 26px; fill: var(--verde); }
.acup-icon-2 { background: #FFF3E0; }
.acup-icon-2 svg { fill: #E65100; }
.acup-icon-3 { background: #EDE7F6; }
.acup-icon-3 svg { fill: #6A1B9A; }
.acup-icon-4 { background: #E3F2FD; }
.acup-icon-4 svg { fill: #0D47A1; }
.acup-tecnica-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 8px;
}
.acup-tecnica-card p {
    font-size: 13px;
    color: var(--texto-leve);
    line-height: 1.6;
}

/* Indicações 2 colunas */
.acup-indicacoes-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .acup-tecnicas-grid { grid-template-columns: 1fr 1fr; }
    .acup-indicacoes-cols { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .acup-tecnicas-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* Acupuntura — grid 3 colunas */
.acup-tecnicas-3 { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 768px) { .acup-tecnicas-3 { grid-template-columns: 1fr !important; } }