        /* CSS Variables based on instructions */
        :root {
            --preto: #111111;
            --grafite: #242424;
            --dourado: #C5A253;
            --dourado-claro: #E0C27A;
            --bege: #F4F0E8;
            --branco: #FFFFFF;
            --texto: #333333;
            --texto-claro: #A0A0A0;
            --transicao: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --font-serif: 'Playfair Display', Georgia, serif;
            --font-sans: 'Montserrat', sans-serif;
        }

        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            color: var(--texto);
            background-color: var(--branco);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-serif);
            font-weight: 600;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transicao);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Helper Classes */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: var(--transicao);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: var(--dourado);
            color: var(--preto);
            border: 1px solid var(--dourado);
        }

        .btn-primary:hover {
            background-color: var(--dourado-claro);
            border-color: var(--dourado-claro);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(197, 162, 83, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--branco);
            border: 1px solid var(--branco);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--dourado);
            color: var(--dourado-claro);
            transform: translateY(-2px);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transicao);
            padding: 20px 0;
            background-color: transparent;
        }

        header.scrolled {
            background-color: rgba(17, 17, 17, 0.95);
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(197, 162, 83, 0.15);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 55px;
            width: auto;
            object-fit: contain;
            transition: var(--transicao);
        }

        header.scrolled .logo img {
            height: 45px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 24px;
        }

        nav ul a {
            color: var(--branco);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
            opacity: 0.85;
            position: relative;
            padding: 8px 0;
        }

        nav ul a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--dourado);
            transition: var(--transicao);
        }

        nav ul a:hover {
            opacity: 1;
            color: var(--dourado-claro);
        }

        nav ul a:hover::after {
            width: 100%;
        }

        .header-cta .btn {
            padding: 10px 20px;
            font-size: 12px;
        }

        /* Mobile Hamburger Menu */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--branco);
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        #hero {
            position: relative;
            min-height: 95vh;
            background-color: var(--preto);
            display: flex;
            align-items: center;
            color: var(--branco);
            padding-top: 100px;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: url('/wp-content/themes/adv/assets/banner-desktop.png');
            background-size: cover;
            background-position: center;
            background-position-x: 100%;
            z-index: 1;
        }

        /* Overlay to blend background gracefully */
        .hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, var(--preto) 0%, rgba(17, 17, 17, 0.4) 60%, rgba(17, 17, 17, 0.8) 100%);
        }

        .hero-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            display: grid;
            grid-template-columns: 55% 45%;
            align-items: center;
        }

        .hero-content {
            padding-right: 40px;
        }

        .selo-superior {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--dourado);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--dourado-claro);
            margin-bottom: 24px;
        }

        #hero h1 {
            font-size: 40px;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--branco);
        }

        #hero .subtitulo {
            font-size: 16px;
            font-weight: 300;
            color: #D1D1D1;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        #hero .texto-complementar {
            font-size: 13px;
            color: #A0A0A0;
            margin-bottom: 30px;
            font-style: italic;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            margin-bottom: 35px;
        }

        .hero-indicators {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }

        .indicator-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #D1D1D1;
            font-weight: 500;
        }

        .indicator-item i {
            color: var(--dourado);
        }

        /* Section 3: Problemas (Bege) */
        .section-padding {
            padding: 90px 0;
        }

        #problemas {
            background-color: var(--bege);
            color: var(--texto);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px auto;
        }

        .section-header h2 {
            font-size: 32px;
            color: var(--preto);
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 15px;
            color: #555555;
            line-height: 1.7;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .card {
            background-color: var(--branco);
            padding: 30px;
            border-radius: 4px;
            border-bottom: 3px solid transparent;
            transition: var(--transicao);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
        }

        .card:hover {
            transform: translateY(-5px);
            border-bottom-color: var(--dourado);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .card-icon {
            font-size: 28px;
            color: var(--dourado);
            margin-bottom: 20px;
        }

        .card h3 {
            font-size: 18px;
            color: var(--preto);
            margin-bottom: 12px;
        }

        .card p {
            font-size: 13px;
            color: #555555;
            line-height: 1.6;
        }

        /* Section 4: Situacoes (Grafite) */
        #situacoes {
            background-color: var(--grafite);
            color: var(--branco);
        }

        #situacoes .section-header h2 {
            color: var(--branco);
        }

        #situacoes .section-header p {
            color: #CCCCCC;
        }

        .situacoes-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px 40px;
            max-width: 900px;
            margin: 0 auto 40px auto;
        }

        .situacao-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            color: #E5E5E5;
        }

        .situacao-item i {
            color: var(--dourado);
            font-size: 16px;
            margin-top: 3px;
        }

        .situacao-conclusion {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            font-size: 13px;
            color: #A0A0A0;
            font-style: italic;
            line-height: 1.6;
        }

        .situacoes-actions {
            text-align: center;
            margin-top: 35px;
        }

        /* Section 5: Como Ajudar (Branco, Timeline) */
        #ajuda {
            background-color: var(--branco);
        }

        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
            margin-bottom: 50px;
        }

        .timeline-item {
            position: relative;
            padding: 20px 10px;
        }

        .timeline-step {
            font-family: var(--font-serif);
            font-size: 36px;
            font-weight: bold;
            color: rgba(197, 162, 83, 0.3);
            margin-bottom: 15px;
            display: block;
        }

        .timeline-item h3 {
            font-size: 16px;
            color: var(--preto);
            margin-bottom: 12px;
        }

        .timeline-item p {
            font-size: 13px;
            color: #555555;
            line-height: 1.6;
        }

        .destaque-ajuda {
            text-align: center;
            background-color: var(--bege);
            padding: 24px;
            border-left: 4px solid var(--dourado);
            border-radius: 4px;
            max-width: 800px;
            margin: 0 auto;
            font-size: 14px;
            font-weight: 500;
            color: var(--preto);
        }

        /* Section 6: Documentos (Bege) */
        #documentos {
            background-color: var(--bege);
            color: var(--texto);
        }

        .docs-wrapper {
            display: grid;
            grid-template-columns: 55% 45%;
            gap: 40px;
            align-items: center;
        }

        .docs-list-container {
            background-color: var(--branco);
            padding: 40px;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        .docs-checklist {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
            list-style: none;
        }

        .docs-checklist li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            color: var(--texto);
        }

        .docs-checklist li i {
            color: var(--dourado);
            font-size: 16px;
            margin-top: 2px;
        }

        .docs-info-box {
            padding-left: 10px;
        }

        .docs-info-box h3 {
            font-size: 26px;
            color: var(--preto);
            margin-bottom: 15px;
        }

        .docs-info-box p {
            font-size: 14px;
            color: #555555;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .docs-obs {
            background-color: rgba(197, 162, 83, 0.1);
            padding: 18px;
            border-radius: 4px;
            font-size: 13px;
            color: var(--preto);
            border-left: 3px solid var(--dourado);
            font-style: italic;
        }

        /* Section 7: Sobre a Advogada */
        #sobre {
            background-color: var(--branco);
        }

        .sobre-wrapper {
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 50px;
            align-items: center;
        }

        .sobre-img {
            border-radius: 4px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            border: 1px solid rgba(197, 162, 83, 0.2);
        }

        .sobre-img img {
            width: 100%;
            display: block;
        }

        .sobre-content {
            padding-left: 20px;
        }

        .sobre-selo {
            font-family: var(--font-serif);
            font-size: 14px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--dourado);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .sobre-content h2 {
            font-size: 30px;
            color: var(--preto);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .sobre-content p {
            font-size: 14px;
            color: #555555;
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .oab-box {
            background-color: var(--bege);
            padding: 12px 18px;
            border-radius: 4px;
            font-size: 12px;
            color: #666;
            margin-bottom: 25px;
            display: inline-block;
            font-weight: 500;
        }

        /* Section 8: Diferenciais (Grafite) */
        #diferenciais {
            background-color: var(--grafite);
            color: var(--branco);
        }

        #diferenciais .section-header h2 {
            color: var(--branco);
        }

        .diferenciais-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .diferencial-card {
            background-color: rgba(255,255,255,0.03);
            padding: 30px 20px;
            border-radius: 4px;
            border: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            transition: var(--transicao);
        }

        .diferencial-card:hover {
            background-color: rgba(255,255,255,0.06);
            border-color: rgba(197, 162, 83, 0.3);
            transform: translateY(-5px);
        }

        .diferencial-icon {
            font-size: 24px;
            color: var(--dourado);
            margin-bottom: 15px;
        }

        .diferencial-card h3 {
            font-size: 15px;
            color: var(--branco);
            margin-bottom: 10px;
        }

        .diferencial-card p {
            font-size: 12px;
            color: #CCCCCC;
            line-height: 1.6;
        }

        /* Section 9: FAQ (Accordion) */
        #faq {
            background-color: var(--branco);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            margin-bottom: 8px;
        }

        .accordion-header {
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            padding: 20px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-serif);
            font-size: 16px;
            font-weight: 600;
            color: var(--preto);
            cursor: pointer;
            transition: var(--transicao);
        }

        .accordion-header:hover {
            color: var(--dourado);
        }

        .accordion-icon {
            font-size: 14px;
            color: var(--dourado);
            transition: var(--transicao);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .accordion-content p {
            padding: 0 10px 20px 10px;
            font-size: 13px;
            color: #555555;
            line-height: 1.7;
        }

        .accordion-item.active .accordion-content {
            max-height: 300px; /* high enough to fit content */
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        /* Section 10: CTA Final */
        #cta-final {
            position: relative;
            background-color: var(--preto);
            color: var(--branco);
            overflow: hidden;
        }

        .cta-wrapper {
            display: grid;
            grid-template-columns: 60% 40%;
            align-items: center;
            gap: 40px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 32px;
            color: var(--branco);
            margin-bottom: 15px;
        }

        .cta-content p {
            font-size: 15px;
            color: #CCCCCC;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .cta-info-list {
            margin-top: 35px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
        }

        .cta-info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 13px;
            color: #BBBBBB;
        }

        .cta-info-item i {
            color: var(--dourado);
            font-size: 16px;
            margin-top: 3px;
        }

        .cta-info-item h4 {
            color: var(--branco);
            font-size: 14px;
            margin-bottom: 4px;
        }

        .cta-img {
            position: relative;
            z-index: 1;
            align-self: flex-end;
            display: flex;
            justify-content: flex-end;
        }

        .cta-img img {
            max-height: 450px;
            object-fit: contain;
            opacity: 0.85;
            filter: grayscale(15%) contrast(105%);
        }

        /* Section 11: Rodapé */
        footer {
            background-color: #0d0d0d;
            color: #888888;
            padding: 60px 0 30px 0;
            font-size: 12px;
            border-top: 1px solid rgba(197,162,83,0.1);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 30% 25% 20% 25%;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo-footer img {
            height: 150px;
            width: auto;
            margin-bottom: 15px;
        }

        .footer-brand p {
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .footer-col h4 {
            color: var(--branco);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 1px;
            background-color: var(--dourado);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #888888;
        }

        .footer-col ul li a:hover {
            color: var(--dourado);
        }

        .footer-legal-text {
            line-height: 1.6;
            color: #666666;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 25px;
            margin-bottom: 20px;
            text-align: justify;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 20px;
            font-size: 11px;
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: var(--branco);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 999;
            transition: var(--transicao);
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #20BA5A;
        }

        /* Mobile Fixed CTA Bar */
        .mobile-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(17, 17, 17, 0.98);
            border-top: 1px solid var(--dourado);
            padding: 10px 16px;
            display: none;
            z-index: 998;
            box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
            transition: var(--transicao);
            transform: translateY(100%);
        }

        .mobile-cta-bar.visible {
            transform: translateY(0);
        }

        .mobile-cta-bar .btn {
            width: 100%;
            padding: 12px;
            font-size: 13px;
        }

        /* RESPONSIVE MEDIA QUERIES */
        @media (max-width: 1024px) {
            /* Common sections adjustments */
            .section-padding {
                padding: 70px 0;
            }
            
            /* Hero */
            #hero {
                min-height: auto;
                padding-bottom: 0px !important;
            }

            .hero-actions{
                display:  block !important;
            }

            .hero-actions .btn-primary{
                margin-bottom: 10px;
            }
            
            .hero-wrapper {
                grid-template-columns: 100%;
                text-align: center;
            }
            .hero-content {
                padding-right: 0;
                margin-bottom: 50px;
            }
            .hero-background {
                display: none; /* Hide background image on smaller devices and use layout placeholder or we show standard banner */
            }
            .selo-superior {
                justify-content: center;
            }
            .hero-actions {
                justify-content: center;
            }
            .hero-indicators {
                justify-content: center;
            }
            
            /* Sections grid mapping */
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .timeline-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .diferenciais-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .docs-wrapper {
                grid-template-columns: 100%;
            }
            .sobre-wrapper {
                grid-template-columns: 100%;
                gap: 30px;
            }
            .sobre-content {
                padding-left: 0;
            }
            .cta-wrapper {
                grid-template-columns: 100%;
            }
            .cta-img {
                display: none;
            }
            .footer-top {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            /* Header Menu mobile */
            .menu-toggle {
                display: block;
                order: 3;
            }
            .header-cta {
                display: none; /* Hidden on tiny mobile screens */
            }
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--preto);
                z-index: 999;
                transition: var(--transicao);
                padding: 40px 24px;
            }
            nav.open {
                left: 0;
            }
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
            nav ul a {
                font-size: 16px;
            }

            /* Typo changes */
            #hero h1 {
                font-size: 30px;
            }
            .section-header h2 {
                font-size: 26px;
            }

            /* Grid layouts to single column */
            .cards-grid,
            .timeline-grid,
            .diferenciais-grid,
            .situacoes-list {
                grid-template-columns: 100%;
            }
            
            .cta-info-list {
                grid-template-columns: 100%;
            }

            .footer-top {
                grid-template-columns: 100%;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            /* Mobile CTA show */
            .mobile-cta-bar {
                display: block;
            }
            
            /* Margin adjustments so content isn't cut by CTA bar */
            body {
                padding-bottom: 60px;
            }
            
            .whatsapp-float {
                bottom: 80px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }

    

        /* Estilos dos Depoimentos (Splide) */
.testimonial-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 162, 83, 0.2);
    padding: 35px 30px;
    border-radius: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transicao);
    margin: 10px;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--dourado);
    transform: translateY(-3px);
}

