/* ========================================
   PAGE STYLES - Paginas internas
   Matheus Pedrosa Advogado
   ======================================== */

/* Navigation */
.page-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0a0a1a 100%);
    color: var(--white);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8), transparent);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-gold {
    color: var(--gold);
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: #aaa;
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Hero Stats */
.page-hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Page Sections */
.page-section {
    padding: 100px 0;
}

.page-section h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 50px;
}

.page-section h2::after {
    display: none;
}

.page-section-dark {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0d1b2a 100%);
    color: var(--white);
}

.page-section-dark h2 {
    color: var(--white);
}

.page-section-light {
    background: #f8f9fa;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card-dark h3 {
    color: var(--white);
}

.feature-card-dark p {
    color: #aaa;
}

.feature-icon-wrapper {
    margin-bottom: 20px;
}

.feature-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Process Timeline */
.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-connector {
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: calc(100% + 10px);
    background: rgba(212, 175, 55, 0.3);
}

.process-step:last-child .step-connector {
    display: none;
}

.step-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Pricing Card */
.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0d1b2a 100%);
    padding: 40px;
    text-align: center;
}

.pricing-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pricing-from {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.pricing-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
}

.pricing-body {
    background: var(--white);
    padding: 40px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Page CTA Button */
.page-cta {
    display: inline-flex;
    margin-top: 10px;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 25px;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.faq-question {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.faq-answer {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA Section */
.page-cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0a0a1a 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-cta-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
}

.page-cta-section h2::after {
    display: none;
}

.page-cta-section p {
    color: #aaa;
    font-size: 1.15rem;
    margin-bottom: 30px;
    position: relative;
}

/* Page Footer */
.page-footer {
    background: var(--black);
    padding: 30px 0;
    text-align: center;
}

.page-footer p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.page-footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-footer a:hover {
    color: #e6c35a;
}

/* Content Split */
.content-split {
    max-width: 800px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.page-section-dark .content-text p {
    color: #aaa;
}

.content-text blockquote {
    border-left: 4px solid var(--gold);
    padding: 20px 25px;
    margin: 30px 0;
    background: rgba(212, 175, 55, 0.05);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark-blue);
    font-family: 'Montserrat', sans-serif;
}

.page-section-dark .content-text blockquote {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0d1b2a 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.result-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
}

.result-card p {
    color: #aaa;
    margin-bottom: 0;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.audience-card {
    padding: 35px 30px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audience-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.audience-card:hover::after {
    width: 100%;
}

.audience-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.audience-card h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.audience-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   ARTICLE / BLOG STYLES
   ======================================== */

.article-hero {
    padding-bottom: 80px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.article-author {
    color: var(--gold);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.article-separator {
    color: #555;
}

.article-date {
    color: #888;
}

/* Article Layout */
.article-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    padding: 80px 0;
}

.article-body h2 {
    font-size: 1.6rem;
    color: var(--dark-blue);
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.article-body h2::after {
    display: none;
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.article-lead {
    font-size: 1.2rem !important;
    line-height: 1.8;
    color: #444 !important;
    margin-bottom: 2rem !important;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
}

.article-quote {
    text-align: center;
    border-left: none !important;
    padding: 30px 40px !important;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0d1b2a 100%) !important;
    color: var(--gold) !important;
    font-size: 1.3rem !important;
    border-radius: 12px;
    margin: 40px 0 !important;
}

/* Article Highlight Box */
.article-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 35px;
    margin: 50px 0;
}

.article-highlight h3 {
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.article-highlight p {
    margin-bottom: 0;
}

/* Article CTA Box */
.article-cta-box {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0d1b2a 100%);
    border-radius: 16px;
    padding: 45px;
    text-align: center;
    margin: 60px 0 30px;
}

.article-cta-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.article-cta-box p {
    color: #aaa !important;
    margin-bottom: 25px;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.sidebar-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1rem;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8e8;
}

.sidebar-links li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.sidebar-links a:hover {
    color: var(--gold);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0d1b2a 100%);
    border: none;
}

.sidebar-cta h4 {
    color: var(--gold);
}

.sidebar-cta p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.sidebar-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.sidebar-btn:hover {
    background: #e6c35a;
    transform: translateY(-2px);
}

/* Numbered List (blog) */
.numbered-list {
    margin: 40px 0;
}

.numbered-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.item-number {
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    min-width: 50px;
}

.numbered-item h3 {
    font-size: 1.15rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.numbered-item p {
    margin-bottom: 0;
}

/* Case Study */
.case-study {
    margin: 60px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.case-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0d1b2a 100%);
    padding: 35px;
}

.case-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.case-header h2 {
    color: var(--white) !important;
    font-size: 1.5rem !important;
    margin: 0 !important;
    padding: 0;
}

.case-body {
    padding: 35px;
    background: var(--white);
}

.case-challenge,
.case-solution,
.case-result {
    margin-bottom: 30px;
}

.case-challenge h3,
.case-solution h3,
.case-result h3 {
    color: var(--dark-blue);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

/* Result Metrics */
.result-metrics {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.metric {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 20px 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.metric-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Case Testimonial */
.case-testimonial {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
}

.case-testimonial p {
    font-style: italic;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.case-author {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 0.9rem;
    font-style: normal;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .features-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
    }

    .page-hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 70px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1.05rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .page-section {
        padding: 70px 0;
    }

    .page-section h2 {
        font-size: 1.8rem;
    }

    .page-cta-section h2 {
        font-size: 1.8rem;
    }

    .process-step {
        gap: 20px;
    }

    .step-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-connector {
        left: 20px;
        top: 40px;
    }

    .result-metrics {
        flex-direction: column;
    }

    .article-body h2 {
        font-size: 1.3rem;
    }

    .article-quote {
        font-size: 1.1rem !important;
        padding: 25px !important;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 1.7rem;
    }

    .page-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .pricing-amount {
        font-size: 2.2rem;
    }

    .case-header,
    .case-body {
        padding: 25px 20px;
    }

    .article-cta-box {
        padding: 30px 20px;
    }
}