.elementor-13 .elementor-element.elementor-element-85c34a4{--display:flex;--min-height:0px;--justify-content:flex-start;}.elementor-13 .elementor-element.elementor-element-2e1329d{width:100%;max-width:100%;}.elementor-13 .elementor-element.elementor-element-330bfb8{--display:flex;}.elementor-13 .elementor-element.elementor-element-91ba01e{--display:flex;}.elementor-13 .elementor-element.elementor-element-9d708a1{--display:flex;}.elementor-13 .elementor-element.elementor-element-e21af3a{--display:flex;}.elementor-13 .elementor-element.elementor-element-797d743{--display:flex;}.elementor-13 .elementor-element.elementor-element-929cb17{--display:flex;}.elementor-13 .elementor-element.elementor-element-0634535{--display:flex;}.elementor-13 .elementor-element.elementor-element-4416717{--display:flex;}.elementor-13 .elementor-element.elementor-element-d05e202{--display:flex;}.elementor-13 .elementor-element.elementor-element-167653c{--display:flex;}.elementor-13 .elementor-element.elementor-element-72277e9{--display:flex;}.elementor-13 .elementor-element.elementor-element-fa83c20{--display:flex;}.elementor-13 .elementor-element.elementor-element-1c81bdd{--display:flex;}.elementor-13 .elementor-element.elementor-element-719e5ad{--display:flex;}@media(min-width:768px){.elementor-13 .elementor-element.elementor-element-85c34a4{--content-width:1216px;}}/* Start custom CSS *//* TOKENS CSS & VARIÁVEIS 
        */
        :root {
            --base-1: #F6F5F2; /* Off-white */
            --base-2: #EDEAE3; /* Creme */
            --text-1: #121212; /* Preto-carvão */
            --text-2: #444444; /* Grafite */
            --black:  #0F0F0F; /* Preto profundo */
            --amber:  #A67843; /* Marrom-âmbar */
            --petrol: #2E4057; /* Azul-petróleo */
            --sand:   #D8D5CE; /* Cinza-areia */
            
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            
            --container-width: 1100px;
            --spacing-section: 80px;
            --radius-card: 10px;
            --radius-btn: 8px;
        }

        /* RESET BÁSICO */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background-color: var(--base-1);
            color: var(--text-1);
            line-height: 1.6;
            font-size: 18px;
            -webkit-font-smoothing: antialiased;
        }

        /* TIPOGRAFIA */
        h1, h2, h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-1);
        }

        h1 { font-size: clamp(30px, 5vw, 48px); margin-bottom: 24px; }
        h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 32px; }
        h3 { font-size: 22px; margin-bottom: 12px; }
        
        p { margin-bottom: 16px; color: var(--text-2); }
        
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul { list-style: none; }

        /* LAYOUT */
        .container {
            width: 90%;
            max-width: var(--container-width);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section {
            padding: var(--spacing-section) 0;
            position: relative;
            overflow: hidden;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }

        /* COMPONENTES */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 24px;
            border-radius: var(--radius-btn);
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
            border: none;
            text-align: center;
            width: auto; /* Desktop default */
        }

        .btn-primary {
            background-color: var(--black);
            color: #fff;
            border: 1px solid var(--black);
        }

        .btn-primary:hover {
            background-color: var(--text-2);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--petrol);
            border: 1px solid var(--petrol);
        }
        
        .btn-secondary:hover {
            background-color: var(--petrol);
            color: #fff;
        }
        
        .btn-contrast {
            background-color: var(--amber);
            color: #fff;
        }
        
        .btn-contrast:hover {
            background-color: #8f6536;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        /* Cards */
        .card {
            background-color: var(--base-1);
            padding: 32px;
            border-radius: var(--radius-card);
            border: 1px solid var(--sand);
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            transition: transform 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            border-color: var(--amber);
        }

        .icon-box {
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
            color: var(--amber);
        }
        .icon-box svg { width: 100%; height: 100%; stroke-width: 1.5; }

        /* HERO SECTION */
        #hero {
            background-color: var(--base-1);
            min-height: 90vh;
            display: flex;
            align-items: center;
        }

        .logo-placeholder {
            display: block;
            width: 100%;
            max-width: 250px;
            height: 60px;
            margin-bottom: 16px;
        }

        .hero-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 18px;
            color: var(--text-2);
        }

        .hero-list li svg {
            min-width: 20px;
            width: 20px;
            height: 20px;
            color: var(--amber);
            margin-right: 12px;
            margin-top: 4px;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: 20px 20px 0px var(--sand); 
        }

        .hero-image {
            width: 100%;
            height: auto;
            display: block;
            filter: sepia(30%) grayscale(50%) contrast(110%) brightness(90%);
            transition: filter 0.3s ease;
        }

        .hero-image:hover {
            filter: sepia(20%) grayscale(30%) contrast(110%);
        }

        /* SECTIONS */
        #direitos { background-color: var(--base-2); }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 48px auto;
        }

        #como-ajudamos { background-color: var(--base-1); }

        .step-card {
            border: none;
            background: transparent;
            padding: 0;
            box-shadow: none;
            border-left: 1px solid var(--sand);
            padding-left: 24px;
            border-radius: 0;
        }
        
        .step-number {
            font-family: var(--font-heading);
            font-size: 48px;
            color: var(--sand);
            line-height: 1;
            margin-bottom: 16px;
        }

        /* FOOTER & CTA */
        #contato {
            background-color: var(--black);
            color: #fff;
            text-align: center;
        }

        #contato h2, #contato p { color: #fff; }

        #contato p {
            opacity: 0.9;
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 32px auto;
        }

        footer {
            background-color: var(--black);
            color: var(--sand);
            padding: 40px 0;
            font-size: 14px;
            border-top: 1px solid #333;
        }

        .footer-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .footer-disclaimer {
            font-size: 12px;
            opacity: 0.6;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .disclaimer-line { display: block; }

        /* BUTTON FLOATING */
        .floating-whatsapp {
            position: fixed;
            bottom: 22px;
            right: 22px;
            background-color: var(--amber);
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .floating-whatsapp svg { width: 32px; height: 32px; fill: currentColor; }

        /* ========================================
            OTIMIZAÇÃO MOBILE (MEDIA QUERIES) 
            ========================================
        */
        @media (max-width: 900px) {
            /* Layout Geral */
            :root {
                --spacing-section: 48px; /* Reduz espaçamento vertical */
            }

            .container {
                width: 92%; /* Mais largura útil no mobile */
            }

            /* Hero */
            #hero {
                padding-top: 40px; /* Espaço para não colar no topo */
                min-height: auto;
                align-items: flex-start;
            }

            .grid-2 {
                grid-template-columns: 1fr; /* Empilha coluna */
                gap: 32px;
            }

            /* Imagem Hero no Mobile */
            .hero-image-wrapper {
                order: 2; /* Joga a imagem para baixo do texto/botão */
                margin-top: 0;
                box-shadow: 10px 10px 0px var(--sand); /* Sombra menor */
                max-height: 250px; /* Altura controlada */
            }
            
            .hero-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center 20%; /* Foca no rosto/ombro */
            }

            /* Typography Mobile */
            h1 { font-size: 28px; margin-bottom: 16px; }
            h2 { font-size: 24px; margin-bottom: 20px; }
            p.subtitle { font-size: 16px; }
            
            .logo-placeholder {
                margin: 0 auto 16px 0; /* Alinha logo à esquerda ou centro conforme preferência. Aqui: esquerda */
                height: 50px;
            }

            /* Botões Full-Width */
            .btn {
                width: 100%; /* Botão ocupa toda a largura */
                padding: 18px; /* Área de toque maior */
            }

            /* Ajustes Cards e Grids */
            .grid-4, .grid-3 {
                grid-template-columns: 1fr; /* Um card por linha */
                gap: 20px;
            }

            .card {
                padding: 24px; /* Menos padding interno */
            }

            /* Ajuste Steps (Dobra 3) */
            .step-card {
                border-left: none;
                border-top: 1px solid var(--sand);
                padding-left: 0;
                padding-top: 24px;
            }
            
            .hero-list li {
                font-size: 16px;
            }

            /* Footer */
            .footer-disclaimer {
                font-size: 11px;
            }
        }/* End custom CSS */