/* Reset e Variáveis */
:root {
    --primary-orange: #FF9500;
    --secondary-orange: #F59E0B;
    --dark-bg: #1A1A2E;
    --darker-bg: #0F0F1E;
    --card-bg: #252541;
    --dark-text: #0F172A;
    --white: #FFFFFF;
    --gray-100: #F7FAFC;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E0;
    --gray-400: #A0AEC0;
    --gray-500: #718096;
    --gray-600: #4A5568;
    --gray-700: #2D3748;
    --gray-800: #1A202C;
    --text-light: #E2E8F0;
    --text-muted: #94A3B8;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 149, 0, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Topbar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 149, 0, 0.1);
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.6);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    text-transform: none;
}

.logo-highlight {
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-orange);
    outline: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.btn-whatsapp-top {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(255, 149, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.3px;
}

.btn-whatsapp-top::before {
    content: '💬';
    font-size: 1.1rem;
}

.btn-whatsapp-top:hover,
.btn-whatsapp-top:focus {
    background: linear-gradient(135deg, #FF8C00, #E68A00);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 149, 0, 0.6);
    outline: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 149, 0, 0.1);
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 12px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 149, 0, 0.2);
    transform: scale(1.05);
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary-orange);
    transition: var(--transition);
    border-radius: 3px;
}

.menu-toggle[aria-expanded="true"] {
    background: rgba(255, 149, 0, 0.2);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background-image: linear-gradient(rgba(15, 15, 30, 0.85), rgba(26, 26, 46, 0.9)), url('fundo.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 149, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-headline .highlight {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 2rem;
}

.hero-bullets li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-bullets li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.3rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    max-width: 600px;
    margin: 1.5rem auto 0;
    padding: 1rem;
    background: rgba(255, 149, 0, 0.08);
    border-left: 3px solid rgba(255, 149, 0, 0.4);
    border-radius: 8px;
}

.hero-disclaimer strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #FF8C00, #E68A00);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.6);
    outline: none;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    outline: none;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.hero-card {
    background: rgba(37, 37, 65, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 149, 0, 0.2);
}

.eligibility-checklist h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.checklist-items {
    list-style: none;
}

.checklist-items li {
    padding: 0.85rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 149, 0, 0.08);
    font-weight: 500;
    line-height: 1.6;
}

.checklist-items li:last-child {
    border-bottom: none;
}

.checklist-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Compliance Notice */
.compliance-notice {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--primary-orange);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 149, 0, 0.2);
    border-bottom: 1px solid rgba(255, 149, 0, 0.2);
}

.compliance-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.compliance-text strong {
    color: var(--primary-orange);
}

/* Section Styles */
section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.disclaimer-box {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 149, 0, 0.08);
    border: 1px solid rgba(255, 149, 0, 0.3);
    border-radius: 12px;
    border-left: 4px solid rgba(255, 149, 0, 0.5);
}

.disclaimer-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.disclaimer-box strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* How It Works */
.how-it-works {
    background: var(--darker-bg);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(255, 149, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 149, 0, 0.2);
    border-color: var(--primary-orange);
}

.step-number {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(255, 149, 0, 0.1);
    text-align: center;
}

.advantage-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 149, 0, 0.2);
    border-color: var(--primary-orange);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-orange);
    filter: drop-shadow(0 0 10px rgba(255, 149, 0, 0.5));
}

.advantage-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.advantage-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Guarantees Section */
.guarantees-section {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.98) 0%, rgba(37, 37, 65, 0.98) 100%);
    position: relative;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantees-grid .advantage-card {
    background: rgba(37, 37, 65, 0.6);
    border: 2px solid rgba(255, 149, 0, 0.3);
    backdrop-filter: blur(10px);
}

.guarantees-grid .advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 45px rgba(255, 149, 0, 0.4);
}

/* Comparison Section */
.comparison-section {
    background: var(--darker-bg);
    padding: 3rem 0;
}

.comparison-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: rgba(30, 30, 50, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.gympass-card {
    border-color: rgba(255, 149, 0, 0.4);
}

.totalpass-card {
    border-color: rgba(124, 58, 237, 0.4);
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.gympass-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 15px 45px rgba(255, 149, 0, 0.3);
}

.totalpass-card:hover {
    border-color: #7C3AED;
    box-shadow: 0 15px 45px rgba(124, 58, 237, 0.3);
}

.comparison-header {
    margin-bottom: 2rem;
}

.comparison-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
}

