/* ==========================================================================
   LANDING PAGE: SALÁRIO MATERNIDADE
   Bruna Silva Andrade Sociedade Individual de Advocacia
   ========================================================================== */

/* Variables & Root Themes */
:root {
    --color-primary: #071637;     /* Navy Blue */
    --color-accent: #B1A074;      /* Gold/Bronze */
    --color-success: #1acc8d;     /* Green Accent */
    --color-success-hover: #17b57d;
    --color-bg-light: #f5f7fa;
    --color-text-dark: #333333;
    --color-text-light: #b4a497;
    --font-family: 'Montserrat', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header & Sticky Navbar */
.landing-header {
    background-color: var(--color-primary);
    border-bottom: 1px solid rgba(177, 160, 116, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 15px 0;
}

.landing-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(7, 22, 55, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
}

.logo-text span {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link img {
    height: 45px;
    width: auto;
}

/* Nav Menu */
.landing-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Nav CTA Button */
.btn-nav-cta {
    background-color: var(--color-success);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(26, 204, 141, 0.3);
}

.btn-nav-cta:hover {
    background-color: var(--color-success-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 204, 141, 0.4);
}

/* Hamburger Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Landing Page */
.hero-lp {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #071637 0%, #0d2350 100%);
    position: relative;
    overflow: hidden;
}

.hero-lp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(177, 160, 116, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-lp h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 20px;
}

.hero-lp h1 span {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 35px;
}

.bullets-hero {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.bullets-hero li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #fff;
}

.bullets-hero li svg {
    color: var(--color-success);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bullets-hero .bullet-content strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.bullets-hero .bullet-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* CTA Card */
.cta-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--color-accent);
}

.cta-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.cta-card-header p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 25px;
}

.cta-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.cta-benefits-list li svg {
    color: var(--color-success);
    flex-shrink: 0;
}

.btn-cta-card {
    background-color: var(--color-success);
    color: #fff !important;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(26, 204, 141, 0.3);
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}

.btn-cta-card:hover {
    background-color: var(--color-success-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 204, 141, 0.4);
}

.cta-card-footer {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Trust Badges Section */
.trust-badges {
    background-color: var(--color-primary);
    padding: 30px 0;
    border-bottom: 1px solid rgba(177, 160, 116, 0.1);
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.badge-item svg {
    color: var(--color-accent);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.badge-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.badge-text p {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin: 0;
}

/* General Layout Adjustments */
.section-lp {
    padding: 90px 0;
}

.section-lp.bg-light {
    background-color: var(--color-bg-light);
}

.section-lp.bg-dark {
    background-color: var(--color-primary);
    color: #fff;
}

/* Quem tem direito grid */
.direito-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.direito-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.direito-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.direito-card:hover::after {
    background-color: var(--color-accent);
}

.direito-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.direito-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(177, 160, 116, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--color-accent);
}

.direito-icon i {
    font-size: 1.85rem;
    color: var(--color-accent);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direito-icon svg {
    font-size: 1.8rem;
}

.direito-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.direito-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Requisitos table & content */
.requisitos-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.requisitos-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e5eb;
    margin-bottom: 30px;
}

.table-carência {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    text-align: left;
}

.table-carência th {
    background-color: var(--color-primary);
    color: #fff;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 0.95rem;
}

.table-carência td {
    padding: 18px 20px;
    border-bottom: 1px solid #edf0f5;
    font-size: 0.95rem;
    color: #444;
}

.table-carência tr:last-child td {
    border-bottom: none;
}

.table-carência tr:nth-child(even) {
    background-color: #f8fafc;
}

.badge-carecia {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-carecia.isento {
    background-color: rgba(26, 204, 141, 0.15);
    color: var(--color-success-hover);
}

.badge-carecia.obrigatorio {
    background-color: rgba(177, 160, 116, 0.15);
    color: #927f54;
}

.alerta-desempregada {
    background-color: rgba(177, 160, 116, 0.05);
    border-left: 4px solid var(--color-accent);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

.alerta-desempregada h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.alerta-desempregada p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* Valor e Duração */
.cards-valor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.valor-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.valor-card .destaque-numero {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 5px;
    line-height: 1;
}

.valor-card .destaque-sub {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.valor-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    text-align: left;
    margin-bottom: 12px;
}

.valor-card p:last-child {
    margin-bottom: 0;
}

.check-list-valor {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.check-list-valor li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #444;
}

.check-list-valor li svg {
    color: var(--color-success);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Por que contratar / Como funciona */
.passo-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.passo-item {
    display: flex;
    gap: 20px;
}

.passo-numero {
    width: 45px;
    height: 45px;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.passo-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.passo-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Accordion FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf0f5;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 25px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question svg {
    color: var(--color-accent);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafbfc;
    border-top: 1px solid transparent;
}

.faq-answer-content {
    padding: 22px 25px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.faq-item.active {
    border-color: rgba(177, 160, 116, 0.3);
}

.faq-item.active .faq-answer {
    border-top-color: #edf0f5;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

/* Call to Action Section (Banner) */
.cta-banner {
    background: linear-gradient(135deg, #071637 0%, #0d2861 50%, #071637 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-banner h2 span {
    color: var(--color-accent);
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-success);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(26, 204, 141, 0.4);
    transition: var(--transition-smooth);
}

.btn-cta-large:hover {
    background-color: var(--color-success-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 204, 141, 0.5);
    color: #fff;
}

/* Desktop Grid & Layout Overrides */
@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.6667%;
    }
}

/* Mobile Nav Mobile View Style overrides */
@media (max-width: 991px) {
    .mobile-toggle {
        display: block;
    }
    
    .landing-nav {
        display: none; /* Controlled by active class in mobile */
    }
    
    .navbar-mobile {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background-color: var(--color-primary);
        border-bottom: 1px solid rgba(177, 160, 116, 0.2);
        padding: 30px 20px;
        gap: 25px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease;
    }
    
    .navbar-mobile .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        text-align: center;
    }
    
    .navbar-mobile .btn-nav-cta {
        width: 100%;
        justify-content: center;
    }
    
    .hero-lp {
        padding-top: 110px;
        padding-bottom: 60px;
        text-align: center;
    }
    
    .bullets-hero {
        align-items: center;
    }
    
    .cta-card {
        margin-top: 40px;
    }
    
    .cards-valor {
        grid-template-columns: 1fr;
    }
    
    .requisitos-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .hero-lp h1 {
        font-size: 2.2rem;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
    }
    
    .cta-card {
        padding: 25px 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

#footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 25px 0 35px;
    font-size: 0.85rem;
    color: #a0aec0;
}
