:root {
    /* --- COLOR PALETTE (Standardized Partiu Play! Theme) --- */
    --brand-primary: #adff52; /* Lime Green */
    --brand-hover: #2874ed;   /* Purple */
    --brand-light: #ecfdf5;   /* Light Lime/Green surface */
    --brand-surface: #ecfdf5; /* Backgrounds */
    
    --lime-green: var(--brand-primary);
    --purple-btn: var(--brand-hover);
    
    --black-accent: #111111;
    --gray-pill: #F2F4F7;
    
    /* --- REMAINING PALETTE --- */
    --teal-dark: #002B2B;     /* Deep Teal for Influence section */
    --lime-neon: var(--brand-light, #adff52);     /* Light Brand Color */
    --blue-primary: var(--brand-primary, #2563EB);  /* Primary Blue */
    --blue-soft: var(--brand-surface, #DBEAFE);     /* Soft Blue for backgrounds */
    --blue-gradient: linear-gradient(180deg, var(--brand-light, #3B82F6) 0%, var(--brand-primary, #2563EB) 100%);
    --blue-card-gradient: linear-gradient(135deg, var(--brand-light, #60A5FA) 0%, var(--brand-primary, #2563EB) 100%);
    
    /* --- NEW GENAO AI PALETTE (Now Partiu Play! Green/Purple) --- */
    --pink-primary: var(--brand-primary, #2874ed);  /* Purple */
    --pink-soft: var(--brand-surface, #F5F3FF);     /* Light Purple */
    --pink-badge-bg: var(--brand-surface, #EDE9FE); /* Light Purple Badge */
    --pink-badge-text: var(--brand-primary, #2874ed); /* Darker Purple Text */
    --pink-icon-bg: var(--brand-light, #adff52);  /* Lime Green for Icons */
    --card-shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    
    --primary: var(--brand-primary, #2F6FED);
    --white: #FFFFFF;
    --bg-body: #FFFFFF;
    --bg-surface: #F5F7FA;
    --text-main: #111111;
    --text-muted: #667085;
    --border-color: #E5E7EB;
    
    /* --- SPACING & LAYOUT --- */
    --container-width: 1400px; /* Wide container */
    --header-height: 100px;
    --radius-pill: 9999px;
    --radius-card: 48px;      /* Very rounded corners */
    --section-space: 6rem;

    /* --- SHADOWS --- */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-float: 0 20px 40px -5px rgba(0, 0, 0, 0.15);

    /* --- TYPOGRAPHY --- */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Smooth Scrolling */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; /* Offset for fixed header (100px + 10px buffer) */
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    touch-action: manipulation; /* Anti-zoom extra layer for iOS */
}

a { text-decoration: none; color: inherit; transition: 0.2s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- UTILITIES --- */
.container {
    width: 94%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.header-wrapper .container,
.footer-gymon .container,
footer .container {
    width: 94%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.text-white { color: #FFFFFF; }

.bg-brand-50 { background-color: var(--brand-surface, #ecfdf5); }
.bg-brand-100 { background-color: var(--brand-surface, #d1fae5); }
.bg-brand-500 { background-color: var(--brand-primary, #adff52); }
.bg-brand-600 { background-color: var(--brand-primary, #adff52); }
.bg-brand-700 { background-color: var(--brand-hover, #2874ed); }

.text-brand-500 { color: var(--brand-primary, #adff52); }
.text-brand-600 { color: var(--brand-primary, #adff52); }
.text-brand-700 { color: var(--brand-hover, #2874ed); }

.border-brand-500 { border-color: var(--brand-primary, #adff52); }
.border-brand-600 { border-color: var(--brand-primary, #adff52); }

.ring-brand-500 { --tw-ring-color: var(--brand-primary, #adff52); }

.focus\:ring-brand-500:focus { --tw-ring-color: var(--brand-primary, #adff52); }
.focus\:border-brand-500:focus { border-color: var(--brand-primary, #adff52); }

.court-card.is-selected {
    border-color: var(--brand-primary, #adff52);
    background: #f5f5f5; /* Light gray selection background */
}

.court-card.is-selected .selection-indicator {
    border-color: var(--brand-primary, #adff52);
}

.slot-selected {
    border-color: var(--brand-primary, #adff52) !important;
    background: #f5f5f5 !important; /* Light gray selection background */
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }

/* Remove !important from hidden to allow Tailwind override */
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }

/* ---- SAAS MODAL UTILITIES (replaces cdn.tailwindcss.com for landing) ---- */
/* Border radius */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
/* Sizing */
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-auto { width: auto; }
.max-w-5xl { max-width: 64rem; }
.max-h-\[95vh\] { max-height: 95vh; }
/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
/* Position helpers */
.inset-0 { inset: 0; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
/* Backdrop */
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
/* Flex utilities */
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-none { flex: none; }
.shrink-0 { flex-shrink: 0; }
.whitespace-nowrap { white-space: nowrap; }
/* Padding / margin helpers */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-6 { padding-top: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
/* Space-y */
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-\[10\.5px\] { font-size: 10.5px; }
.text-\[11px\] { font-size: 11px; }
.text-\[15px\] { font-size: 15px; }
.font-black { font-weight: 900; }
.font-extrabold { font-weight: 800; }
.font-medium { font-weight: 500; }
.leading-tight { line-height: 1.25; }
.tracking-wide { letter-spacing: 0.025em; }
/* Colors helpers */
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-red-700 { color: #b91c1c; }
.text-white { color: #fff; }
.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-300 { background-color: #d1d5db; }
.bg-gray-900 { background-color: #111827; }
.bg-gray-900\/80 { background-color: rgba(17,24,39,.8); }
.bg-red-50 { background-color: #fef2f2; }
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-r { border-right-width: 1px; }
.border-transparent { border-color: transparent; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-red-200 { border-color: #fecaca; }
/* Grid */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }
/* Hover/Transform */
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:text-gray-900:hover { color: #111827; }
.opacity-75 { opacity: .75; }
.cursor-not-allowed { cursor: not-allowed; }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 150ms; }
.transition-all { transition-property: all; transition-duration: 150ms; }
.transform { transform: translateZ(0); }
/* Focus */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(var(--tw-ring-color), 0.5); }
.focus\:ring-offset-2:focus { box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(var(--tw-ring-color), 0.5); }
.focus-within\:ring-2:focus-within { box-shadow: 0 0 0 2px rgba(var(--brand-primary),0.4); }
.focus-within\:border-brand-500:focus-within { border-color: var(--brand-primary); }
.placeholder-gray-400::placeholder { color: #9ca3af; }
.appearance-none { appearance: none; }
/* Responsive: md breakpoint (768px) for modal 2-col layout */
@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row !important; }
    .md\:w-1\/2 { width: 50% !important; }
    .md\:col-span-1 { grid-column: span 1 / span 1 !important; }
}
/* sm breakpoint for text/padding adjustments */
@media (min-width: 640px) {
    .sm\:text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
    .sm\:text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
    .sm\:p-4 { padding: 1rem !important; }
}
/* ---- END SAAS MODAL UTILITIES ---- */

/* Modal brand-color helpers (used by SaaS checkout) */
.bg-brand-500 { background-color: var(--brand-primary, #adff52); }
.bg-brand-600 { background-color: var(--brand-hover, #9be640); }
.hover\:bg-brand-600:hover { background-color: var(--brand-hover, #9be640); }
.focus\:ring-brand-500:focus { outline: none; box-shadow: 0 0 0 3px rgba(173,255,82,.4); }
.text-brand-600 { color: var(--brand-primary, #adff52); }
/* Line-through for coupon original price */
.line-through { text-decoration: line-through; }
/* fa-spin animation (for spinner icon when submitting) */
@keyframes fa-spin { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
.fa-spin { animation: fa-spin 1s linear infinite; }

/* --- RESPONSIVE UTILITIES (Tailwind-like) --- */
@media (min-width: 1024px) {
    .lg\:flex { display: flex !important; }
    .lg\:inline-flex { display: inline-flex !important; }
    .lg\:block { display: block !important; }
    .lg\:hidden { display: none !important; }
    .lg\:flex-none { flex: none !important; }
    
    /* Increased button size for desktop */
    .btn {
        padding: 0.85rem 2rem;
        font-size: 1.05rem;
    }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    border: none;
    white-space: nowrap;
    line-height: 1;
}
.btn:hover { transform: translateY(-1px); opacity: 0.9; }

.btn-lime {
    background: var(--lime-green);
    color: var(--black-accent);
}

.btn-purple {
    background: var(--purple-btn);
    color: white;
}

.btn-gray {
    background: var(--gray-pill);
    color: var(--text-main);
}
.btn-gray:hover { background: #E5E7EB; }

.btn-white {
    background: white;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

/* --- HEADER --- */
.header-wrapper {
    padding: 1.5rem 0;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
}

.header-pill {
    max-width: var(--container-width);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 2rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-float);
    margin: 0 auto;
    pointer-events: auto;
    /* width: 100%; removed to allow container width to take effect */
    border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 640px) {
    .header-pill {
        padding: 0.5rem 0.5rem;
    }
    .header-pill .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    .header-pill .flex.gap-3 {
        gap: 0.5rem;
    }
    .header-pill img {
        max-width: 130px !important;
        height: auto !important;
    }
}

/* Nav Pill Container */
.nav-pill-container {
    background: var(--gray-pill);
    border-radius: var(--radius-pill);
    padding: 0.35rem;
    display: inline-flex;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.6rem 1.25rem;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    transition: background 0.2s;
    white-space: nowrap;
}
.nav-link:hover {
    background: rgba(0,0,0,0.05);
}

.text-muted { color: var(--text-muted); }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1050;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(360px, 92vw);
    background: white;
    z-index: 1100;
    box-shadow: var(--shadow-float);
    border-left: 1px solid var(--border-color);
    padding: 1.25rem;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.mobile-menu-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.close-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: #F9FAFB;
    font-weight: 700;
    color: var(--text-main);
}

.mobile-link:hover {
    background: white;
}

.modality-card {
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFB 100%);
    display: flex;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
    border-radius: 24px;
}

.modality-card:hover {
    border-color: rgba(40, 116, 237, 0.35);
    box-shadow: var(--shadow-float);
}

.modality-media {
    position: relative;
    width: 120px;
    height: 92px;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 auto;
    border: 1px solid var(--border-color);
}

.modality-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modality-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(17,17,17,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-accent);
}

.modality-body {
    flex: 1 1 auto;
    min-width: 0;
}

.modality-action {
    margin-top: 0.6rem;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--black-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Link Overrides */
.footer-contact-info .contact-link {
    color: var(--black-accent) !important;
}

/* Custom Icon Style for Lessons */
.custom-icon-style {
    background-color: var(--brand-primary, #adff52) !important;
    color: white !important;
}

.custom-icon-style:hover {
    background-color: var(--brand-hover, #2874ed) !important;
}

/* Selected Payment Card Style */
.payment-option.selected-ring {
    background-color: #f3f4f6 !important; /* bg-gray-100 */
    border-color: var(--brand-primary, #adff52) !important;
    box-shadow: 0 0 0 2px var(--brand-primary, #adff52) inset; /* Simula um ring interno */
}

/* Modality and Benefit Icons Dynamic Override - Black BG / Green Icon */
.modality-icon-inline,
.benefit-icon,
.custom-icon-style {
    background: var(--black-accent) !important;
    color: var(--lime-green) !important;
}

/* --- HERO SECTION --- */
.hero-wrapper {
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 4rem;
}

.hero {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 6rem;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    min-height: 720px;
    height: auto;
    position: relative;
    align-items: center; /* Center content vertically */
}

/* Left Card */
.hero-card-left {
    background: #F9FAFB;
    border-radius: var(--radius-card);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

/* Typography */
.hero-headline {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-main);
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: var(--black-accent);
    color: var(--lime-green);
    padding: 0.1em 0.4em;
    border-radius: 12px;
    display: inline-block;
    transform: rotate(-2deg);
    margin-top: 0.2em;
    font-weight: 600;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.6;
}

.trial-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}
.dot-purple {
    width: 6px;
    height: 6px;
    background: var(--purple-btn);
    border-radius: 50%;
}

.partners-area {
    margin-top: auto;
}
.partners-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #98A2B3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.partners-logos {
    display: flex;
    gap: 2.5rem;
    opacity: 0.4;
    filter: grayscale(100%);
}

/* Right Card */
.hero-card-right {
    background: #000;
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 520px;
    width: 100%;
    margin: 0 auto;
}
.hero-card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.badge-top-left {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.badges-top-right {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.75rem;
}
.badge-black {
    background: var(--black-accent);
    color: var(--lime-green);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
}
.badge-white {
    background: white;
    color: var(--black-accent);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
}



/* --- BENEFITS SECTION --- */
.benefits-section {
    padding: var(--section-space) 0;
    background: var(--bg-surface);
}

.benefits-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* --- BADGES (Unified Black BG / Green Text) --- */
.badge-genao,
.badge-lime,
.badge-black,
.badge-white,
.badge-popular,
.badge-black-small {
    background: var(--black-accent) !important;
    color: var(--lime-green) !important;
    border: 1px solid var(--black-accent) !important; /* Optional border match */
    padding: 0.4rem 1rem !important;
    border-radius: var(--radius-pill) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: 0.05em !important;
}

.section-headline {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
    min-height: 600px;
    height: auto;
}

/* Left Large Card */
.benefit-card-large {
    background: white;
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.benefit-card-large::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.65) 40%, rgba(17, 17, 17, 0) 100%);
    pointer-events: none;
    opacity: 1;
}

.large-card-content {
    margin-top: auto;
    position: relative;
    z-index: 10;
    padding: 1.25rem 1.25rem 1.5rem;
    border-radius: 24px;
    background: rgba(17, 17, 17, 0.55);
}

.benefit-card-large .benefit-title {
    color: white;
}

.benefit-card-large .benefit-desc {
    color: rgba(255, 255, 255, 0.78);
}

body.admin-area .max-w-7xl {
    max-width: 90rem !important;
}

.badge-black-small {
    background: var(--black-accent);
    color: white; /* Changed to white text as per image */
    color: var(--lime-green); /* Actually image shows lime text usually, let's stick to lime for consistency */
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 20;
}

/* Scrolling Marquee */
.marquee-wrapper {
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    overflow: hidden; /* Ensure content doesn't spill out */
}

.marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
}

.scroll-left {
    animation: scrollLeft 30s linear infinite;
}
.scroll-right {
    animation: scrollRight 30s linear infinite;
}

.marquee-item {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}
.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Animations */
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.animate-slide-up {
    animation: slideUp 0.5s ease-out forwards;
}

/*
 * ==============================================================================================
 * ADMIN AREA GLOBALS OVERRIDES
 * To maintain consistency and reduce the size of all elements globally as requested.
 * ==============================================================================================
 */

/* Decrease global font-size by ~10-15% inside admin routes */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Decrease standard inputs, selects and buttons in admin dynamically */
input[type="text"], input[type="email"], input[type="number"], input[type="time"], input[type="date"], select, textarea {
    font-size: 0.875rem !important; /* 14px instead of 16px */
    padding-top: 0.6rem !important;
    padding-bottom: 0.6rem !important;
    min-height: 42px !important;
}

/* Decrease standard button paddings and sizes */
button, .btn, a.btn, .h-9 {
    font-size: 0.8125rem !important; /* 13px */
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
    min-height: 36px !important;
}

/* Fix "Todos", "Pendente" Filter Tabs alignment */
a.h-9, button.h-9 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

/* Shrink table headers and text to look more compact */
th {
    font-size: 0.7rem !important;
}
td {
    font-size: 0.8125rem !important;
}
h2.text-2xl, h2.text-3xl {
    font-size: 1.5rem !important;
}
p.text-sm {
    font-size: 0.75rem !important;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Right Grid (2x2) */
.benefits-grid-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
}

.benefit-card-small {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s;
}
.benefit-card-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--black-accent);
    color: var(--lime-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.benefit-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- PRICING SECTION --- */
.pricing-section {
    padding: var(--section-space) 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    border-radius: 32px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card.starter {
    background: #F2F4F7;
    color: var(--text-main);
}

.pricing-card.pro {
    background: var(--lime-green);
    color: var(--black-accent);
}

.pricing-card.elite {
    background: var(--black-accent);
    color: white;
}

/* Elite Grid Pattern Overlay */
.pricing-card.elite::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(circle at top right, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at top right, black 0%, transparent 70%);
    pointer-events: none;
}

/* Card Components */
.pricing-icon {
    width: 48px;
    height: 48px;
    background: var(--black-accent);
    color: var(--lime-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.pricing-card.elite .pricing-icon {
    background: white;
    color: var(--black-accent);
}
.pricing-card.pro .pricing-icon {
    background: var(--black-accent); /* Keep black on lime */
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.plan-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.8;
    min-height: 60px; /* Align prices */
}
.plan-note {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: -1.25rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.price-tag {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.pricing-features li i {
    font-size: 0.8rem;
}

/* Checkmark Colors */
.pricing-card.starter .pricing-features li i { color: var(--text-main); }
.pricing-card.pro .pricing-features li i { color: var(--black-accent); }
.pricing-card.elite .pricing-features li i { color: white; }

/* Buttons */
.btn-pricing {
    margin-top: auto;
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-pricing:hover { opacity: 0.9; }

.btn-pricing.black {
    background: var(--black-accent);
    color: white;
}

.btn-pricing.white {
    background: white;
    color: var(--black-accent);
}

.btn-pricing.purple {
    background: var(--purple-btn);
    color: white;
}

/* Badges */
.badge-popular {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: var(--black-accent);
    color: var(--lime-green);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

/* --- CYCLING CTA SECTION --- */
.cycling-section {
    padding: var(--section-space) 0;
    background: transparent;
}

.cycling-card {
    background: url('https://images.unsplash.com/photo-1517649763962-0c623066013b?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 4rem;
}

/* Gradient Overlay */
.cycling-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.cycling-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    color: white;
}

.modality-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.modality-action-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: var(--black-accent);
    font-size: 0.95rem;
    transition: color 0.2s;
}
.modality-action-btn i {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    transition: transform 0.2s;
}
.modality-card-vertical:hover .modality-action-btn {
    color: var(--brand-primary, #22c55e);
}
.modality-card-vertical:hover .modality-action-btn i {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .modality-content {
        padding: 0.75rem !important;
    }
    .modality-icon-inline {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
        border-radius: 8px !important;
    }
    .modality-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.25rem !important;
    }
    .modality-desc {
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }
    .modality-action-btn {
        font-size: 0.85rem !important;
    }
    .benefit-card-small {
        padding: 1rem !important;
    }
    .benefit-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }
    .benefit-title {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
    }
    .benefit-desc {
        font-size: 0.8rem !important;
    }
}

.cycling-headline {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.cycling-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.btn-yellow {
    background: #FFF500; /* Bright Yellow */
    color: var(--black-accent);
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    transition: transform 0.2s;
}
.btn-yellow:hover {
    transform: translateX(5px);
}

/* --- STATS SECTION (Dark) --- */
.stats-section {
    background: var(--black-accent);
    color: white;
    padding: var(--section-space) 0;
    border-radius: var(--radius-card);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

#about {
    padding: var(--section-space) 0;
}

.stats-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-left {
    padding-left: 4rem;
}

.stats-headline {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.stats-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #98A2B3;
    margin-bottom: 3rem;
    max-width: 450px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 500;
}
.feature-item-check i {
    background: white;
    color: var(--black-accent);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex: 0 0 20px;
    margin-top: 2px;
}
.feature-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.feature-item-title {
    font-weight: 700;
    line-height: 1.1;
}
.feature-item-desc {
    color: #98A2B3;
    font-size: 0.9rem;
    line-height: 1.35;
}

.stats-image {
    width: 100%;
    border-radius: 24px;
    min-height: 400px;
    height: auto;
    object-fit: cover;
}

/* Bottom Numbers Row */
.stats-numbers-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 6rem;
    padding: 0 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 4rem;
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.stat-plus { color: var(--lime-green); }

.stat-label {
    color: #98A2B3;
    font-size: 0.9rem;
}

/* --- REVIEWS SECTION --- */
.reviews-section {
    padding: var(--section-space) 0;
    background: white;
    text-align: center;
    overflow: hidden; 
}

.reviews-header {
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.reviews-marquee {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollLeftReviews 60s linear infinite;
}

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

.review-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    width: 400px;
    text-align: left;
    flex-shrink: 0;
}

.stars {
    color: #FDB022; /* Gold stars */
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    height: 80px; /* Fixed height for uniformity */
    overflow: hidden;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--black-accent);
    color: var(--lime-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}
.reviewer-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- COMPANIES DIRECTORY CSS --- */
.section-companies {
    padding: 3rem 0;
    background: white;
}

.companies-header {
    margin-bottom: 4rem;
}

/* Filter Bar */
.companies-filter-bar {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin-bottom: 4rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.filter-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-select {
    border: none;
    font-size: 0.95rem;
    color: var(--text-muted);
    outline: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
}

.filter-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.btn-search {
    background: var(--black-accent);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s;
}
.btn-search:hover { background: #333; }

/* Grid */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
    gap: 1.5rem;
    margin-top:40px
}

/* Responsive adjustment for 4 cols */
@media (max-width: 1200px) {
    .companies-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .companies-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .companies-grid { grid-template-columns: 1fr; }
}

/* Modalities & Benefits Grid */
.modalities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row on desktop */
    gap: 1.5rem;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .modalities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .modalities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    /* The user wants 2 cards per row on mobile, less spacing */
    .modalities-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 0.75rem; 
        margin-top: 20px;
    }
}

/* Glass effect for Company Cards */
.company-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.company-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.company-card:hover .company-img {
    transform: scale(1.05);
}

.company-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 100%);
    color: white;
    z-index: 10;
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.3s ease, background 0.3s ease;
}

.company-card:hover .company-overlay {
    backdrop-filter: blur(8px); /* Glass effect on hover */
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.company-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.company-price {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Featured Card (B Nayar style) */
.company-content-center {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 20;
    color: white;
}
.company-name-large {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.company-price-large {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}
.company-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 90%;
}
.btn-company-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-company-outline:hover {
    background: white;
    color: var(--black-accent);
}
.company-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.9) 0%, rgba(37, 99, 235, 0.4) 50%, rgba(0,0,0,0) 100%); /* Blue gradient like reference */
    z-index: 5;
}


/* --- GENAO AI CSS (Pink Bento) --- */
.section-genao {
    padding: var(--section-space) 0;
    background: #F2F4F7; /* Light Gray */
}

.genao-header {
    text-align: center;
    margin-bottom: 4rem;
}

.badge-genao {
    background: white;
    color: var(--pink-primary);
    border: 1px solid var(--pink-badge-bg);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.genao-headline {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}
.genao-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.genao-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.genao-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.genao-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
    height: auto;
}
.genao-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-soft);
}

.genao-card.tall {
    justify-content: flex-start;
    height: 100%;
}

.genao-icon {
    width: 48px;
    height: 48px;
    background: var(--black-accent); /* Black Background */
    color: var(--lime-green);       /* Green Icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.genao-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.genao-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.genao-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto; /* Push to bottom if needed */
}

.genao-pills span {
    background: #F9FAFB;
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Center Image Styles */
.genao-image-container {
    width: 100%;
    margin-top: 2rem;
    position: relative;
}

.genao-img-bg {
    background: linear-gradient(135deg, #D4F24E 0%, #8B5CF6 100%);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: visible; /* Allow floating elements */
    text-align: center;
}
.genao-img-bg img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 80%;
    margin: 0 auto;
    display: block;
}

/* Mockup UI */
.mockup-badge {
    position: absolute;
    background: var(--pink-primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}
.mockup-badge.left {
    top: 40%;
    left: 10%;
    transform: rotate(-10deg);
}
.mockup-badge.right {
    top: 60%;
    right: 10%;
    transform: rotate(10deg);
}

.mockup-input {
    background: white;
    border-radius: var(--radius-pill);
    padding: 0.8rem 1.5rem;
    margin-top: -1.5rem; /* Overlap image bottom */
    position: relative;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-float);
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 90%;
    justify-content: space-between;
}

.mockup-cta {
    background: var(--lime-green);
    border-radius: var(--radius-pill);
    padding: 0.9rem 1.6rem;
    margin-top: -1.5rem;
    position: relative;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: var(--shadow-float);
    color: var(--black-accent);
    font-size: 0.95rem;
    font-weight: 800;
    width: 70%;
}

/* Responsive */
@media (max-width: 1024px) {
    .companies-grid {
        grid-template-columns: 1fr 1fr;
    }
    .genao-grid {
        grid-template-columns: 1fr;
    }
    .genao-col {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .companies-filter-bar {
        flex-direction: row;
        align-items: center;
        border-radius: 24px;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    .filter-group {
        width: 50%;
    }
    .filter-divider {
        display: block;
        height: 30px;
    }
    .btn-search {
        width: 100%;
        border-radius: 12px;
        margin-top: 1rem;
    }
    .companies-grid {
        grid-template-columns: 1fr;
    }
}

/* --- NEW SPLIT GYMON FOOTER --- */
.footer-gymon {
    background-color: var(--black-accent);
    color: white;
    padding: 3rem 0 1rem 0;
    font-size: 0.95rem;
}

.footer-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #98A2B3;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

@media (max-width: 991px) {
    .footer-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
        gap: 3rem;
    }

    .footer-logo-area {
        align-items: center;
    }

    .footer-menu-area {
        align-items: center;
    }

    .footer-bottom-left {
        align-items: center;
    }

    .footer-right {
        align-items: center;
        width: 100%;
    }
    
    .footer-hours-card {
        margin: 0 auto;
    }

    .footer-cta-right {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    
    .footer-cta-text {
        text-align: center;
    }
}

.footer-logo {
    height: 40px;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: white;
}

.footer-logo-area {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-sub-logo {
    color: #98A2B3;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-cta-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: flex-end;
}

.contact-link {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-top: 0.2rem;
}
.contact-link:hover {
    color: var(--lime-green);
    text-decoration: underline;
}

.footer-cta-text {
    max-width: 400px;
    text-align: right;
    line-height: 1.6;
    color: #98A2B3;
    font-size: 1rem;
}

.footer-menu-area {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-links-list.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
    row-gap: 0.8rem;
}

.footer-links-list a {
    color: #98A2B3;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links-list a:hover,
.footer-links-list a.active {
    color: var(--lime-green);
}

.footer-contact-info p {
    color: #98A2B3;
    margin-bottom: 0.2rem;
    line-height: 1.5;
}
.footer-contact-info a {
    color: white;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.footer-socials a:hover {
    background: var(--lime-green);
    color: var(--black-accent);
}

/* Opening Hours Card */
.footer-hours-card {
    background: #F2F4F7;
    color: var(--black-accent);
    padding: 2rem;
    border-radius: 24px;
}
.footer-contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}
.footer-hours-card .contact-link {
    color: var(--black-accent);
}
.footer-hours-card .contact-link:hover {
    color: var(--black-accent);
    text-decoration: underline;
}
.footer-contact-card .btn-location {
    align-self: flex-end;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

@media (min-width: 1400px) {
    /* If more than 4 items, split into 2 columns */
    .hours-grid:has(> .hours-row:nth-child(5)) {
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
    }
}

.hours-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px dashed #E4E7EC;
    padding-bottom: 0.2rem;
}
.hours-row:last-child { border-bottom: none; }

.day-label { font-weight: 600; color: var(--text-main); }
.time-label { font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }

.btn-location {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--black-accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    margin-top: 1.5rem;
    gap: 0.5rem;
    font-size: 0.9rem;
}
.btn-location:hover {
    background: #333;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #667085;
}

.privacy-link {
    color: #98A2B3;
}
.privacy-link:hover { color: white; }

.copyright a {
    color: white;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .hero-headline { font-size: 3.5rem; }
    .hero-grid { height: auto; grid-template-columns: 1fr; }
    .hero-card-left { padding: 3rem; height: auto; min-height: 600px; }
    .hero-card-right { height: 600px; }

}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .benefit-card-large {
        height: 500px;
    }
    .benefits-grid-right {
        grid-template-columns: 1fr 1fr; /* Keep 2 cols on tablet */
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .stats-grid-layout { grid-template-columns: 1fr; }
    .stats-left { padding: 2rem; }
    .stats-numbers-row { grid-template-columns: 1fr 1fr; padding: 2rem; }
    .cycling-headline { font-size: 3rem; }
    
    /* Footer Responsive */
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-top {
        flex-direction: column;
        gap: 2rem;
        text-align: left;
    }
    .footer-cta-text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-pill-container { display: none; }
    .hero-headline { font-size: 2.5rem; }
    .hero-card-left { padding: 1rem; }
    .partners-logos { flex-wrap: wrap; gap: 1rem; }
    .badges-top-right { flex-direction: column; align-items: flex-end; right: 1rem; top: 1rem; }
    
    /* Previne zoom automático do iOS ao clicar em inputs (exige mínimo 16px) */
    input, textarea, select {
        font-size: 16px !important;
    }
}

@media (max-width: 640px) {
    .benefits-grid-right {
        grid-template-columns: 1fr; /* 1 col on mobile */
    }
    .hero-headline { font-size: 1.8rem !important; line-height: 1.2; word-wrap: break-word; }
    .highlight-box { padding: 0.1em 0.25em; border-radius: 8px; font-size: 1.8rem !important; max-width: 100%; word-break: break-word; display: inline; line-height: 1.3; }
    .section-headline { font-size: 1.75rem !important; line-height: 1.2; }
    .genao-headline { font-size: 1.75rem !important; line-height: 1.2; }
    .cycling-headline { font-size: 1.75rem !important; line-height: 1.2; }
    .price-tag { font-size: 2.2rem !important; margin-bottom: 1rem; }
    .pricing-card { padding: 1.5rem; }
    .plan-desc { margin-bottom: 1rem; min-height: auto; }
    
    /* Corrige o espaço enorme no topo da página de marcação e margens extras */
    .hero-wrapper { padding-top: calc(var(--header-height) + 1rem) !important; padding-bottom: 2rem !important; }
    .hero { padding-top: calc(var(--header-height) + 1rem) !important; padding-bottom: 2rem !important; }
    .hero-card-left { 
        padding: 1.25rem !important; 
        min-height: auto !important; 
        max-width: 100vw !important;
        align-items: center;
        text-align: center;
    }
    .hero-sub { margin-top: 1rem !important; margin-bottom: 1.5rem !important; font-size: 0.95rem !important; }
    .highlight-box { padding: 0.1em 0.3em; transform: none; display: inline-block; white-space: normal; word-break: break-word; }
    
    .badges-top-right { right: 0.75rem; top: 0.75rem; }
    .badge-top-left { top: 0.75rem; left: 0.75rem; }
    .badge-black, .badge-white { padding: 0.25rem 0.5rem; font-size: 0.7rem !important; border-radius: 4px !important; }
    
    /* Previne overflow horizontal */
    .container { padding-left: 0.5rem; padding-right: 0.5rem; width: 100%; max-width: 100vw; overflow-x: hidden; }
    
    /* Reduzir hero header nav mobile gap */
    .hero-nav { padding: 0.5rem; }
    
    /* Footer Responsive Mobile */
    .footer-main-grid {
        grid-template-columns: 1fr;
    }
    .footer-col-wide {
        grid-column: auto; /* Reset span on mobile */
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- MODALITY CARD VERTICAL (Reverted Layout) --- */
.modality-card-vertical {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.modality-card-vertical:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-float);
    border-color: var(--brand-primary, #22c55e);
}
@media (max-width: 640px) {
    .modality-title {
        font-size: 0.95rem !important;
        margin-bottom: 0.15rem !important;
        line-height: 1.2 !important;
    }
    .modality-desc {
        font-size: 0.75rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }
}
.modality-img-wrapper {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.modality-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modality-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.modality-icon-inline {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--black-accent) !important;
    color: var(--lime-green) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.modality-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}
.modality-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.modality-action-btn {
    margin-top: auto;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

