/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #113EC7;
    --primary-dark: #0e2f9e;
    --secondary-color: #9946F8;
    --accent-color: #9946F8;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

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

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    justify-self: start;
}

.logo i {
    font-size: 2rem;
}

.nav-logo {
    width: 170px;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-self: end;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

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

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

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-menu-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

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

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.mobile-menu-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #F87C46;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Resume Preview */
.resume-preview {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.resume-preview:hover {
    transform: rotate(0deg) scale(1.02);
}

.resume-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.resume-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.resume-header p {
    color: var(--text-secondary);
    font-weight: 500;
}

.resume-section {
    margin-bottom: 1rem;
}

.resume-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.resume-section p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.features .container {
    position: relative;
    z-index: 2;
}

/* Header com Badge */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #113EC7, #9946F8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.header-badge i {
    font-size: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight-text {
    background: linear-gradient(135deg, #113EC7, #9946F8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Hero (Destaque Principal) */
.feature-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.feature-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #113EC7, #9946F8, #113EC7);
    background-size: 200% 100%;
    animation: gradient-move 3s ease-in-out infinite;
}

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.feature-hero-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-hero-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-hero-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #113EC7, #9946F8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.feature-hero-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-hero-visual {
    position: relative;
    height: 300px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: float-card 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Grid de Funcionalidades */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card-premium {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #113EC7, #9946F8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card-premium:hover::before {
    transform: scaleX(1);
}

.feature-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #113EC7, #9946F8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #113EC7, #9943F8);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card-premium:hover .feature-icon {
    transform: scale(1.1) rotate(8deg);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card-premium h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card-premium p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feature-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-benefit i {
    font-size: 1rem;
}

/* CTA das Funcionalidades */
.features-cta {
    background: linear-gradient(135deg, #113EC7, #9946F8);
    padding: 3rem;
    border-radius: 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.features-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.features-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.features-cta .btn-primary:hover {
    background: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Responsividade */
@media (max-width: 768px) {
    /* Mobile Menu */
    .nav-container {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links,
    .nav-buttons {
        display: none;
    }
    
    .feature-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .feature-hero-content h3 {
        font-size: 2rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.process-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding-left: 6rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 500px;
    position: relative;
    margin-bottom: 3rem;
    z-index: 2;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #113EC7, #9946F8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: absolute;
    left: -1.5rem;
    top: 0;
    z-index: 4;
    transform: translateX(-50%);
}

.step-icon .step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1;
}

.step:hover .step-icon {
    transform: translateX(-50%) scale(1.1);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-content {
    margin-left: 2em;
}
/* Linha conectora vertical */
.process-steps::before {
    content: '';
    position: absolute;
    top: 0rem;
    left: 4.5rem;
    width: 3px;
    height: calc(100% - 6rem);
    background: linear-gradient(to bottom, #113EC7, #9946F8);
    z-index: 1;
    border-radius: 2px;
}

/* Process Visual - Cards Flutuantes */
.process-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1.2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: float-process-card 8s ease-in-out infinite;
    min-width: 200px;
    max-width: 250px;
}

.process-card:nth-child(1) {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.process-card:nth-child(2) {
    top: 45%;
    right: 15%;
    animation-delay: 2.5s;
}

.process-card:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 5s;
}

@keyframes float-process-card {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        box-shadow: var(--shadow-lg);
    }
    25% { 
        transform: translateY(-8px) rotate(0.5deg) scale(1.01); 
        box-shadow: var(--shadow-xl);
    }
    50% { 
        transform: translateY(-12px) rotate(1deg) scale(1.02); 
        box-shadow: var(--shadow-lg);
    }
    75% { 
        transform: translateY(-8px) rotate(0.5deg) scale(1.01); 
        box-shadow: var(--shadow-xl);
    }
}

.process-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.process-card span {
    font-size: 0.9rem;
    white-space: nowrap;
    line-height: 1.2;
}

/* Responsividade para as etapas */
@media (max-width: 768px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-steps {
        gap: 2rem;
        padding-left: 3rem;
    }
    
    .step {
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .process-steps::before {
        left: 1.5rem;
    }
    
    .process-visual {
        height: 300px;
        order: -1;
    }
    
    .process-card {
        min-width: 180px;
        max-width: 200px;
        padding: 0.75rem 1.25rem;
    }
}

/* Vantagens Section */
.vantagens {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    position: relative;
}

.vantagens-divider {
    height: 6px;
    background: linear-gradient(90deg, #113EC7, #9946F8);
    border-radius: 3px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.vantagens-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.vantagem-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    flex: 1;
    min-width: 180px;
}

.vantagem-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.vantagem-item:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.vantagem-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Responsividade para Vantagens */
@media (max-width: 768px) {
    .vantagens-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .vantagem-item {
        min-width: auto;
        width: 100%;
    }
    
    .vantagem-item i {
        font-size: 2rem;
    }
    
    .vantagem-item span {
        font-size: 0.9rem;
    }
}

/* Planos Section */
.planos {
    padding: 6rem 2rem;
    background: var(--bg-primary);
    position: relative;
}

/* Plano Gratuito */
.plano-gratuito {
    background: linear-gradient(135deg, #113EC7, #9946F8);
    color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.plano-gratuito::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
}

.plano-gratuito-header {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.plano-gratuito-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
}

.plano-gratuito-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.plano-gratuito-features {
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.plano-gratuito .plano-feature {
    color: white;
    margin-bottom: 1rem;
}

.plano-gratuito .plano-feature i {
    color: rgba(255, 255, 255, 0.9);
}

.plano-gratuito .plano-feature span {
    color: white;
    font-weight: 500;
}

.plano-gratuito-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.plano-gratuito-cta .btn {
    background: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.plano-gratuito-cta .btn:hover {
    background: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.plano-gratuito-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-style: italic;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.plano-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.plano-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.plano-popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.plano-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.plano-badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #113EC7, #9946F8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.plano-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.plano-preco {
    margin-bottom: 1rem;
}

.preco-valor {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.preco-periodo {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plano-creditos {
    display: inline-block;
    background: linear-gradient(135deg, #113EC7, #9946F8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plano-features {
    margin-bottom: 2rem;
    text-align: left;
}

.plano-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.plano-feature i {
    color: var(--success-color);
    font-size: 1rem;
    min-width: 20px;
}

.plano-feature span {
    color: var(--text-primary);
    font-weight: 500;
}

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

.plano-cta .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.plano-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.planos-cta {
    text-align: center;
    background: linear-gradient(135deg, #113EC7, #9946F8);
    color: white;
    padding: 3rem;
    border-radius: 2rem;
    margin-top: 4rem;
    box-shadow: var(--shadow-xl);
}

.planos-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.planos-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.planos-cta .btn {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
}

/* Responsividade para Planos */
@media (max-width: 768px) {
    .plano-gratuito {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .plano-gratuito-header h3 {
        font-size: 1.75rem;
    }
    
    .plano-gratuito-features {
        max-width: 100%;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plano-card {
        padding: 2rem;
    }
    
    .plano-popular {
        transform: none;
    }
    
    .plano-popular:hover {
        transform: translateY(-8px);
    }
    
    .planos-cta {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .planos-cta h3 {
        font-size: 1.5rem;
    }
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta .btn-primary:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: var(--text-light);
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        grid-template-columns: 1fr auto;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .stat {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 1rem;
        backdrop-filter: blur(10px);
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .resume-preview {
        transform: none;
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .resume-header h3 {
        font-size: 1.25rem;
    }
    
    .resume-section h4 {
        font-size: 0.9rem;
    }
    
    .resume-section p {
        font-size: 0.8rem;
    }
    
    .features {
        padding: 4rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .how-it-works {
        padding: 4rem 1rem;
    }
    
    .process-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        padding-left: 3rem;
    }
    
    .step-icon {
        width: 3rem;
        height: 3rem;
        left: -1.5rem;
    }
    
    .step-icon .step-number {
        font-size: 1.25rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .process-visual {
        height: 300px;
        order: -1;
    }
    
    .process-card {
        min-width: 160px;
        max-width: 180px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .process-card i {
        font-size: 1rem;
    }
    
    .process-card span {
        font-size: 0.8rem;
    }
    
    .vantagens {
        padding: 3rem 1rem;
    }
    
    .vantagens-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .vantagem-item {
        min-width: auto;
        width: 100%;
        padding: 1.5rem;
        background: white;
        border-radius: 1rem;
        box-shadow: var(--shadow-md);
    }
    
    .vantagem-item i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .vantagem-item span {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .planos {
        padding: 4rem 1rem;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plano-card {
        padding: 2rem;
    }
    
    .plano-popular {
        transform: none;
    }
    
    .plano-popular:hover {
        transform: translateY(-8px);
    }
    
    .plano-header h3 {
        font-size: 1.3rem;
    }
    
    .preco-valor {
        font-size: 2rem;
    }
    
    .plano-creditos {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .plano-feature {
        font-size: 0.9rem;
    }
    
    .planos-cta {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .planos-cta h3 {
        font-size: 1.5rem;
    }
    
    .planos-cta p {
        font-size: 1rem;
    }
    
    .planos-cta .btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .cta {
        padding: 3rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .cta-content .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Mobile Menu */
    .mobile-menu {
        padding: 1.5rem;
    }
    
    .mobile-menu-links a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }
    
    .mobile-menu-buttons .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .features, .how-it-works, .cta {
        padding: 4rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .plano-card {
        padding: 1.5rem;
    }
    
    .process-steps {
        padding-left: 2.5rem;
    }
    
    .step-icon {
        width: 2.5rem;
        height: 2.5rem;
        left: -1.25rem;
    }
    
    .step-icon .step-number {
        font-size: 1rem;
    }
    
    .process-card {
        min-width: 140px;
        max-width: 160px;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .vantagem-item {
        padding: 1rem;
    }
    
    .vantagem-item i {
        font-size: 1.5rem;
    }
    
    .vantagem-item span {
        font-size: 0.9rem;
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

.step {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.5s;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estados de hover melhorados */
.nav-links a, .footer-section ul li a {
    position: relative;
}

.nav-links a::after, .footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .footer-section ul li a:hover::after {
    width: 100%;
}
