/* ============================================
   WALLACE SOUZA ADVOCACIA — PRORROGAÇÃO DE DÍVIDAS
   Estilos específicos desta Landing Page
   ============================================ */

/* ---------- Hero ---------- */
.hero-prorrogacao {
    background: linear-gradient(160deg, var(--bg-dark) 0%, #0a2e2a 60%, #0d3530 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-prorrogacao::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(206, 181, 132, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.hero-prorrogacao::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

.hero-prorrogacao .hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-prorrogacao .hero-title span {
    color: var(--accent);
    position: relative;
}

.hero-prorrogacao .hero-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.5;
}

.hero-prorrogacao .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(254, 246, 228, 0.75);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-prorrogacao .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-prorrogacao .hero-img-wrapper {
    position: relative;
    z-index: 2;
}

.hero-prorrogacao .hero-img-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    max-height: 520px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-prorrogacao .hero-img-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    opacity: 0.25;
    z-index: -1;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(206, 181, 132, 0.12);
    border: 1px solid rgba(206, 181, 132, 0.25);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 0.75rem;
}

/* ---------- Problemas Section ---------- */
.problemas-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.problemas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, var(--accent));
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

.problemas-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(231, 76, 60, 0.3);
}

.problemas-card:hover::before {
    transform: scaleX(1);
}

.problemas-card .problemas-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.08);
    border-radius: var(--radius-sm);
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: #e74c3c;
    transition: var(--transition-smooth);
}

.problemas-card:hover .problemas-icon {
    background: #e74c3c;
    color: white;
    transform: scale(1.08);
}

.problemas-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.problemas-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.7;
    margin: 0;
}

/* ---------- Serviços Section ---------- */
.servicos-section {
    position: relative;
}

.servico-card {
    background: rgba(254, 246, 228, 0.06);
    border: 1px solid rgba(254, 246, 228, 0.1);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

.servico-card:hover {
    transform: translateY(-6px);
    background: rgba(254, 246, 228, 0.1);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-card .servico-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.servico-card:hover .servico-icon {
    background: var(--accent);
    color: var(--text-primary);
    transform: scale(1.05);
}

.servico-card h4 {
    color: var(--text-light);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.servico-card p {
    color: rgba(254, 246, 228, 0.65);
    font-size: 0.92rem;
    line-height: 1.8;
    margin: 0;
}

.servico-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.servico-card ul li {
    color: rgba(254, 246, 228, 0.7);
    font-size: 0.88rem;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.servico-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
}

/* ---------- Como Funciona ---------- */
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-card .step-number {
    width: 64px;
    height: 64px;
    font-size: 1.3rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(206, 181, 132, 0.25);
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.92rem;
    opacity: 0.7;
    line-height: 1.7;
}

.step-connector {
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -15%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    z-index: 1;
}

/* ---------- FAQ Section Custom ---------- */
.faq-section-custom {
    position: relative;
}

.faq-section-custom .faq-side-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-section-custom .faq-side-content p {
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ---------- CTA Extra Styles ---------- */
.cta-section .cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .cta-subtitle {
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .hero-prorrogacao {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-prorrogacao .hero-title {
        font-size: 2.4rem;
    }

    .hero-prorrogacao .hero-img-wrapper {
        margin-top: 3rem;
    }

    .hero-prorrogacao .hero-img-wrapper img {
        max-height: 400px;
    }

    .step-connector::after {
        display: none;
    }

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

@media (max-width: 767.98px) {
    .hero-prorrogacao .hero-title {
        font-size: 2rem;
    }

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

    .hero-prorrogacao .hero-buttons {
        flex-direction: column;
    }

    .hero-prorrogacao .hero-buttons .btn-ws-primary,
    .hero-prorrogacao .hero-buttons .btn-ws-outline-light {
        width: 100%;
        justify-content: center;
    }

    .hero-prorrogacao .hero-img-wrapper::before {
        display: none;
    }

    .cta-section .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-prorrogacao .hero-title {
        font-size: 1.7rem;
    }

    .hero-prorrogacao {
        padding: 100px 0 50px;
    }
}

/* ========== NAVBAR GREEN OVERRIDE ========== */
.navbar-ws {
    background: rgba(17, 62, 57, 0.95) !important;
    border-bottom: 1px solid rgba(206, 181, 132, 0.15) !important;
}

.navbar-ws.scrolled {
    background: rgba(13, 47, 43, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.navbar-ws .nav-link {
    color: rgba(254, 246, 228, 0.85) !important;
}

.navbar-ws .nav-link:hover,
.navbar-ws .nav-link.active {
    color: var(--accent) !important;
}

.navbar-ws .navbar-toggler {
    color: rgba(254, 246, 228, 0.85) !important;
}

@media (max-width: 991.98px) {
    .navbar-ws .navbar-collapse {
        background: #113e39 !important;
        border: 1px solid rgba(206, 181, 132, 0.15) !important;
    }
}
