/* =================================================================== */
/* --- ARQUIVO: profissionais.css (VERSÃO FINAL E CORRIGIDA) --- */
/* =================================================================== */

/* Keyframes para animações de entrada */
@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================================== */
/* --- HERO PARA PROFISSIONAIS (VERSÃO CLARA E ELEGANTE) --- */
/* ========================================================== */

/* ================================================================= */
/* --- HERO (VERSÃO FINAL COM IMAGEM SUTIL E ANIMADA) --- */
/* ================================================================= */

/* ================================================================= */
/* --- HERO (VERSÃO FINAL COM IMAGEM, TEXTO E PADDING CORRIGIDOS) --- */
/* ================================================================= */

.hero-professionals {
    position: relative; /* Base para o posicionamento da imagem */
    background-color: #f8f9fa; /* Cor de fundo principal */
    padding: 140px 0 100px 0; /* Espaçamento vertical equilibrado */
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden; /* Garante que a imagem animada não vaze */
}

/* Camada da imagem "leitosa" e animada */
.hero-professionals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* [IMPORTANTE] SUBSTITUA A URL DA IMAGEM AQUI */
    background-image: url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=2070&auto=format&fit=crop');
    
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0; /* Coloca a imagem atrás do texto */

    /* [CONTROLE] AJUSTE O EFEITO "LEITOSO" (OPACIDADE) AQUI */
    opacity: 0.1; /* Ex: 0.1 para muito sutil, 0.3 para mais visível */

    /* Animação de zoom */
    animation: slowZoom 25s infinite alternate;
}

/* Garante que o conteúdo (texto e botão) fique na frente da imagem */
.hero-professionals .container {
    position: relative;
    z-index: 1;
}

/* Estilos para o Título Principal */
.hero-professionals .hero-title {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 5px; /* Espaço aumentado entre título e subtítulo */
}

/* Estilos para o Subtítulo */
.hero-professionals .hero-subtitle {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500; /* Fonte um pouco mais presente */
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

/* Keyframe para a Animação de Zoom */
@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05); /* Zoom sutil de 5% */
    }
}


/* ========================================================== */
/* --- SEÇÃO "COMO FUNCIONA" --- */
/* ========================================================== */

.how-it-works-pro { 
    padding: 80px 0; 
    background-color: var(--white-color);
}

.steps-container { 
    display: flex; 
    justify-content: space-around; 
    gap: 30px; 
    margin-top: 50px; 
    text-align: center; 
}

.step-card { 
    padding: 20px; 
    transition: transform 0.3s ease; 
}

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

.step-icon { 
    font-size: 3.5rem; 
    color: var(--primary-color); 
    margin-bottom: 20px; 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.step-card:hover .step-icon { 
    transform: scale(1.15) rotate(-8deg); 
}

.step-card h3 { 
    font-family: var(--font-headings); 
    color: var(--dark-color); 
    font-size: 1.5rem; 
    margin-bottom: 10px; 
}


/* ========================================================== */
/* --- SEÇÃO DE PLANOS --- */
/* ========================================================== */

.plans-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.plans-container { 
    display: flex; 
    justify-content: center; 
    align-items: stretch;
    gap: 30px; 
    margin-top: 60px; 
    flex-wrap: wrap; 
}

.plan-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 350px;
    padding: 30px;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.12); 
}

.plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plan-card.featured:hover { 
    transform: scale(1.08) translateY(-12px); 
}

.plan-badge { 
    position: absolute; 
    top: -18px; 
    left: 50%; 
    transform: translateX(-50%);
    background-image: linear-gradient(45deg, var(--primary-color), #270039); 
    color: var(--white-color); 
    padding: 7px 22px; 
    border-radius: 20px; 
    font-size: 0.9rem; 
    font-weight: 700;
}

.plan-header { 
    text-align: center; 
    padding-bottom: 20px; 
    margin-bottom: 15px; 
    border-bottom: 1px solid var(--light-color); 
}

.plan-header h3 { 
    font-family: var(--font-headings); 
    font-size: 1.8rem; 
    color: var(--dark-color); 
}

.plan-price { 
    font-size: 3rem; 
    font-weight: 800; 
    color: var(--primary-color); 
    font-family: var(--font-headings); 
}

.plan-price span { 
    font-size: 1rem; 
    font-weight: 400; 
    color: var(--text-color); 
}

.plan-description {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 25px;
    min-height: 80px;
    font-style: italic;
}

.plan-features { 
    list-style: none; 
    padding: 0; 
    flex-grow: 1; 
    margin-bottom: 30px; 
}

.plan-features li { 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
    gap: 10px;
}

.plan-features li i { 
    color: var(--secondary-color); 
}

.plan-features li.disabled { 
    color: #95a5a6; 
}

.plan-features li.disabled i { 
    color: #e74c3c; 
}

.plan-card .btn { 
    display: block; 
    width: 100%; 
    text-align: center; 
    padding: 15px; 
    margin-top: auto; 
}


/* ========================================================== */
/* --- SEÇÃO DE FAQ (PERGUNTAS FREQUENTES) --- */
/* ========================================================== */

.faq-section { 
    padding: 100px 0; 
    background-color: var(--white-color);
}

.faq-container { 
    max-width: 800px; 
    margin: 0 auto; 
}

.faq-item {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: margin-bottom 0.3s ease;
}

.faq-item.active { 
    border-color: var(--primary-color); 
    box-shadow: 0 8px 30px rgba(93, 0, 255, 0.15); /* Sombra roxa sutil */
}

.faq-question { 
    font-family: var(--font-headings); 
    font-size: 1.2rem; 
    color: var(--dark-color); 
    padding: 20px; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    transition: background-color 0.2s ease; 
}

.faq-question:hover { 
    background-color: #f9f9f9; 
}

.faq-question::after { 
    content: '\2b'; 
    font-size: 1.5rem; 
    color: var(--primary-color); 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    font-weight: bold; 
}

.faq-item.active .faq-question { 
    color: var(--primary-color); 
}

.faq-item.active .faq-question::after { 
    transform: rotate(135deg); 
}

.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    padding: 0 20px; 
    color: #333; 
}

.faq-answer p { 
    margin: 0; 
    padding-bottom: 20px; 
}

.faq-item.active .faq-answer { 
    max-height: 300px; 
    padding: 0 20px 20px 20px; 
}

/* ========================================================== */
/* --- ESTILO DO BOTÃO DE IMPACTO (HERDADO DA HOME) --- */
/* ========================================================== */

.btn-impact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 48px;
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white-color);
    text-decoration: none;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.btn-impact:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.btn-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: left 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-impact:hover::before {
    left: 125%;
}