.gympass-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
}

.totalpass-icon {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
}

.comparison-logo h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.comparison-quote {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.comparison-features-list {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex-grow: 1;
}

.comparison-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    line-height: 1.7;
}

.comparison-features-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.totalpass-card .feature-icon {
    color: #A855F7;
}

.comparison-payment-badge {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.gympass-badge {
    background: rgba(255, 149, 0, 0.15);
    color: var(--primary-orange);
    border: 1px solid rgba(255, 149, 0, 0.3);
}

.totalpass-badge {
    background: rgba(124, 58, 237, 0.15);
    color: #A855F7;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.comparison-payment-badge small {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.btn-comparison {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.gympass-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: #000;
}

.gympass-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.5);
}

.totalpass-btn {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    color: var(--white);
}

.totalpass-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.comparison-tip {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 149, 0, 0.08);
    border: 1px solid rgba(255, 149, 0, 0.3);
    border-radius: 16px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-tip p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.comparison-tip strong {
    color: var(--primary-orange);
}

/* Monthly Plans Section */
.monthly-plans-section {
    background: var(--dark-bg);
    padding: 3rem 0;
}

.monthly-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.monthly-platform {
    background: rgba(30, 30, 50, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 149, 0, 0.2);
}

.monthly-platform-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.monthly-platform-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.gympass-header h3 {
    color: var(--primary-orange);
}

.totalpass-header h3 {
    color: #7C3AED;
}

.monthly-platform-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.btn-monthly-search {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.gympass-search {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: #000;
}

.gympass-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
}

.totalpass-search {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    color: var(--white);
}

.totalpass-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.monthly-search-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.monthly-plans-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.monthly-plan-card {
    background: rgba(37, 37, 65, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.monthly-plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 149, 0, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.monthly-plan-card.popular {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.2);
}

.totalpass-platform .monthly-plan-card.popular,
.monthly-platform:has(.totalpass-header) .monthly-plan-card.popular {
    border-color: #7C3AED;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.monthly-plan-name {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.monthly-plan-price {
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 1.4rem;
}

.totalpass-platform .monthly-plan-price,
.monthly-platform:has(.totalpass-header) .monthly-plan-price {
    color: #7C3AED;
}

.monthly-plan-popular {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--primary-orange);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.totalpass-platform .monthly-plan-popular,
.monthly-platform:has(.totalpass-header) .monthly-plan-popular {
    background: #7C3AED;
    color: var(--white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comparison-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-tip {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .monthly-plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .monthly-plans-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .monthly-plan-card {
        padding: 1rem;
    }
    
    .monthly-plan-price {
        font-size: 1.2rem;
    }
}

/* Find Gyms Section */
.find-gyms-section {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.95) 0%, rgba(37, 37, 65, 0.95) 100%);
    padding: 5rem 0;
    position: relative;
}

.find-gyms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 149, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.find-gyms-content {
    position: relative;
    z-index: 1;
}

.find-gyms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.find-gym-card {
    background: rgba(37, 37, 65, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 2px solid rgba(255, 149, 0, 0.2);
    transition: var(--transition);
    text-align: center;
}

.find-gym-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.find-gym-header {
    margin-bottom: 1.5rem;
}

.find-gym-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gympass-gradient {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
}

.totalpass-gradient {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
}

.logo-letter {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
}

.totalpass-gradient .logo-letter {
    color: var(--white);
}

.find-gym-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.find-gym-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-find-gym {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-find-gym::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn-find-gym:hover::before {
    left: 100%;
}

.gympass-find-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: #000;
}

.gympass-find-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 149, 0, 0.6);
}

.totalpass-find-btn {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    color: var(--white);
}

.totalpass-find-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(124, 58, 237, 0.6);
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-arrow {
    font-size: 1.5rem;
    transition: var(--transition);
}

.btn-find-gym:hover .btn-arrow {
    transform: translateX(5px);
}

