/* Estilo Geral da Seção Premium */
.premium-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.premium-section .premium-header {
    text-align: center;
    margin-bottom: 40px;
}

.premium-section .premium-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #C24630;
    margin-bottom: 10px;
}

.premium-section .premium-header p {
    font-size: 1.1rem;
    color: #555;
}

.premium-section .premium-features {
    margin-top: 30px;
}

.premium-section .feature-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.premium-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.premium-section .feature-card i {
    font-size: 2.5rem;
    color: #C24630;
    margin-bottom: 15px;
}

.premium-section .feature-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.premium-section .feature-card p {
    color: #666;
    font-size: 1rem;
}

.premium-section .cta-btn .btn {
    background-color: #C24630;
    color: #fff;
    padding: 10px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.premium-section .cta-btn .btn:hover {
    background-color: #a1372b;
    color: #fff;
}
