/* Botão para cards de outras soluções */
.solution-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    background: var(--tiketo-orange);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, box-shadow 0.2s;
}
.solution-btn:hover, .solution-btn:focus {
    background: var(--tiketo-orange-dark);
    box-shadow: var(--shadow-md);
    outline: none;
}
/* ===================================
   TIKETO LANDING PAGE - CSS STYLES
   Estilos copiados da versão React
   Mobile-First, Performance Optimized
   =================================== */

/* CSS Variables - Design System TIKETO (igual ao React) */
:root {
    /* Brand Colors - EXATAMENTE como React */
    --tiketo-orange: #FF6B00;
    --tiketo-orange-light: #FF8A33;
    --tiketo-orange-dark: #E55D00;
    
    /* Section Backgrounds */
    --bg-white: #FFFFFF;
    --bg-blue-light: #F3F7FF;
    --bg-pink-light: #FFF3F7;
    --bg-orange-light: #FFF6ED;
    --bg-purple-light: #ede9fe;
    
    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #6B7280;
    
    /* Other Colors */
    --color-purple: #8b5cf6;
    --color-cyan: #06b6d4;
    --color-green: #22c55e;
    --color-gray-900: #111827;
    --color-gray-200: #e5e7eb;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    
    /* Typography - MANROPE como React */
    --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Border Radius - como React */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

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

/* Custom Scrollbar - como React */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--tiketo-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tiketo-orange-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container - como React */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ===================================
   HEADER - como React
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: var(--bg-white);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 24px;
}

@media (min-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* ===================================
   BUTTONS - como React
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--tiketo-orange);
    color: white;
    padding: 14px 28px;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--tiketo-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-white:hover {
    background-color: #f9fafb;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.header-cta {
    font-size: 14px;
    padding: 10px 24px;
}

/* ===================================
   SECTIONS - como React
   =================================== */
.section {
    padding: 48px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 100px 0;
    }
}

.section-white { background-color: var(--bg-white); }
.section-blue { background-color: var(--bg-blue-light); }
.section-peach { background-color: var(--bg-orange-light); }
.section-purple { background-color: var(--bg-purple-light); }

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

.section-header-left {
    margin-bottom: 32px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-header-left .section-title {
    justify-content: flex-start;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 36px;
    }
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 18px;
    }
}

.section-header-left .section-subtitle {
    margin: 0;
}

/* ===================================
   HERO SECTION - como React
   =================================== */
.hero-section {
    padding-top: 100px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .hero-grid {
        flex-direction: row;
        align-items: center;
    }
}

.hero-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

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

.hero-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
}

.text-dark { color: var(--text-primary); }
.text-orange { color: var(--tiketo-orange); }

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }
}

.social-proof {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .social-proof {
        justify-content: flex-start;
    }
}

.hero-image-wrapper {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        justify-content: flex-end;
    }
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

/* ===================================
   FEATURES SECTION - como React
   =================================== */
.features-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 1024px) {
    .features-grid {
        flex-direction: row;
    }
}

.features-content {
    flex: 1;
}