.testimonial-card .stars {
    color: var(--dourado);
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-card .testimonial-text {
    font-size: 13px;
    color: #DDDDDD;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .client-name {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--branco);
    margin-bottom: 2px;
}

.testimonial-card .client-role {
    font-size: 11px;
    color: var(--dourado-claro);
    font-weight: 500;
}

/* Customização dos controles do Splide para combinar com o design */
.splide__arrow {
    background: transparent !important;
    border: 1px solid rgba(197, 162, 83, 0.4) !important;
    color: var(--dourado) !important;
    width: 40px !important;
    height: 40px !important;
    transition: var(--transicao);
}

.splide__arrow:hover {
    background: var(--dourado) !important;
    color: var(--preto) !important;
    border-color: var(--dourado) !important;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, 0.2) !important;
}

.splide__pagination__page.is-active {
    background: var(--dourado) !important;
    transform: scale(1.2);
}

/*===========================================
  FAIXA DESENVOLVIDO POR
===========================================*/

.faixa-desenvolvido {
  padding: 18px 0;
  background: white;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;

}

.desenvolvido-por {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  gap: 14px;
  color: black;
  font-size: 13px;
  font-weight: 800;
}

.desenvolvido-por:hover {
  color: #ffd34e;
}

.desenvolvido-por img {
  display: block;
  width: auto;
  max-width: 155px;
  max-height: 32px;
}

