/* ============================================
   WS PROMOTORA - CSS PRINCIPAL
   ============================================ */

:root {
    --primary: #1a2e5a;
    --primary-dark: #0f1d3d;
    --primary-light: #2d4a7c;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --accent: #3b82f6;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
    --gradient-alt: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --shadow: 0 10px 40px rgba(26,46,90,0.15);
    --shadow-lg: 0 25px 50px rgba(26,46,90,0.2);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

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

/* ============================================
   UTILITIES
   ============================================ */

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
    font-size: 20px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer .logo-img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.logo i {
    font-size: 28px;
    color: var(--primary);
}

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}

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

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascote {
    max-width: 320px;
    width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

@media (max-width: 1024px) {
    .hero-mascote {
        max-width: 260px;
    }
}

@media (max-width: 768px) {
    .hero-mascote {
        max-width: 200px;
    }
}

.phone-mockup {
    background: var(--dark);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    background: var(--white);
    border-radius: 32px;
    width: 280px;
    padding: 24px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 600;
}

.app-balance {
    text-align: center;
    margin-bottom: 24px;
}

.app-balance span {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 4px;
}

.app-balance strong {
    font-size: 32px;
    font-weight: 800;
}

.app-actions {
    display: flex;
    justify-content: space-around;
}

.app-actions .action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 12px;
}

.app-actions .action i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 12px;
    font-size: 18px;
    color: var(--primary);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--white);
    border-radius: 10px;
}

.floating-card span {
    font-size: 13px;
    color: var(--gray);
}

.floating-card strong {
    display: block;
    font-size: 16px;
}

.card-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   PARTNERS
   ============================================ */

.partners {
    padding: 40px 0;
    border-bottom: 1px solid var(--light);
}

.partners .container {
    text-align: center;
}

.partners p {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 24px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    color: var(--gray-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   FEATURES PREVIEW
   ============================================ */

.features-preview {
    padding: 80px 0;
}

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

.section-mascote {
    max-width: 120px;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.section-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: var(--radius);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 16px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.feature-link:hover {
    gap: 10px;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--gray);
}

.page-mascote {
    max-width: 130px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.service-mascote {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

/* ============================================
   SERVICES DETAIL
   ============================================ */

.services-detail {
    padding: 60px 0;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--light);
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-block:last-child {
    border-bottom: none;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-content > p {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 24px;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--dark);
}

.service-features li i {
    color: var(--secondary);
}

.boleto-preview,
.pix-preview,
.code-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
}

.boleto-header,
.pix-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary);
}

.boleto-barcode {
    text-align: center;
    margin-bottom: 20px;
}

.barcode {
    height: 60px;
    background: repeating-linear-gradient(
        90deg,
        var(--dark) 0px,
        var(--dark) 2px,
        transparent 2px,
        transparent 4px
    );
    margin-bottom: 10px;
}

.boleto-barcode span {
    font-family: monospace;
    font-size: 12px;
    color: var(--gray);
}

.boleto-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.qr-code {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.qr-placeholder i {
    font-size: 80px;
    color: var(--dark);
}

.pix-value {
    text-align: center;
    margin-bottom: 16px;
}

.pix-value span {
    display: block;
    font-size: 13px;
    color: var(--gray);
}

.pix-value strong {
    font-size: 28px;
}

.pix-preview .btn {
    display: flex;
    width: 100%;
    justify-content: center;
}

.code-preview {
    background: var(--dark);
    color: var(--white);
    overflow-x: auto;
}

.code-preview pre {
    margin: 0;
}

.code-preview code {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.8;
}

.code-comment { color: var(--gray); }
.code-keyword { color: var(--primary-light); }
.code-string { color: var(--secondary); }
.code-number { color: #f59e0b; }

/* ============================================
   PRICING
   ============================================ */

.pricing {
    padding: 60px 0;
}

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

.pricing-card {
    background: var(--white);
    border: 2px solid var(--light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    font-size: 28px;
    color: var(--primary);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.pricing-value {
    margin-bottom: 24px;
}

.pricing-value .currency {
    font-size: 20px;
    font-weight: 600;
    vertical-align: top;
}

.pricing-value .amount {
    font-size: 48px;
    font-weight: 800;
}

.pricing-value .period {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light);
    font-size: 14px;
}

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

.pricing-features li i {
    color: var(--secondary);
}

/* ============================================
   PRICING COMPARISON
   ============================================ */

.pricing-comparison {
    padding: 60px 0;
    background: var(--light);
}

.pricing-comparison h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 8px;
}

.pricing-comparison > .container > p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
}

.comparison-table th {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
}

.comparison-table th:first-child {
    border-radius: var(--radius-lg) 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}

.comparison-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--light);
}

.comparison-table td i {
    margin-right: 10px;
    color: var(--primary);
}

.comparison-table .highlight {
    color: var(--secondary);
    font-weight: 700;
    font-size: 18px;
}

.comparison-table .savings {
    color: var(--secondary);
    font-weight: 600;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    padding: 60px 0;
}

.faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding: 24px;
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 12px;
}

.faq-item h4 i {
    color: var(--primary);
}

.faq-item p {
    color: var(--gray);
    font-size: 14px;
}

