.super-rounded {
    border-radius: 35px;
}

.program-header {
    text-align: center;
    margin-bottom: 30px;
}

.program-header h2 {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.program-header h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e78f3c);
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

.age-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.age-option {
    padding: 12px 25px;
    background: #f8f9fa;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--primary-green);
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.age-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff9e6;
}

.age-option.active {
    background: #FFD700;
    color: var(--primary-green);
    border-color: #FFC300;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.age-option.active:hover {
    background: #FFDF00;
}

.age-option i {
    margin-right: 8px;
    color: #FFC300;
}

.age-option.active i {
    color: var(--primary-green);
}

.program-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.program-panel {
    display: none;
    animation: fadeIn 0.5s ease;
    text-align: center;
}

.program-panel.active {
    display: block;
}

.program-panel h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
    text-align: center;
}

.program-panel ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
    padding-left: 0;
}

.program-panel li {
    margin-bottom: 12px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
    break-inside: avoid;
}

.program-panel li:before {
    content: '✓';
    color: #2ecc71;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.program-panel ol {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
    padding-left: 0;
}

.program-panel ol li {
    margin-bottom: 12px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
    break-inside: avoid;
}

.program-panel ol li:before {
    content: '✓';
    color: #2ecc71;
    font-weight: bold;
    position: absolute;
    left: 0;
}


.program-disclaimer {
    font-size: 15px;
    color: #95a5a6;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px dashed #ecf0f1;
    font-style: italic;
    text-align: center;
}

.age-icon {
    width: 60px;
    height: 60px;
    background: #f1c40f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}


.bg-faq {
    background: url('/assets/img/site/estaticos/FAQ.png') no-repeat center center;
    background-size: cover;
    min-height: 400px;
    color: white;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .age-option {
        padding: 10px 15px;
        font-size: 14px;
    }

    .program-panel ul {
        display: block;
        width: 100%;
    }

    .bg-faq {
        background: url('/assets/img/site/estaticos/FAQmob.jpg') no-repeat center center;
        background-size: cover;
    }
}