/* Estilos para Otimizações de Conversão */

/* TikTok Badge no Header */
.tiktok-badge {
    text-align: center;
    margin: 15px 0;
}

.tiktok-info {
    background: linear-gradient(135deg, #ff0050, #ff4081);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 0, 80, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Seção TikTok */
#tiktok-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
    border-top: 3px solid #ff0050;
}

#tiktok-section h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.tiktok-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.tiktok-profile {
    text-align: center;
}

.tiktok-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.tiktok-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ff0050;
    object-fit: cover;
}

.tiktok-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #ff0050;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 3px solid white;
}

.tiktok-stats h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

.stat {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff0050;
}

.stat .label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tiktok-description p {
    font-size: 1.2rem;
    color: #2c5530;
    margin-bottom: 25px;
}

.tiktok-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.tiktok-benefits li {
    padding: 8px 0;
    font-size: 1.1rem;
    color: #555;
}

.tiktok-button {
    background: linear-gradient(135deg, #ff0050, #ff4081);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 0, 80, 0.3);
}

.tiktok-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.4);
    color: white;
}

/* Seção de Comparação */
#comparison {
    background: white;
    padding: 60px 0;
    border-top: 3px solid #4CAF50;
}

#comparison h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.comparison-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e8f5e8;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.comparison-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.comparison-card h3 {
    text-align: center;
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.vs-comparison {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agency-option, .course-option {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
}

.agency-option {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
}

.course-option {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border: 2px solid #4CAF50;
}

.vs-comparison .label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.agency-option .label {
    color: #666;
}

.course-option .label {
    color: #2c5530;
}

.vs-comparison .value {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.value.negative {
    color: #666;
}

.value.positive {
    color: #2c5530;
}

.vs-divider {
    text-align: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: #FF6B35;
    background: #FF6B35;
    color: white;
    padding: 8px;
    border-radius: 20px;
    margin: 5px 0;
    letter-spacing: 2px;
}

.comparison-conclusion {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border-radius: 15px;
}

.comparison-conclusion h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.comparison-conclusion p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* WhatsApp Flutuante */
#whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    max-width: 250px;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
}

.whatsapp-title {
    font-weight: 700;
    font-size: 0.9rem;
}

.whatsapp-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
    .tiktok-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .comparison-card {
        padding: 20px;
    }
    
    .comparison-icon {
        font-size: 2rem;
    }
    
    .comparison-card h3 {
        font-size: 1.2rem;
    }
    
    #whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        padding: 10px 15px;
        max-width: 200px;
    }
    
    .whatsapp-text {
        font-size: 0.85rem;
    }
    
    .tiktok-info {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
}

@media (max-width: 480px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header {
        grid-template-columns: 1fr;
    }
    
    .comparison-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-icon {
        margin: 0;
    }
}
