/* Estilos de Marketing */

/* Banner Rotativo */
.banner-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.banner-section::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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1s ease-in-out;
    display: flex;
    align-items: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: none;
    text-align: center;
    position: relative;
    z-index: 5;
}

.banner-text {
    flex: 1;
    max-width: 600px;
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-text h3 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.banner-image {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.15);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    margin-bottom: 1rem;
}

.banner-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    z-index: 10;
    padding: 0 1rem;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Depoimentos */
.testimonials {
    background: linear-gradient(135deg, #f8f9ff, white);
    padding: 5rem 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #4a5568;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.author-info strong {
    display: block;
    color: #1a202c;
    font-size: 1rem;
}

.author-info span {
    color: #718096;
    font-size: 0.9rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: var(--spacing-12);
    flex-wrap: wrap;
    padding: var(--spacing-8);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-6);
    min-width: 150px;
}

.testimonials .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea !important; /* Cor roxa para os números */
    margin-bottom: var(--spacing-2);
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.testimonials .stat-label {
    color: #4a5568 !important; /* Cor cinza escuro para os rótulos */
    font-size: 1.1rem;
    font-weight: 600;
}

/* Comparação de Recursos */
.comparison-section {
    background: white;
    padding: 5rem 0;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.feature-name {
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.plan-column {
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.plan-column.popular {
    background: rgba(255, 255, 255, 0.1);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
}

.comparison-body {
    background: white;
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s ease;
}

.feature-row:hover {
    background-color: #f8f9ff;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row .feature-name {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #2d3748;
}

.feature-row .plan-column {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.comparison-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #f8f9ff;
    padding: 1.5rem;
}

.comparison-footer .feature-name {
    padding: 0;
}

.comparison-footer .plan-column {
    padding: 0;
}

.text-success {
    color: #22c55e;
    font-size: 1.5rem;
}

.text-danger {
    color: #ef4444;
    font-size: 1.5rem;
}

.text-primary {
    color: #667eea;
    font-weight: 700;
}

.text-muted {
    color: #718096;
}

/* FAQ */
.faq-section {
    background: linear-gradient(135deg, #f8f9ff, white);
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9ff;
}

.faq-question h4 {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-12 {
    margin-top: 3rem;
}

.w-100 {
    width: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .banner-text h3 {
        font-size: 1.5rem;
    }
    
    .banner-image {
        font-size: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        gap: 2rem;
    }
    
    .comparison-header,
    .feature-row,
    .comparison-footer {
        grid-template-columns: 1fr;
    }
    
    .plan-column {
        border-bottom: 1px solid #e2e8f0;
    }
    
    .comparison-header .plan-column:first-child,
    .comparison-footer .plan-column:first-child {
        border-bottom: none;
    }
}
