/* Estilos para a área do vendedor */

.vendedor-hero-section {
    background: linear-gradient(135deg, #2a2a72 0%, #009ffd 74%);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vantagem-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.vantagem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.vantagem-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
    transition: all 0.6s ease;
}

.vantagem-card:hover::before {
    top: 100%;
    left: 100%;
}

.comissao-section {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.numero-destaque {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #2a2a72, #009ffd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.floating-icon {
    position: absolute;
    background: white;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.icon-1 { top: 20%; right: 10%; animation-delay: 0s; }
.icon-2 { top: 40%; right: 20%; animation-delay: 1s; }
.icon-3 { top: 60%; right: 15%; animation-delay: 2s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.testimonial-section {
    background: white;
    padding: 80px 0;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 20px;
    position: relative;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    align-self: center;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-icon {
    font-size: 2.5rem;
    color: #009ffd;
    margin-bottom: 20px;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2a2a72;
}

.beneficios-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.beneficio-icon {
    font-size: 2rem;
    color: #009ffd;
    margin-right: 20px;
    margin-top: 5px;
}

.hero-badge {
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 8px 20px;
    color: white;
    display: inline-flex;
    align-items: center;
    margin: 5px;
    backdrop-filter: blur(5px);
}

.hero-badge i {
    margin-right: 8px;
}

.calculator-section {
    background: white;
    padding: 60px 0;
}

.calculator-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 768px) {
    .hero-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .beneficio-item {
        text-align: left;
    }
    
    .stats-card {
        margin-bottom: 20px;
    }
}

.steps-container {
    margin-top: 50px;
}

.step-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2a2a72, #009ffd);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-line {
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -30px;
    width: 2px;
    background: #e9ecef;
    z-index: 0;
}

.step-item:last-child .step-line {
    display: none;
} 