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

        :root {
            /* Colors */
            --primary: #2563EB;
            --primary-dark: #1D4ED8;
            --primary-light: #DBEAFE;
            --primary-muted: #BFDBFE;
            --green-indicator: #22C55E;
            --body-bg: #FBFFFE;
            --section-alt-bg: #F9FAFB;
            --white: #FFFFFF;
            --stats-bg: #0F172A;
            --footer-bg: #111827;
            --warning-bg: #FFFBEB;
            --warning-border: #FEDE8A;
            --warning-icon: #F59E0B;
            --warning-text: #92400E;
            --error-bg: #FEF2F2;
            --error-border: #FECACA;
            --error-icon: #EF4444;
            --error-text: #991B1B;
            --code-badge-bg: #F3F4F6;
            --divider: #E5E7EB;
            --policy-bg: #FAF9F5;
            --text-primary: #111827;
            --text-secondary: #1E293B;
            --text-body: #4B5563;
            --text-muted: #9CA3AF;
            --nav-border: #D1D5DB;
            --card-border: #F3F4F6;

            /* Typography */
            --font-sans: 'Sora', ui-sans-serif, system-ui, sans-serif;
            --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 24px;
            background-color: var(--body-bg);
            color: var(--text-body);
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: var(--white);
            box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
            padding: 15.6px 0;
        }

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-body);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-buttons {
            display: flex;
            gap: 12px;
        }

        .btn-login {
            background: transparent;
            border: 1px solid var(--nav-border);
            border-radius: 8px;
            padding: 8px 16px;
            color: #374151;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-login:hover {
            background: rgba(0, 0, 0, 0.02);
        }

        .btn-signup {
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-signup:hover {
            background: var(--primary-dark);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text-body);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(to right bottom, #EFF6FF, #FFFFFF);
            padding: 88px 0;
        }

        .hero-container {
            max-width: 896px;
            margin: 0 auto;
            padding: 0 32px;
            text-align: center;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            background: var(--primary-light);
            color: var(--primary-dark);
            border-radius: 9999px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: var(--green-indicator);
            border-radius: 50%;
            margin-right: 8px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        h1 {
            font-size: 60px;
            font-weight: 700;
            line-height: 60px;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-body);
            margin-bottom: 24px;
        }

        .warning-box {
            background: var(--warning-bg);
            border: 1px solid var(--warning-border);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 32px;
            text-align: left;
        }

        .warning-box svg {
            flex-shrink: 0;
            margin-top: 2px;
        }

        .warning-box p {
            font-size: 14px;
            color: var(--text-body);
        }

        .warning-box strong {
            color: var(--warning-text);
        }

        .error-box {
            background: var(--error-bg);
            border: 1px solid var(--error-border);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 32px;
            text-align: left;
        }

        .error-box svg {
            flex-shrink: 0;
        }

        .error-box p {
            font-size: 14px;
            color: var(--error-text);
        }

        .search-form {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
        }

        .search-input-wrapper {
            flex: 1;
            position: relative;
        }

        .search-input {
            width: 100%;
            height: 50px;
            border: 2px solid var(--divider);
            border-radius: 14px;
            padding: 0 48px 0 24px;
            font-family: var(--font-mono);
            font-size: 18px;
            letter-spacing: 0.45px;
            background: var(--white);
            transition: border-color 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .search-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .btn-cta {
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 14px;
            padding: 0 32px;
            height: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
            transition: background 0.3s;
            white-space: nowrap;
        }

        .btn-cta:hover {
            background: var(--primary-dark);
        }

        .btn-cta:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .format-hint {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .format-hint .code-badge {
            display: inline-block;
            background: var(--code-badge-bg);
            padding: 2px 8px;
            border-radius: 4px;
            font-family: var(--font-mono);
            margin-left: 4px;
        }

        .result-card {
            background: var(--white);
            border-radius: 14px;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px 0px;
            overflow: hidden;
            max-width: 600px;
            margin: 32px auto 0;
            text-align: left;
            display: none;
        }

        .result-card.show {
            display: block;
        }

        .result-header {
            background: var(--primary);
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .result-header-content h3 {
            font-size: 12px;
            font-weight: 500;
            color: var(--primary-muted);
            margin-bottom: 4px;
            letter-spacing: 0.5px;
        }

        .result-header-content p {
            font-size: 18px;
            font-weight: 600;
            color: var(--white);
            font-family: var(--font-mono);
        }

        .copy-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            padding: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .copy-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .result-body {
            padding: 24px;
            border-left: 4px solid var(--primary);
        }

        .result-status {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }

        .result-status-icon {
            flex-shrink: 0;
            margin-top: 2px;
        }

        .result-status h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }

        .result-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border: 1px solid var(--green-indicator);
            color: var(--primary);
            border-radius: 9999px;
            font-size: 12px;
            font-weight: 500;
            margin-top: 4px;
        }

        .result-info {
            font-size: 14px;
            color: var(--text-body);
            line-height: 20px;
        }

        .result-info p {
            margin-bottom: 8px;
        }

        /* Steps Section */
        .steps-section {
            background: var(--section-alt-bg);
            padding: 72px 0;
        }

        .steps-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        h2 {
            font-size: 30px;
            font-weight: 700;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 48px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .step-card {
            position: relative;
            text-align: center;
        }

        .step-connector {
            height: 2px;
            background: var(--divider);
            margin-bottom: 24px;
        }

        .step-number {
            width: 64px;
            height: 64px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }

        .step-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 14px;
            line-height: 20px;
            color: var(--text-body);
        }

        /* Features Section */
        .features-section {
            background: var(--white);
            padding: 72px 0;
        }

        .features-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .features-section h2 {
            font-size: 36px;
            color: var(--text-primary);
        }

        .features-subtitle {
            font-size: 18px;
            color: var(--text-body);
            text-align: center;
            margin-bottom: 48px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .feature-card {
            background: var(--section-alt-bg);
            border: 1px solid var(--card-border);
            border-radius: 14px;
            padding: 32px;
            box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 20px;
        }

        /* Stats Section */
        .stats-section {
            background: #0F172A;
            padding: 48px 0;
        }

        .stats-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 64px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -1.2px;
            color: var(--white);
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-muted);
        }

        /* Policy Section */
        .policy-section {
            background: var(--white);
            padding: 64px 0;
        }

        .policy-container {
            max-width: 896px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .policy-section h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 24px;
        }

        .policy-block {
            margin-bottom: 24px;
        }

        .policy-block h4 {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .policy-block p {
            font-size: 14px;
            line-height: 22.75px;
            color: var(--text-body);
        }

        /* Footer */
        footer {
            background: var(--footer-bg);
            padding: 44px 0;
            color: var(--white);
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-column h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-column p,
        .footer-column a {
            font-size: 14px;
            color: var(--text-muted);
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            line-height: 20px;
        }

        .footer-column a:hover {
            color: var(--white);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: var(--text-muted);
        }

        .footer-disclaimer {
            font-size: 12px;
            margin-bottom: 16px;
            color: var(--text-muted);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            border-radius: 10px 10px 0 0;
            padding: 16px;
            box-shadow: rgba(0, 0, 0, 0.1) 0px -4px 20px 0px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            z-index: 100;
        }

        .cookie-banner.hidden {
            display: none;
        }

        .cookie-banner p {
            font-size: 14px;
            color: var(--text-body);
        }

        .cookie-banner a {
            color: var(--primary);
            text-decoration: underline;
        }

        .btn-accept-cookies {
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 10px;
            padding: 8px 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.3s;
        }

        .btn-accept-cookies:hover {
            background: var(--primary-dark);
        }

        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid var(--white);
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

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

        /* Responsive */
        @media (max-width: 1023px) {
            .steps-grid,
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links,
            .nav-buttons {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            h1 {
                font-size: 36px;
                line-height: 40px;
            }

            h2 {
                font-size: 24px;
            }

            .search-form {
                flex-direction: column;
            }

            .btn-cta {
                width: 100%;
            }

            .steps-grid,
            .features-grid,
            .stats-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero-section,
            .steps-section,
            .features-section,
            .stats-section,
            .policy-section {
                padding: 48px 0;
            }

            .hero-container,
            .steps-container,
            .features-container,
            .stats-container,
            .policy-container,
            .footer-container {
                padding: 0 16px;
            }

            .cookie-banner {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-accept-cookies {
                width: 100%;
            }
        }

/* Page Hero (Subpáginas) */
.page-hero {
    background: linear-gradient(to right bottom, #3B82F6, #1D4ED8);
    padding: 89px 0;
    text-align: center;
}

.page-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: white;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.page-hero h1 {
    font-size: 48px;
    color: white;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 12px;
}

/* About Section */
.about-section {
    padding: 69.5px 0;
}

.about-container {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.section-description {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 24px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 12px;
}

.stats-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-badge {
    text-align: center;
}

.stat-badge-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-badge-label {
    font-size: 14px;
    color: var(--text-body);
}

/* CTA Section */
.cta-section {
    background: #EFF6FF;
    padding: 69.5px 0;
    text-align: center;
}

.cta-container {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 32px;
}

.btn-cta-large {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 24px;
}

.btn-cta-large:hover {
    background: var(--primary-dark);
}

/* Mission Section */
.mission-section {
    padding: 69.5px 0;
}

.mission-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.mission-item h2 {
    text-align: left;
    margin-bottom: 16px;
}

.mission-item p {
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
}

/* History Section */
.history-section {
    background: var(--white);
    padding: 69.5px 0;
}

.history-container {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.history-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.history-stat {
    text-align: center;
}

.history-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.history-stat-label {
    font-size: 14px;
    color: var(--text-body);
}

/* Values Section */
.values-section {
    background: var(--white);
    padding: 69.5px 0;
}

.values-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--section-alt-bg);
    padding: 32px 24px;
    border-radius: 14px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
    background: var(--section-alt-bg);
    padding: 71.4px 0;
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 320px);
    gap: 32px;
    justify-content: center;
}

.pricing-card {
    background: white;
    border-radius: 14px;
    padding: 32px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px 0px;
    position: relative;
}

.pricing-card-featured {
    outline: 2px solid #3B82F6;
    padding: 48px 32px 32px;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3B82F6;
    color: white;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.plan-description {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 24px;
}

.price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-amount-featured {
    color: var(--primary);
}

.price-period {
    font-size: 16px;
    color: var(--text-body);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-body);
}

.feature-included svg {
    flex-shrink: 0;
}

.feature-excluded {
    opacity: 0.5;
}

.btn-plan-outline {
    display: block;
    width: 100%;
    padding: 12px 24px;
    border: 1px solid var(--nav-border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-body);
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-plan-outline:hover {
    background: var(--section-alt-bg);
}

.btn-plan-primary {
    display: block;
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-plan-primary:hover {
    background: var(--primary-dark);
}

.pricing-note {
    text-align: center;
    margin-top: 48px;
    font-size: 14px;
    color: var(--text-body);
}

/* FAQ Section */
.faq-section {
    background: var(--section-alt-bg);
    padding: 55.6px 0;
}

.faq-container {
    max-width: 702px;
    margin: 0 auto;
    padding: 0 32px;
}

.faq-search {
    position: relative;
    margin-bottom: 32px;
}

.faq-search svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-search input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    background: white;
    border: 1px solid var(--divider);
    border-radius: 13px;
    font-size: 16px;
    font-family: var(--font-sans);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--section-alt-bg);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
}

.faq-help-section {
    text-align: center;
    margin-top: 48px;
}

.faq-help-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.faq-help-text {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 24px;
}

/* Important Notice Section */
.important-notice-section {
    padding: 64px 0;
}

.important-notice-container {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 32px;
}

.important-notice-section h2 {
    text-align: left;
    margin-bottom: 16px;
}

.important-notice-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Contact Section */
.contact-section {
    background: var(--section-alt-bg);
    padding: 71.4px 0;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: white;
    padding: 24px;
    border-radius: 14px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.contact-card svg {
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-card a {
    display: block;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

.contact-tip {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
}

.contact-form-wrapper {
    
}

.contact-form-card {
    background: white;
    padding: 32px;
    border-radius: 14px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px 0px;
}

.contact-form-card h2 {
    text-align: left;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10.7px 16px;
    border: 1px solid var(--nav-border);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-sans);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-group-checkbox input {
    margin-top: 4px;
}

.form-group-checkbox label {
    font-size: 14px;
    color: var(--text-body);
}

.success-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    border-radius: 12px;
    color: #166534;
}

.success-message p {
    font-size: 16px;
    font-weight: 600;
}

/* Map Section */
.map-section {
    background: var(--divider);
    padding: 64px 0;
}

.map-placeholder {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 32px;
    text-align: center;
    color: var(--text-body);
}

/* Auth Pages */
.auth-main {
    background: var(--section-alt-bg);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 448px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
}

.auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.auth-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.auth-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -8px;
}

.forgot-link {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
}

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

.btn-auth {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: background 0.3s;
}

.btn-auth:hover {
    background: var(--primary-dark);
}

.btn-auth:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-body);
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-footer-simple {
    background: var(--footer-bg);
    padding: 24px 32px;
    text-align: center;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links-simple {
    display: flex;
    gap: 24px;
}

.footer-links-simple a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.footer-links-simple a:hover {
    color: white;
}

/* Responsive para páginas adicionais */
@media (max-width: 1023px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-grid {
        grid-template-columns: repeat(2, 320px);
    }

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

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }

    .values-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 32px 24px;
    }

    .auth-footer-simple {
        flex-direction: column;
        gap: 16px;
    }
}