.find-gyms-note {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.find-gyms-note p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.find-gyms-note strong {
    color: var(--primary-orange);
}

/* Plans */
.plans {
    background: var(--darker-bg);
    padding: 3rem 0;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 149, 0, 0.15);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 2rem;
    display: flex;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(255, 149, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.plan-card {
    background: rgba(30, 30, 50, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    border: 2px solid rgba(255, 149, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.plan-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(255, 149, 0, 0.4);
    border-color: var(--primary-orange);
}

.plan-card.featured {
    border: 3px solid #FFD700;
    background: rgba(37, 37, 65, 0.98);
    box-shadow: 0 12px 45px rgba(255, 215, 0, 0.6);
    transform: scale(1.08);
    position: relative;
}

.plan-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    pointer-events: none;
    z-index: 0;
}

.plan-card.featured > * {
    position: relative;
    z-index: 1;
}

.plan-card.featured:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 15px 55px rgba(255, 215, 0, 0.8);
}

.plan-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.7);
    border: 2px solid #FFD700;
    z-index: 10;
    white-space: nowrap;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.7);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 8px 35px rgba(255, 215, 0, 0.9);
    }
}

.plan-promo-tag {
    background: rgba(255, 149, 0, 0.2);
    color: var(--primary-orange);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-orange);
}

.plan-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.plan-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 2rem;
    margin-right: 0.2rem;
}

.plan-price-value {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-promo-notice {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: center;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
}

.plan-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-weight: 500;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.plans-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
    border: 1px solid rgba(255, 149, 0, 0.2);
}

/* Access Guarantee Box */
.access-guarantee-box {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(37, 37, 65, 0.95) 100%);
    border: 2px solid rgba(255, 149, 0, 0.4);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    margin: 2rem auto;
    max-width: 900px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 149, 0, 0.1);
}

.guarantee-box-title {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(255, 149, 0, 0.2);
}

.guarantee-box-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    text-align: center;
}

.guarantee-box-text strong {
    color: var(--primary-orange);
    font-weight: 700;
}

.guarantee-box-highlight {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.15), rgba(255, 149, 0, 0.08));
    border: 2px solid rgba(255, 149, 0, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 149, 0, 0.2);
    margin-top: 0.5rem;
}

.highlight-orange {
    color: var(--primary-orange);
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 149, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 149, 0, 0.6);
    }
}

/* Monthly Info Box */
.monthly-info-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.08));
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    margin: 2rem auto 0;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15), 0 0 0 1px rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.monthly-info-title {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
    line-height: 1.3;
}

.monthly-info-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 1.75rem 0;
}

.monthly-info-text strong {
    color: #10B981;
    font-weight: 700;
}

.monthly-info-highlight {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.15), rgba(255, 149, 0, 0.08));
    border: 2px solid rgba(255, 149, 0, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 149, 0, 0.2);
    margin-top: 0.5rem;
}

.monthly-info-highlight strong {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    background: var(--dark-bg);
    padding: 3rem 0;
}

.testimonials-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Social Proof Stats */
.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0 auto 2.5rem;
    max-width: 1000px;
}

.stat-item {
    background: rgba(30, 30, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 149, 0, 0.3);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
    z-index: 10;
    isolation: isolate;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    transition: var(--transition);
}

.trust-badge:hover {
    transform: scale(1.05);
    background: rgba(16, 185, 129, 0.15);
    border-color: #10B981;
}

.trust-icon {
    font-size: 1.3rem;
}

.trust-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonials-carousel {
    position: relative;
    margin-bottom: 2rem;
    isolation: isolate;
}

.carousel-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonial-card {
    width: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(37, 37, 65, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 149, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 149, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: fit-content;
    overflow: hidden;
    box-sizing: border-box;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange), var(--primary-orange));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.testimonial-card::before {
    content: '✓ Verificado';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    z-index: 1;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    visibility: visible;
    z-index: 2;
    box-shadow: 0 16px 50px rgba(255, 149, 0, 0.3), 0 0 0 1px rgba(255, 149, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 149, 0, 0.6);
}

.testimonial-rating {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    filter: drop-shadow(0 0 12px rgba(255, 149, 0, 0.6));
    line-height: 1;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-style: italic;
    line-height: 1.9;
    position: relative;
    padding-left: 2.5rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 5rem;
    color: var(--primary-orange);
    opacity: 0.5;
    line-height: 1;
    font-family: Georgia, serif;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 149, 0, 0.4);
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 149, 0, 0.25);
    margin-top: auto;
    background: linear-gradient(90deg, transparent, rgba(255, 149, 0, 0.05), transparent);
    margin-left: -3.5rem;
    margin-right: -3.5rem;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    padding-bottom: 0.5rem;
}

