/* Parceiros Styles */
.parceiros-hero {
    min-height: 100vh;
    background: var(--bg-dark);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.parceiros-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(132, 204, 22, 0.2);
    border-radius: 16px;
    padding: 2rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(132, 204, 22, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    font-family: var(--font-display);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(132, 204, 22, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(132, 204, 22, 0.3);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    border-color: var(--primary-green);
    background: rgba(132, 204, 22, 0.1);
    transform: translateY(-3px);
}

/* Como Funciona */
.como-funciona {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
}

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

.step-item {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(132, 204, 22, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(132, 204, 22, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.step-item h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Vantagens */
.vantagens {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
}

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

.vantagem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(132, 204, 22, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.vantagem-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(132, 204, 22, 0.2);
}

.vantagem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.vantagem-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vantagem-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(132, 204, 22, 0.4);
}

.btn-cta-secondary {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border: 2px solid #25d366;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: #25d366;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Cadastro Parceiro Form Styles */
.form-section {
    padding: 120px 0 80px;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.register-form {
    background: #1a1a1a;
    border: 1px solid rgba(132, 204, 22, 0.2);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 600px;
}

.register-form h1 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #84cc16;
}

.register-form p {
    text-align: center;
    margin-bottom: 2rem;
    color: #a0a0a0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 500;
    padding-left: 1rem;
}

.form-group input {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #84cc16;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.4);
}

.form-group .btn {
    width: 100%;
    background: #84cc16;
    color: #0a0a0a;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-group .btn:hover {
    background: #a3e635;
    transform: scale(1.02);
}

.form-group .cancelar {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    background: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-group .cancelar:hover {
    background: #dc3545;
    color: #fff;
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding-left: 1rem;
}

/* Step-form specific styles */
.step-card {
    display: none;
}

.step-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-number-badge {
    display: inline-block;
    background: #84cc16;
    color: #0a0a0a;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.form-buttons .btn,
.form-buttons .btn-secondary {
    flex: 1;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #84cc16;
    color: #84cc16;
}

.btn-secondary:hover {
    background: #84cc16;
    color: #0a0a0a;
}

@media (max-width: 768px) {
    .register-form {
        padding: 2rem 1.5rem;
    }
}