/* Estilos específicos para a página de planos */

/* Planos Enhanced CSS - Simplificado para compatibilidade com demo/converter */

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

/* Testimonials Section */
.testimonial-card {
    background: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Call to Action Section */
.cta-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 80px 0;
}

.cta-gradient .btn-light {
    background: white;
    color: #333;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.cta-gradient .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-gradient {
        padding: 60px 0;
    }
    
    .cta-gradient {
        padding: 60px 0;
    }
}