.testimonial-author-info {
    flex: 1;
}

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

.testimonial-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-meta {
    text-align: right;
}

.testimonial-plan {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.testimonial-time {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.carousel-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.carousel-btn:hover::before {
    width: 300px;
    height: 300px;
}

.carousel-btn:hover,
.carousel-btn:focus {
    background: linear-gradient(135deg, #FF8C00, #E68A00);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    outline: none;
}

.carousel-btn:active {
    transform: scale(1.05) translateY(0);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 149, 0, 0.25);
    border: 2px solid rgba(255, 149, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-dot:hover {
    background: rgba(255, 149, 0, 0.5);
    transform: scale(1.2);
    border-color: rgba(255, 149, 0, 0.6);
}

.carousel-dot.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    width: 32px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 149, 0, 0.6), 0 4px 10px rgba(255, 149, 0, 0.3);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    border: 1px solid rgba(255, 149, 0, 0.1);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover,
.faq-question:focus {
    background: rgba(255, 149, 0, 0.1);
    outline: none;
}

.faq-question[aria-expanded="true"] {
    background: rgba(255, 149, 0, 0.15);
    border-bottom: 1px solid rgba(255, 149, 0, 0.2);
}

.faq-icon {
    transition: var(--transition);
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item[aria-expanded="true"] .faq-answer {
    max-height: 500px;
}

/* Contact */
/* Security Section */
.security-section {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.95) 0%, rgba(37, 37, 65, 0.95) 100%);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.security-item {
    background: rgba(30, 30, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 149, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.security-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 149, 0, 0.4);
    box-shadow: 0 8px 30px rgba(255, 149, 0, 0.2);
}

.security-item-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.security-item-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.security-item-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* About Section */
.about-section {
    background: var(--darker-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 149, 0, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 149, 0, 0.2);
}

.faq-cta h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-hours {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    color: var(--white);
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    outline: none;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.95) 0%, rgba(37, 37, 65, 0.95) 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 149, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-wrapper {
    position: relative;
    z-index: 1;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.final-cta-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.benefit-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 149, 0, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 149, 0, 0.3);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.benefit-icon {
    font-size: 1.2rem;
}

.btn-extra-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-icon {
    font-size: 1.5rem;
}

.final-cta-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

.contact {
    background: var(--darker-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 149, 0, 0.2);
}

.contact-form h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 149, 0, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: rgba(10, 10, 20, 0.95);
    color: var(--white);
    padding: 4rem 0 1rem;
    border-top: 2px solid rgba(255, 149, 0, 0.3);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-column h4.footer-title {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--primary-orange);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--primary-orange);
    padding-left: 20px;
    outline: none;
}

.footer-links a:hover::before,
.footer-links a:focus::before {
    opacity: 1;
}

.footer-contact-info {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-contact-info strong {
    color: var(--primary-orange);
    display: block;
    margin-bottom: 0.25rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 149, 0, 0.3), transparent);
    margin: 3rem 0 2rem;
}

.footer-compliance {
    background: rgba(255, 149, 0, 0.05);
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.compliance-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

.compliance-text strong {
    color: var(--primary-orange);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 149, 0, 0.1);
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 149, 0, 0.3);
}

.modal-content h2 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-orange);
    outline: none;
}