.features-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .features-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bg-orange-light { background-color: var(--bg-orange-light); }
.bg-purple-light { background-color: #ede9fe; }
.bg-purple-extra-light { background-color: #f5f3ff; }
.bg-cyan-light { background-color: #ecfeff; }
.bg-green-light { background-color: #dcfce7; }

.text-purple { color: var(--color-purple); }
.text-cyan { color: var(--color-cyan); }
.text-green { color: var(--color-green); }

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-image-wrapper {
    flex: 1;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .features-image-wrapper {
        max-width: 500px;
    }
}

.features-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===================================
   CONTROL SECTION - como React
   =================================== */
.control-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 1024px) {
    .control-grid {
        flex-direction: row;
        align-items: center;
    }
}

.control-content {
    flex: 1;
}

.control-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.control-card {
    background-color: #f5f3ff;
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.control-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.control-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-purple);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 18px;
}

.control-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.control-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.control-image-wrapper {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

@media (min-width: 1024px) {
    .control-image-wrapper {
        justify-content: center;
    }
}

.control-image {
    width: auto;
    max-width: 100%;
    height: 500px;
    object-fit: contain;
}

/* ===================================
   CONTEXTS SECTION - como React
   =================================== */
.contexts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

@media (min-width: 640px) {
    .contexts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .contexts-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.context-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.context-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.context-image-wrapper {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.context-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.context-info {
    padding: 16px;
    text-align: center;
}

.context-emoji {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.context-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Operators */
.operators-section {
    text-align: center;
}

.operators-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
}

.operators-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .operators-title {
        font-size: 20px;
    }
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: center;
}

@media (min-width: 640px) {
    .operators-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .operators-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
}

.operator-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 130px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.operator-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.operator-logo {
    width: 70%;
    max-width: 70%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.operator-logo-large {
    width: 70%;
    max-width: 70%;
    max-height: 100%;
    height: auto;
}

.operator-logo-pagbank {
    width: 70%;
    max-width: 70%;
    max-height: 100%;
    height: auto;
    transform: none;
}

.operator-card:hover .operator-logo {
    opacity: 1;
}

/* ===================================
   SOCIAL PROOF / METRICS - como React
   =================================== */
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.metric-card {
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
}

.metric-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--tiketo-orange);
    line-height: 1;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .metric-value {
        font-size: 2.25rem;
    }
}

.metric-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Clients */
.clients-section {
    text-align: center;
}

.clients-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
}

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

@media (min-width: 640px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.client-card {
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.client-emoji {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.client-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ===================================
   PRICING SECTION - como React
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-featured {
    background-color: var(--tiketo-orange);
    color: white;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-gray-900);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pricing-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-featured .pricing-title {
    color: white;
}

.pricing-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--tiketo-orange);
    margin-bottom: 8px;
}

.pricing-featured .pricing-price {
    color: white;
}

.pricing-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-featured .pricing-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card .btn {
    margin-top: auto;
    padding: 10px 16px;
    font-size: 14px;
    width: 100%;
}

/* ===================================
   FAQ SECTION - fundo branco, cards com fundo cinza claro
   =================================== */
.faq-container {
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #F8FAFC;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--tiketo-orange);
}

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

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    color: var(--tiketo-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 14px;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   SOLUTIONS SECTION - fundo azul, cards brancos
   =================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 768px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solution-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.solution-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--tiketo-orange);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-full);
}

.solution-icon {
    font-size: 48px;
    color: var(--tiketo-orange);
    margin-bottom: 16px;
}

.solution-icon-svg {
    margin-bottom: 16px;
}

.solution-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.solution-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===================================
   CONTACT FORM - fundo branco, formulário com borda sutil
   =================================== */
.form-container {
    max-width: 672px;
    margin: 0 auto;
}

.contact-form {
    background: #F8FAFC;
    border-radius: var(--radius-xl);
    padding: 24px;
    border: 1px solid #E2E8F0;
}

@media (min-width: 768px) {
    .contact-form {
        padding: 40px;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--tiketo-orange);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

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

.form-error {
    font-size: 14px;
    color: #DC2626;
    margin-top: 4px;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-error-general {
    text-align: center;
    margin-top: 16px;
}

/* Captcha - como React */
.captcha-container {
    background: #F9FAFB;
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.captcha-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

.captcha-input {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    font-family: inherit;
}

.captcha-input:focus {
    outline: none;
    border-color: var(--tiketo-orange);
}

/* Checkbox - como React */
.checkbox-container {
    margin-top: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--tiketo-orange);
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.submit-btn {
    margin-top: 32px;
    padding: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Message - como React */
.success-message {
    background: #ECFDF5;
    border: 1px solid #10B981;
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
}

.success-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.success-title {
    font-size: 20px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 8px;
}

.success-text {
    font-size: 14px;
    color: #047857;
}

/* ===================================
   FOOTER - como React
   =================================== */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-logo {
    height: 56px;
}

.footer-desc {
    font-size: 14px;
    color: #9CA3AF;
    max-width: 400px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 12px;
    color: #6B7280;
    margin-top: 16px;
}

/* ===================================
   STICKY CTA - REMOVIDO
   =================================== */
.sticky-cta {
    display: none;
}

/* Remove bottom padding */
body {
    padding-bottom: 0;
}

/* ===================================
   UTILITIES
   =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
