/* --- Estilos Públicos (Como Funciona / Preços) --- */

.public-area {
    padding: 50px 0;
}

.public-area h1 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.public-area .subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #6c757d;
    margin-bottom: 40px;
}

/* --- Fluxo de Processo (Como Funciona) --- */
#process-flow h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.step-icon {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    background-color: var(--color-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-item h3 {
    color: var(--color-secondary);
    margin-top: 0;
}

/* --- Grid de Preços (Preços) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.price-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
}

.premium-card {
    border: 3px solid var(--color-secondary);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
    position: relative;
}

.premium-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
}

.price-card h2 {
    font-size: 1.8em;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.price-card .price {
    font-size: 3em;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.price-card .price span {
    font-size: 0.5em;
    font-weight: normal;
    color: #6c757d;
}

.price-card .description {
    font-size: 1em;
    color: #6c757d;
    min-height: 40px;
}

.features-list {
    list-style: none;
    padding: 20px 0;
    text-align: left;
    margin-bottom: 20px;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px dotted #eee;
}

.features-list li:last-child {
    border-bottom: none;
}

.cta-banner {
    text-align: center;
    padding: 30px;
    background-color: var(--color-light);
    border-radius: 8px;
    margin-top: 40px;
}

.cta-banner p {
    font-size: 1.2em;
    margin-bottom: 15px;
}