.modal-body h3 {
    color: var(--primary-orange);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.modal-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 30, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
        border-bottom: 2px solid var(--primary-orange);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        background-attachment: scroll;
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        min-height: 400px;
    }

    .testimonial-card {
        width: 100%;
        padding: 2rem 1.5rem;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .testimonial-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-meta {
        text-align: left;
    }

    .carousel-controls {
        gap: 1rem;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .promotion-box {
        padding: 1.5rem;
    }

    .promotion-box h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 2.5rem 0;
    }

    .hero {
        padding: 2rem 0;
        margin-top: 70px;
    }

    .hero-card {
        padding: 1.75rem;
    }

    .eligibility-checklist h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .checklist-items li {
        padding: 0.75rem 0;
        font-size: 0.9rem;
        padding-left: 1.75rem;
    }

    .checklist-items li::before {
        font-size: 1.1rem;
    }

    .hero-headline {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .hero-bullets li {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .plans-grid,
    .advantages-grid,
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-card,
    .advantage-card,
    .step-card {
        padding: 1.5rem;
    }

    .plan-price {
        font-size: 2.8rem;
    }
    
    .plan-name {
        font-size: 1.6rem;
    }
    
    .plan-card.featured {
        transform: scale(1.02);
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .plan-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
        top: -12px;
        letter-spacing: 0.5px;
    }
    
    .promo-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .access-guarantee-box {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }
    
    .guarantee-box-title {
        font-size: 1.3rem;
    }
    
    .guarantee-box-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .guarantee-box-highlight {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .monthly-info-box {
        padding: 2.5rem 1.5rem;
        margin: 2rem 1rem 0;
    }
    
    .monthly-info-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .monthly-info-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .monthly-info-highlight {
        font-size: 0.95rem;
        padding: 1.25rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Social Proof Mobile */
    .social-proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Testimonials Mobile */
    .carousel-container {
        min-height: 400px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
        top: 15px;
        right: 15px;
    }
    
    .testimonial-rating {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .testimonial-text {
        font-size: 1rem;
        padding-left: 1.5rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .testimonial-text::before {
        font-size: 3rem;
        top: -10px;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 1rem;
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .testimonial-meta {
        text-align: left;
    }
    
    /* Carousel Controls Mobile */
    .carousel-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
        flex-wrap: nowrap;
        width: 100%;
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .carousel-dots {
        display: flex;
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
        flex: 1;
        max-width: 200px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 24px;
    }
    
    /* Trust Badges Mobile */
    .trust-badges {
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin-top: 3rem;
    }
    
    .trust-badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .trust-icon {
        font-size: 1.1rem;
    }


    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer-content {
        padding: 0 1rem 1rem;
        font-size: 0.95rem;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .topbar-content {
        padding: 1rem 0;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
        border-radius: 8px;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    .btn-whatsapp-top {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-whatsapp-top::before {
        font-size: 1rem;
    }
}

/* Acessibilidade */
*:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 1001;
}

.skip-link:focus {
    top: 0;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Estilos adicionais para promocao */
.plan-promotion {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #E63946;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Step Badge */
.step-badge {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 149, 0, 0.15);
    border-radius: 8px;
    color: var(--primary-orange);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

/* Monthly Plans */
.monthly-plans-section {
    background: var(--dark-bg);
    padding: 3rem 0;
}

.monthly-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.monthly-plan-item {
    background: var(--card-bg);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 149, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.monthly-plan-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.monthly-plan-item.popular {
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(255, 149, 0, 0.3);
}

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

.monthly-plan-price {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.25rem;
}

.monthly-popular-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Comparison */
.comparison-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 149, 0, 0.2);
    position: relative;
}

.comparison-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.comparison-subtitle {
    color: var(--primary-orange);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.comparison-features {
    list-style: none;
    margin-bottom: 2rem;
}

.comparison-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 149, 0, 0.1);
}

.comparison-features li:last-child {
    border-bottom: none;
}

.comparison-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.comparison-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Promotion Box */
.promotion-box {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(255, 149, 0, 0.2));
    border: 2px solid var(--primary-orange);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.promotion-box h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.promotion-box p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Ajustes responsivos adicionais */
@media (max-width: 640px) {
    .plan-price {
        font-size: 2.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Final CTA Mobile */
    .final-cta {
        padding: 3rem 0;
    }
    
    /* Security Section Mobile */
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .security-item {
        padding: 2rem 1.5rem;
    }
    
    .security-item-icon {
        font-size: 2.5rem;
    }
    
    .security-item-title {
        font-size: 1.2rem;
    }
    
    .security-item-description {
        font-size: 0.95rem;
    }
    
    /* About Section Mobile */
    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* FAQ CTA Mobile */
    .faq-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    /* Hero Disclaimer Mobile */
    .hero-disclaimer {
        font-size: 0.8rem;
        padding: 0.85rem;
    }
    
    .disclaimer-box {
        padding: 1.25rem;
        margin-top: 2rem;
    }
    
    .disclaimer-box p {
        font-size: 0.85rem;
    }
    
    .final-cta-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .final-cta-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .final-cta-benefits {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .benefit-badge {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .btn-extra-large {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        width: 100%;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 149, 0, 0.2);
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-links {
        gap: 0.6rem;
    }
    
    .footer-compliance {
        padding: 1.25rem 1.5rem;
    }
    
    .compliance-text {
        font-size: 0.8rem;
    }
    
    /* Guarantees Mobile */
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Comparison Mobile */
    .comparison-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-card {
        padding: 2rem 1.5rem;
    }
    
    .platform-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .comparison-logo h3 {
        font-size: 1.3rem;
    }
    
    .comparison-quote {
        font-size: 0.9rem;
    }
    
    .comparison-features-list li {
        font-size: 0.95rem;
        padding: 0.85rem 0;
    }
    
    /* Find Gyms Mobile */
    .find-gyms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .find-gym-card {
        padding: 2.5rem 2rem;
    }
    
    .find-gym-logo {
        width: 70px;
        height: 70px;
    }
    
    .logo-letter {
        font-size: 2rem;
    }
    
    .find-gym-header h3 {
        font-size: 1.4rem;
    }
    
    .btn-find-gym {
        padding: 1.15rem 1.75rem;
        font-size: 1rem;
    }
    
    .find-gyms-note {
        padding: 1.5rem;
    }
    
    .find-gyms-note p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    /* Social Proof Tablet */
    .social-proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Trust Badges Tablet */
    .trust-badges {
        gap: 1.5rem;
    }
    
    .trust-badge {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    /* Footer Tablet */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ========================================
   CHECKOUT STYLES
   ======================================== */

/* Checkout Header */
.checkout-header .topbar-content {
    justify-content: space-between;
}

.checkout-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 70px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-orange);
}

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

.breadcrumb-current {
    color: var(--text-light);
    font-weight: 600;
}

/* Checkout Main */
.checkout-main {
    padding: 1.5rem 0;
    min-height: calc(100vh - 200px);
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 1.5rem;
    align-items: start;
}

.checkout-section {
    background: rgba(37, 37, 65, 0.4);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 149, 0, 0.2);
}

.checkout-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Benefits Box */
.checkout-benefits-box {
    background: rgba(255, 149, 0, 0.08);
    border: 2px solid rgba(255, 149, 0, 0.3);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.benefits-box-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
}

.benefits-box-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-box-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.benefits-box-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Form Styles */
.checkout-form {
    margin-top: 2rem;
}

.form-fieldset {
    border: none;
    margin: 0;
    padding: 0;
    margin-bottom: 1.5rem;
}

.form-legend {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 149, 0, 0.3);
}

.form-group {
    margin-bottom: 1rem;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: #ef4444;
}

.optional {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(30, 30, 50, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

.form-input.error {
    border-color: #ef4444;
}

.form-error {
    display: block;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    min-height: 1.2rem;
}

.form-help {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    min-height: 1.2rem;
}

.form-help.loading {
    color: var(--primary-orange);
}

.form-help.success {
    color: #10b981;
}

.form-help.warning {
    color: #f59e0b;
}

.form-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-group-small {
    max-width: 100px;
}

/* Service Selector */
.service-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-option {
    position: relative;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 30, 50, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.service-option input[type="radio"]:checked + .service-label {
    border-color: var(--primary-orange);
    background: rgba(255, 149, 0, 0.1);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.2);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    flex-shrink: 0;
}

.service-option:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    color: var(--white);
}

.service-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

/* Plans Selector */
.plans-selector {
    display: grid;
    gap: 1rem;
}

.plan-option-card {
    position: relative;
}

.plan-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-label {
    display: block;
    padding: 1.5rem;
    background: rgba(30, 30, 50, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.plan-option-card input[type="radio"]:checked + .plan-label {
    border-color: var(--primary-orange);
    background: rgba(255, 149, 0, 0.1);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.2);
}

.plan-highlighted .plan-label {
    border-color: rgba(255, 149, 0, 0.3);
}

.plan-badge-popular {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.plan-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.plan-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 1rem;
}

.plan-bullets li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.plan-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Checkbox */
.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.checkbox-label a:hover {
    text-decoration: none;
}

/* Submit Button */
.btn-checkout-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.75rem;
}

.btn-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Summary Card */
.checkout-summary-column {
    position: sticky;
    top: 100px;
    align-self: start;
}

.checkout-summary-card {
    background: rgba(37, 37, 65, 0.8);
    border: 2px solid rgba(255, 149, 0, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 149, 0, 0.3);
}

.summary-content {
    min-height: 200px;
}

.summary-placeholder {
    color: var(--text-muted);
    text-align: center;
    padding: 2rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--text-muted);
    font-weight: 600;
}

.summary-value {
    color: var(--white);
    font-weight: 700;
}

.summary-total {
    margin-top: 0.75rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 149, 0, 0.3);
    font-size: 1.1rem;
}

.summary-total .summary-value {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.summary-info {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 149, 0, 0.08);
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.summary-info p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

/* Security Box */
.checkout-security-box {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.security-box-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.security-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.security-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(30, 30, 50, 0.4);
    border-radius: 12px;
}

.security-badge-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.security-badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.security-badge-content strong {
    color: var(--white);
    font-size: 0.95rem;
}

.security-badge-content span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Testimonials */
.checkout-testimonials {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonials-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.testimonials-mini {
    display: grid;
    gap: 1rem;
}

.testimonial-mini-item {
    padding: 1rem;
    background: rgba(30, 30, 50, 0.4);
    border-left: 3px solid var(--primary-orange);
    border-radius: 8px;
}

.testimonial-mini-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.testimonial-mini-author {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Quick FAQ */
.checkout-quick-faq {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.quick-faq-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.quick-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-faq-item {
    background: rgba(30, 30, 50, 0.4);
    border-radius: 12px;
    overflow: hidden;
}

.quick-faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.quick-faq-question:hover {
    background: rgba(255, 149, 0, 0.1);
}

.quick-faq-icon {
    color: var(--primary-orange);
    font-size: 0.8rem;
    transition: var(--transition);
}

.quick-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.quick-faq-answer.open {
    max-height: 500px;
    padding: 0 1.5rem 1rem;
}

.quick-faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* PIX Payment Screen */
.pix-payment-screen {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.pix-payment-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.pix-payment-content {
    background: rgba(37, 37, 65, 0.8);
    border: 2px solid rgba(255, 149, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.pix-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pix-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pix-qr-container {
    margin: 2rem 0;
}

.pix-qr-code {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.pix-qr-fallback {
    padding: 2rem;
}

.pix-code-text {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: monospace;
    font-size: 0.85rem;
    resize: vertical;
}

.btn-copy-pix {
    width: 100%;
    margin-bottom: 2rem;
}

.pix-info {
    margin: 2rem 0;
}

.pix-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 149, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--white);
}

.timer-icon {
    font-size: 1.5rem;
}

.pix-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    color: var(--text-light);
}

.status-icon {
    font-size: 1.5rem;
}

.status-expired {
    color: #ef4444;
}

.pix-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-link:hover {
    text-decoration: underline;
}

.cancel-payment {
    margin-top: 1rem;
}

/* Success Screen */
.success-screen {
    padding: 5rem 0;
    min-height: calc(100vh - 200px);
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.success-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.success-next-steps {
    background: rgba(255, 149, 0, 0.08);
    border: 2px solid rgba(255, 149, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.next-steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.next-steps-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.next-steps-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mobile Responsive Checkout */
@media (max-width: 968px) {
    .checkout-main {
        padding: 1rem 0;
    }
    
    .checkout-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkout-summary-column {
        position: static;
        order: -1;
    }
    
    .checkout-summary-card {
        position: static;
    }
    
    .service-selector {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group-small {
        max-width: 100%;
    }
    
    .security-badges-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-section {
        padding: 1rem;
    }
    
    .checkout-title {
        font-size: 1.75rem;
    }
    
    .pix-payment-content {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 640px) {
    .checkout-badge {
        display: none;
    }
    
    .breadcrumb {
        margin-top: 60px;
        padding: 0.75rem 0;
    }
    
    .checkout-main {
        padding: 2rem 0;
    }
    
    .checkout-title {
        font-size: 1.75rem;
    }
    
    .plan-name {
        font-size: 1.1rem;
    }
    
    .plan-price {
        font-size: 1.5rem;
    }
    
    .pix-title {
        font-size: 1.75rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
}


