.especialista-hero {
    background: white;
    color: #444;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    display: inline-block;
    margin: 0 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

.btn-mensal {
    background-color: #dd6514;
}

.btn-anual {
    background-color: #13133d;
    border: 2px solid white;
}

.btn:hover {
    opacity: 0.85;
}

/* Benefícios */
.especialista-beneficios {
    background-color: #f0f0f0;
    padding: 60px 20px;
}

.container_plano {
    max-width: 1100px;
    margin: 0 auto;
}

.especialista-beneficios h2 {
    text-align: center;
    font-size: 2rem;
    color: #2b2b2b;
    margin-bottom: 40px;
}

.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.beneficio {
    padding: 25px;
    /* border: 2px solid #f0f0f0; */
    border-radius: 12px;
    background: white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.beneficio:hover {
    transform: translateY(-5px);
}

.beneficio h3 {
    color: #dd6514;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.beneficio p {
    color: #444;
    font-size: 1rem;
}

.beneficio.destaque {
    background: white;
    border: 2px solid #dd6514;
}

.beneficio.destaque h3 {
}

/* Seção final */
.especialista-final {
    background-color: #13133d;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.especialista-final h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.especialista-final p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn.grande {
    font-size: 1.2rem;
    padding: 18px 40px;
    background-color: #dd6514;
    border-radius: 10px;
    color: white;
    text-decoration: none;
}