/* E9 DIGITAL - ESTILO PÁGINA DE PLANOS WHATS FLOW (v2 - Final) */

/* Base e Títulos */
.section-title-with-icon .title-icon {
    height: 250px;
    width: auto;
    margin-bottom: 0px;
}

.section-title {
    margin-bottom: 10px;
}

.section-subtitle {
    font-weight: bold;
    color: #050a34;
    font-size: 1.5em;
    text-align: center; /* <<< ADICIONE ESTA LINHA PARA CENTRALIZAR */
}

/* Container dos Planos */
.planos-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.plano {
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

.plano:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.plano-header {
    color: white;
    padding: 20px 15px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.plano-header h3 {
    margin: 0;
    font-size: 1.5em;
}

.plano-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plano .preco {
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #050a34;
}

.plano .preco-detalhe {
    font-size: 1em;
    margin-top: -5px;
    margin-bottom: 25px;
    color: #6c757d;
}

.plano ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    flex-grow: 1;
    font-size: 1.1em;
}

.plano ul li {
    margin-bottom: 15px;
}

/* Cores específicas dos planos */
.plano.gratis .plano-header { background-color: #6c757d; }
.plano.mensal .plano-header { background-color: #050a34; }
.plano.anual .plano-header { background-color: #4de223; color: #050a34; }

/* Ajuste no botão dentro do plano */
.plano .btn {
    background-color: #050a34;
}

.plano .btn:hover {
    background-color: #4de223;
    color: #050a34;
    border-color: #4de223;
}

.plano.anual .btn {
    background-color: #4de223;
    color: #050a34;
    border-color: #4de223;
}

.plano.anual .btn:hover {
    background-color: #050a34;
    color: #ffffff;
    border-color: #050a34;
}

@media (max-width: 992px) {
    .planos-container {
        grid-template-columns: 1fr;
    }
}