/* Página de Consultoria - Premium */

/* Header */
.page-header {
    background: var(--black);
    padding: 20px 40px;
    border-bottom: 1px solid rgba(245, 245, 240, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header .logo-gm {
    text-decoration: none;
}

.btn-header {
    padding: 12px 24px;
    background: var(--purple);
    color: var(--off-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
}

/* Section Tag */
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 16px;
}

.section-tag.green { color: #22c55e; }
.section-tag.red { color: #ef4444; }

/* Hero */
.consultoria-hero {
    background: var(--black);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consultoria-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 800px;
    background: radial-gradient(ellipse, var(--purple-glow) 0%, transparent 60%);
    filter: blur(120px);
    opacity: 0.5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.badge-icon {
    color: var(--purple);
}

.hero-badge span:last-child {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--purple);
}

.consultoria-hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.consultoria-hero h1 .highlight {
    font-style: italic;
    color: var(--purple);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--off-white-muted);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--off-white-muted);
    line-height: 1.4;
}

.metric-divider {
    width: 1px;
    height: 60px;
    background: rgba(245, 245, 240, 0.15);
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 48px;
    background: var(--purple);
    color: var(--off-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-apply:hover {
    background: var(--purple-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

/* Para Quem */
.para-quem-section {
    background: var(--black-light);
    padding: 100px 40px;
}

.para-quem-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.para-quem-col h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 24px;
}

.check-list, .x-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-list li, .x-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--off-white-muted);
}

.check-list svg {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.x-list svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pilares */
.pilares-section {
    background: var(--black);
    padding: 100px 40px;
}

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

.pilares-header {
    text-align: center;
    margin-bottom: 60px;
}

.pilares-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 16px;
}

.pilares-header h2 .highlight {
    color: var(--purple);
}

.pilares-header p {
    font-size: 1.1rem;
    color: var(--off-white-muted);
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pilar-card {
    background: var(--black-card);
    border: 1px solid rgba(245, 245, 240, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pilar-card:hover {
    border-color: var(--purple);
    transform: translateY(-4px);
}

.pilar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pilar-card:hover::before {
    opacity: 1;
}

.pilar-featured {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, var(--black-card) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.pilar-featured::before {
    opacity: 1;
}

.pilar-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--purple);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.pilar-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 12px;
}

.pilar-content > p {
    font-size: 0.95rem;
    color: var(--off-white-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pilar-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pilar-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--off-white-subtle);
}

.pilar-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
}

/* Transformação */
.transformacao-section {
    background: var(--black-light);
    padding: 100px 40px;
}

.transformacao-container {
    max-width: 900px;
    margin: 0 auto;
}

.transformacao-header {
    text-align: center;
    margin-bottom: 60px;
}

.transformacao-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--off-white);
}

.transformacao-header h2 .highlight {
    color: var(--purple);
}

.antes-depois {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.antes, .depois {
    background: var(--black-card);
    border-radius: 20px;
    padding: 32px;
}

.antes {
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.depois {
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.antes h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 20px;
}

.depois h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 20px;
}

.antes ul, .depois ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.antes li, .depois li {
    font-size: 0.95rem;
    color: var(--off-white-muted);
    padding-left: 20px;
    position: relative;
}

.antes li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.depois li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.seta {
    color: var(--purple);
}

/* Funcionamento */
.funcionamento-section {
    background: var(--black);
    padding: 100px 40px;
}

.funcionamento-container {
    max-width: 1000px;
    margin: 0 auto;
}

.funcionamento-header {
    text-align: center;
    margin-bottom: 60px;
}

.funcionamento-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--off-white);
}

.funcionamento-header h2 .highlight {
    color: var(--purple);
}

.funcionamento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.func-item {
    background: var(--black-card);
    border: 1px solid rgba(245, 245, 240, 0.08);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.func-item:hover {
    border-color: var(--purple);
}

.func-item .func-icon {
    width: 56px;
    height: 56px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.func-item .func-icon svg {
    color: var(--purple);
}

.func-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 8px;
}

.func-item p {
    font-size: 0.9rem;
    color: var(--off-white-muted);
    line-height: 1.6;
}

/* Depoimentos */
.depoimentos-section {
    background: var(--black-light);
    padding: 100px 40px;
}

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

.depoimentos-header {
    text-align: center;
    margin-bottom: 60px;
}

.depoimentos-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--off-white);
}