/* =====================================================
   CTA FIXO PREMIUM - KELLY MOREIRA ADVOCACIA
===================================================== */
.cta-fixo-desktop {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 9998;
  width: auto;
  max-width: calc(100% - 30px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(30px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.cta-fixo-desktop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cta-fixo-box {
  width: 100%;
  min-width: 580px;
  min-height: 88px;
  padding: 14px 16px 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(197, 162, 83, 0.4);
  border-radius: 999px;
  background: rgba(244, 240, 232, 0.96); /* Usando var(--bege) com opacidade */
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* =====================================================
   STATUS ONLINE
===================================================== */
.status-online {
  display: flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
}

.status-online span:first-child {
  color: var(--preto);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.online-dot {
  position: relative;
  width: 12px;
  height: 12px;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 50%;
  background: #25D366; /* Verde oficial WhatsApp */
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.8);
  animation: pulseOnline 1.4s infinite ease-in-out;
}

.online-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(37, 211, 102, 0.45);
  border-radius: 50%;
  animation: pulseRing 1.4s infinite ease-out;
}

@keyframes pulseOnline {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(37, 211, 102, 0.65); }
  50% { transform: scale(1.15); box-shadow: 0 0 18px rgba(37, 211, 102, 0.95); }
  100% { transform: scale(1); box-shadow: 0 0 10px rgba(37, 211, 102, 0.65); }
}

@keyframes pulseRing {
  0% { opacity: 0.8; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* =====================================================
   BOTÃO CTA PREMIUM
===================================================== */
.cta-fixo-btn {
  width: auto;
  min-width: 265px;
  min-height: 56px;
  margin: 0;
  padding: 10px 12px 10px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-shrink: 0;
  border: none;
  border-radius: 999px;
  color: var(--preto);
  background: var(--dourado);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transicao);
}

.cta-fixo-btn i {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--dourado);
  background-color: var(--preto);
  font-size: 12px;
  transition: var(--transicao);
}

.cta-fixo-btn:hover {
  color: var(--preto);
  background-color: var(--dourado-claro);
  box-shadow: 0 10px 25px rgba(197, 162, 83, 0.4);
  transform: translateY(-2px);
}

.cta-fixo-btn:hover i {
  color: var(--preto);
  background-color: var(--branco);
  transform: rotate(45deg);
}

/* =====================================================
   VOLTAR AO TOPO PREMIUM
===================================================== */
.btn-scroll-topo {
  position: fixed;
  right: 28px;
  bottom: 38px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 162, 83, 0.4);
  border-radius: 50%;
  color: var(--dourado);
  background: rgba(36, 36, 36, 0.95); /* var(--grafite) com opacidade */
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(25px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transicao);
}

.btn-scroll-topo.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.btn-scroll-topo:hover {
  color: var(--preto);
  border-color: var(--dourado);
  background-color: var(--dourado);
  transform: translateY(-4px);
}

/* =====================================================
   RESPONSIVO INTEGRADO
===================================================== */
@media (max-width: 991px) {
  .cta-fixo-desktop {
    bottom: 0;
    width: 100%;
    max-width: 100%;
  }
  .cta-fixo-box {
    min-width: 0;
    min-height: auto;
    padding: 14px 24px;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 10px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-top: 1px solid var(--dourado);
    border-radius: 0;
    background: rgba(17, 17, 17, 0.98); /* Fundo escuro premium em dispositivos móveis */
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.4);
  }
  .cta-fixo-box .status-online span:first-child {
    color: var(--branco);
  }
  .cta-fixo-btn {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    min-height: 52px;
    padding: 9px 10px 9px 22px;
    font-size: 12px;
  }
  .cta-fixo-btn i {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  .status-online {
    justify-content: center;
    gap: 9px;
  }
  .status-online span:first-child {
    font-size: 12px;
  }
  .online-dot {
    width: 11px;
    height: 11px;
  }
  .online-dot::after {
    inset: -5px;
  }
  .btn-scroll-topo {
    right: 18px;
    bottom: 135px; /* Sobe para não cobrir a barra fixa do mobile */
    width: 48px;
    height: 48px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .cta-fixo-box {
    padding: 12px 20px;
  }
  .cta-fixo-btn {
    max-width: 100%;
  }
  .btn-scroll-topo {
    bottom: 130px;
  }
}

@media(min-width: 991.99px) {
  .esconde-desktop {
    display: none;
  }
}

@media(max-width: 991.98px) {
  .esconde-mobile {
    display: none;
  }
}



.centraliza {
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto;
  display: flex;
}