/* ============================================
   STEPS
   ============================================ */

.steps {
    padding: 60px 0;
}

.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--light);
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step-content > p {
    color: var(--gray);
    margin-bottom: 16px;
}

.step-content ul {
    list-style: none;
}

.step-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
}

.step-content ul li i {
    color: var(--secondary);
}

/* ============================================
   INTEGRATION OPTIONS
   ============================================ */

.integration-options {
    padding: 60px 0;
    background: var(--light);
}

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

.option-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}

.option-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.option-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.option-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 16px;
}

.option-tag {
    display: inline-block;
    background: var(--light);
    color: var(--gray);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
}

/* ============================================
   DEMO VIDEO
   ============================================ */

.demo-video {
    padding: 60px 0;
}

.video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 60px;
}

.video-content {
    color: var(--white);
}

.video-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.video-content p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.video-placeholder {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 16px;
}

.video-placeholder i {
    font-size: 60px;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
    padding: 60px 0;
}

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

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

.contact-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.business-hours {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
}

.business-hours h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.business-hours h4 i {
    color: var(--primary);
}

.business-hours p {
    color: var(--gray);
    font-size: 14px;
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.success-message {
    text-align: center;
    padding: 40px;
}

.success-message i {
    font-size: 60px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.success-message p {
    color: var(--gray);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

/* ============================================
   AUTH SECTION
   ============================================ */

.auth-section {
    min-height: 100vh;
    padding: 100px 0 40px;
    background: var(--light);
    display: flex;
    align-items: center;
}

/* Cadastro Específico */
.cadastro-section {
    align-items: flex-start;
    padding-top: 120px;
}

.cadastro-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cadastro-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 50px;
}

.tipo-conta-toggle {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.tipo-btn {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--light);
    background: var(--white);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tipo-btn:hover {
    border-color: var(--primary);
}

.tipo-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.input-with-btn {
    display: flex;
    gap: 8px;
}

.input-with-btn input {
    flex: 1;
}

.btn-buscar {
    width: 50px;
    height: 50px;
    border: 2px solid var(--light);
    background: var(--white);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.btn-buscar:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-buscar:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.status-busca {
    margin-top: 8px;
    font-size: 13px;
}

.status-busca .loading {
    color: var(--primary);
}

.status-busca .success {
    color: var(--secondary);
}

.status-busca .warning {
    color: #f59e0b;
}

.status-busca .error {
    color: #ef4444;
}

.status-busca i {
    margin-right: 6px;
}

.form-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--light);
}

.form-section h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section h3 i {
    color: var(--primary);
}

.form-group.small {
    flex: 0 0 120px;
}

.form-group.large {
    flex: 2;
}

@media (max-width: 768px) {
    .cadastro-card {
        padding: 30px 20px;
    }

    .tipo-conta-toggle {
        flex-direction: column;
    }

    .form-group.small,
    .form-group.large {
        flex: 1;
    }
}

.auth-wrapper {
    display: flex;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.auth-card {
    flex: 1;
    padding: 50px 40px;
}

.auth-card.wide {
    max-width: 600px;
    margin: 0 auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
    font-size: 24px;
    margin-bottom: 24px;
}

.auth-logo i {
    font-size: 32px;
    color: var(--primary);
}

.auth-header h1 {
    font-size: 28px;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--gray);
}

.input-icon {
    position: relative;
}

.input-icon i:first-child {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.input-icon input {
    padding-left: 46px;
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-wrapper input {
    width: 18px;
    height: 18px;
}

.checkbox-wrapper a {
    color: var(--primary);
}

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

.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--light);
}

.auth-divider span {
    background: var(--white);
    padding: 0 16px;
    color: var(--gray);
    font-size: 13px;
    position: relative;
}

.social-login {
    display: flex;
    gap: 16px;
}

.btn-social {
    flex: 1;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--light);
    color: var(--dark);
}

.btn-social:hover {
    border-color: var(--primary);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--light);
}

.auth-footer p {
    color: var(--gray);
    font-size: 14px;
}

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

.auth-side {
    flex: 1;
    background: var(--gradient);
    padding: 50px 40px;
    display: flex;
    align-items: center;
}

.auth-side-content {
    color: var(--white);
}

.auth-side-content h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.auth-features {
    list-style: none;
}

.auth-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
}

.auth-features li i {
    color: var(--secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 80px 0;
    background: var(--gradient);
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.cta-mascote {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

.cta-content {
    text-align: left;
    color: var(--white);
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cta-mascote {
        max-width: 150px;
    }

    .cta-content {
        text-align: center;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col > p {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    border-radius: var(--radius);
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--dark-light);
    display: flex;
    justify-content: space-between;
    color: var(--gray-light);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero .container,
    .service-block,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-block.reverse {
        direction: ltr;
    }

    .hero-image {
        order: -1;
    }

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

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

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

    .video-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .auth-side {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .floating-card {
        display: none;
    }

    .features-grid,
    .pricing-grid,
    .faq-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .steps-timeline::before {
        display: none;
    }

    .step-item {
        flex-direction: column;
    }

    .step-number {
        margin: 0 auto;
    }
}