.depoimentos-header h2 .highlight {
    color: var(--purple);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.depoimento-card {
    background: var(--black-card);
    border: 1px solid rgba(245, 245, 240, 0.08);
    border-radius: 20px;
    padding: 28px;
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.depoimento-avatar {
    width: 48px;
    height: 48px;
    background: var(--purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--off-white);
}

.depoimento-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 2px;
}

.depoimento-info span {
    font-size: 0.8rem;
    color: var(--off-white-subtle);
}

.depoimento-card > p {
    font-size: 0.95rem;
    color: var(--off-white-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.depoimento-resultado {
    display: flex;
}

.resultado-tag {
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #22c55e;
}

/* Investimento */
.investimento-section {
    background: var(--black);
    padding: 100px 40px;
}

.investimento-container {
    max-width: 600px;
    margin: 0 auto;
}

.investimento-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, var(--black-card) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.investimento-header {
    margin-bottom: 32px;
}

.investimento-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 8px;
}

.investimento-header p {
    color: var(--off-white-muted);
}

.investimento-includes {
    text-align: left;
    margin-bottom: 32px;
}

.investimento-includes h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 16px;
}

.investimento-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.investimento-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--off-white-muted);
}

.investimento-includes svg {
    color: var(--purple);
    flex-shrink: 0;
}

.investimento-valor {
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
}

.valor-label {
    display: block;
    font-size: 0.85rem;
    color: var(--off-white-muted);
    margin-bottom: 8px;
}

.valor {
    font-size: 3rem;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1;
}

.valor-mes {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--off-white-muted);
}

.valor-nota {
    display: block;
    font-size: 0.85rem;
    color: var(--off-white-subtle);
    margin-top: 8px;
}

.btn-investimento {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--purple);
    color: var(--off-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-investimento:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.investimento-aviso {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--off-white-subtle);
}

/* FAQ */
.faq-section {
    background: var(--black-light);
    padding: 100px 40px;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--black-card);
    border: 1px solid rgba(245, 245, 240, 0.08);
    border-radius: 16px;
    padding: 28px;
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--off-white-muted);
    line-height: 1.6;
}

/* CTA Final */
.cta-final-section {
    background: var(--black);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, var(--purple-glow) 0%, transparent 60%);
    filter: blur(100px);
    opacity: 0.4;
}

.cta-final-content {
    position: relative;
    z-index: 1;
}

.cta-final-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 16px;
}

.cta-final-section h2 .highlight {
    color: var(--purple);
}

.cta-final-section > .cta-final-content > p {
    font-size: 1.1rem;
    color: var(--off-white-muted);
    margin-bottom: 32px;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 48px;
    background: var(--purple);
    color: var(--off-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-cta-final:hover {
    background: var(--purple-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.cta-note {
    display: block;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--off-white-subtle);
}

/* Responsivo */
@media (max-width: 900px) {
    .para-quem-container,
    .pilares-grid,
    .funcionamento-grid,
    .depoimentos-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .antes-depois {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .seta {
        transform: rotate(90deg);
    }

    .hero-metrics {
        flex-direction: column;
        gap: 32px;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 16px 20px;
    }

    .btn-header {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .consultoria-hero,
    .para-quem-section,
    .pilares-section,
    .transformacao-section,
    .funcionamento-section,
    .depoimentos-section,
    .investimento-section,
    .faq-section,
    .cta-final-section {
        padding: 60px 24px;
    }

    .consultoria-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .metric-value {
        font-size: 2rem;
    }

    .btn-apply {
        padding: 16px 32px;
        font-size: 0.9rem;
    }

    .investimento-card {
        padding: 32px 24px;
    }

    .valor {
        font-size: 2.5rem;
    }

    .cta-final-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
}
