/* Estilos para a seção de planos */
.plan-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.plan-section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #333;
}

/* Container de cards de planos */
.plan-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Card do plano */
.plan-card {
    display: flex;
    flex-direction: column;
    width: 300px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
}

.plan-card:hover {
    transform: scale(1.05);
}

.plan-card-image {
    height: 150px;
    object-fit: cover;
    border-radius: 8px; 
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto; /* Centraliza a imagem */
}

/* Título do plano */
.plan-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Descrição do plano */
.plan-card-description {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Lista de características */
.plan-features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.plan-feature-icon {
    margin-right: 8px;
}

/* Botão do plano */
.plan-card-button {
    margin-top: auto;
    display: inline-block;
    padding: 12px 20px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}
