.elementor-4070 .elementor-element.elementor-element-d79c447{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-4070 .elementor-element.elementor-element-d79c447.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-4070 .elementor-element.elementor-element-06a14b8 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:1024px) and (min-width:768px){.elementor-4070 .elementor-element.elementor-element-d79c447{--width:583px;}}/* Start custom CSS for html, class: .elementor-element-06a14b8 *//* --- RESET E VARIÁVEIS --- */
    :root {
        --vr-blue-primary: #332FA4;    /* Azul Marca */
        --vr-blue-light: #6366F1;      /* Azul Claro/Hover */
        --vr-blue-dark: #262288;       /* Azul Escuro */
        --vr-bg-dark: #282828;         /* Fundo Principal */
        --vr-bg-sec: #161616;         /* Fundo Secundário */
        --vr-bg-card: #202020;         /* Fundo Cards */
        --vr-text-white: #ffffff;
        --vr-text-gray: #d1d5db;
        --vr-border: rgba(255, 255, 255, 0.08);
        --vr-whatsapp: #25D366;        /* Verde WhatsApp */
        --vr-whatsapp-dark: #128C7E;   /* Verde WhatsApp Escuro */
        --vr-instagram: #E1306C;       /* Cor Instagram */
    }

    /* Reset específico para o container da LP para isolar do WordPress */
    .vr-landing-page {
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        line-height: 1.6;
        color: var(--vr-text-white);
        background-color: var(--vr-bg-dark);
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .vr-landing-page * {
        box-sizing: border-box;
    }

    .vr-landing-page a { text-decoration: none; color: inherit; transition: 0.3s; }
    .vr-landing-page ul { list-style: none; padding: 0; margin: 0; }
    .vr-landing-page img { max-width: 100%; display: block; }
    
    .vr-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* --- ANIMAÇÕES DE SCROLL (LÓGICA NOVA) --- */
    .vr-scroll-trigger {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        will-change: opacity, transform;
    }

    .vr-scroll-trigger.vr-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger delays (efeito cascata) */
    .vr-delay-100 { transition-delay: 0.1s; }
    .vr-delay-200 { transition-delay: 0.2s; }
    .vr-delay-300 { transition-delay: 0.3s; }
    .vr-delay-400 { transition-delay: 0.4s; }


    /* --- NAVBAR --- */
    .vr-navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 20px 0;
        transition: all 0.3s ease;
        background: transparent;
    }

    .vr-navbar.scrolled {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        padding: 12px 0;
        border-bottom: 1px solid var(--vr-border);
    }

    .vr-nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .vr-logo-img {
        height: 60px; /* Ajuste altura conforme necessário */
        width: auto;
    }

    .vr-desktop-menu {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .vr-nav-link {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #e5e7eb;
    }

    .vr-nav-link:hover {
        color: var(--vr-blue-light);
    }

    .vr-btn-contact {
        background-color: var(--vr-blue-primary);
        color: white;
        padding: 10px 24px;
        border-radius: 50px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        box-shadow: 0 4px 15px rgba(51, 47, 164, 0.4);
    }

    .vr-btn-contact:hover {
        background-color: var(--vr-blue-dark);
        transform: translateY(-2px);
    }

    /* Menu Mobile Toggle */
    .vr-mobile-toggle {
        display: none;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }

    .vr-mobile-menu {
        display: none; /* JS vai alternar isso */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--vr-bg-card);
        border-bottom: 1px solid var(--vr-border);
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .vr-mobile-menu.active {
        display: flex;
    }

    /* --- HERO SECTION --- */
    .vr-hero {
        position: relative;
        min-height: 100vh; /* Ocupa tela toda */
        display: flex;
        align-items: center;
        padding-top: 100px; /* Espaço para navbar */
        overflow: hidden;
    }

    .vr-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .vr-hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .vr-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, #0a0a0a 0%, rgba(10,10,10,0.85) 50%, rgba(10,10,10,0.4) 100%);
        z-index: 1;
    }

    .vr-hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
    }

    .vr-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 16px;
        border-radius: 20px;
        background: rgba(51, 47, 164, 0.15);
        border: 1px solid rgba(51, 47, 164, 0.3);
        color: var(--vr-blue-light);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 24px;
        letter-spacing: 1px;
    }

    .vr-hero-title {
        font-size: 3.5rem; /* 56px */
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 24px;
        color: white;
    }

    .vr-text-highlight {
        color: var(--vr-blue-light);
        background: -webkit-linear-gradient(45deg, #6366F1, #818CF8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .vr-hero-desc {
        font-size: 1.25rem; /* 20px */
        color: var(--vr-text-gray);
        margin-bottom: 40px;
        max-width: 600px;
        font-weight: 300;
    }

    .vr-hero-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .vr-btn-primary {
        background-color: var(--vr-blue-primary);
        color: white;
        padding: 16px 32px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 16px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 0 20px rgba(51, 47, 164, 0.4);
    }
    
    .vr-btn-primary:hover {
        background-color: var(--vr-blue-dark);
        box-shadow: 0 0 30px rgba(51, 47, 164, 0.6);
    }

    .vr-btn-outline {
        background: transparent;
        border: 1px solid rgba(255,255,255,0.2);
        color: white;
        padding: 16px 32px;
        border-radius: 8px;
        font-weight: 600;
    }

    .vr-btn-outline:hover {
        background: rgba(255,255,255,0.05);
        border-color: white;
    }

    /* --- SEÇÕES GERAIS --- */
    .vr-section {
        padding: 80px 0;
        position: relative;
    }
    
    .vr-bg-alt {
        background-color: var(--vr-bg-sec); /* Levemente mais claro que o bg principal */
    }

    .vr-section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .vr-section-subtitle {
        color: var(--vr-blue-light);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 10px;
    }

    .vr-section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin: 0;
    }

    /* --- GRID FEATURES --- */
    .vr-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .vr-feature-card {
        background: var(--vr-bg-card);
        padding: 30px;
        border-radius: 12px;
        border: 1px solid var(--vr-border);
        transition: 0.3s;
    }

    .vr-feature-card:hover {
        border-color: var(--vr-blue-primary);
        transform: translateY(-5px);
    }

    .vr-icon-box {
        width: 50px;
        height: 50px;
        background: rgba(51, 47, 164, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--vr-blue-light);
        margin-bottom: 20px;
    }

    .vr-feature-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: white;
    }

    .vr-feature-text {
        color: var(--vr-text-gray);
        font-size: 0.95rem;
    }

    /* --- GRID SERVICES --- */
    .vr-services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
    }

    .vr-service-card {
        background: var(--vr-bg-card);
        border: 1px solid var(--vr-border);
        border-radius: 16px;
        padding: 30px;
        display: flex;
        gap: 20px;
        transition: 0.3s;
    }

    .vr-service-card:hover {
        border-color: var(--vr-blue-primary);
        box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    }

    .vr-service-content h4 {
        color: white;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .vr-service-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: var(--vr-text-gray);
        margin-top: 8px;
    }

    .vr-check-icon {
        color: var(--vr-blue-light);
        flex-shrink: 0;
    }

    /* --- CTA BANNER --- */
    .vr-cta-banner {
        background: linear-gradient(135deg, var(--vr-blue-dark) 0%, var(--vr-blue-primary) 100%);
        padding: 80px 20px;
        text-align: center;
    }

    /* Botão Verde Whatsapp */
    .vr-cta-btn-green {
        background: var(--vr-whatsapp);
        color: white;
        padding: 16px 40px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1.1rem;
        display: inline-block;
        margin-top: 30px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        transition: 0.3s;
    }
    
    .vr-cta-btn-green:hover {
        background: var(--vr-whatsapp-dark);
        transform: translateY(-2px);
    }

    /* --- FAQ --- */
    .vr-faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .vr-faq-item {
        background: var(--vr-bg-card);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--vr-border);
    }

    /* FAQ Header - Azul Padrão */
    .vr-faq-header {
        width: 100%;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--vr-blue-primary) !important; /* Força Azul */
        border: none;
        color: white;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        text-align: left;
        transition: background-color 0.3s;
    }
    
    .vr-faq-header:hover {
        background-color: var(--vr-blue-dark) !important;
    }

    .vr-faq-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        padding: 0 20px;
        background-color: var(--vr-bg-card);
    }

    .vr-faq-body.open {
        padding-bottom: 20px;
    }

    .vr-faq-text {
        color: var(--vr-text-gray);
        font-size: 0.95rem;
        border-top: 1px solid var(--vr-border);
        padding-top: 15px;
        margin-top: 10px;
    }

    /* --- FOOTER --- */
    .vr-footer {
        background: black;
        padding: 60px 0 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 0.9rem;
    }

    .vr-footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .vr-footer-col h4 {
        color: white;
        font-weight: 700;
        margin-bottom: 20px;
        border-left: 3px solid var(--vr-blue-primary);
        padding-left: 10px;
    }

    .vr-footer-links li { margin-bottom: 10px; color: var(--vr-text-gray); }
    .vr-footer-links li a:hover { color: var(--vr-blue-light); }
    
    .vr-contact-item {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
        color: var(--vr-text-gray);
        align-items: center;
    }

    .vr-instagram-link {
        color: var(--vr-text-gray);
        transition: 0.3s;
    }
    
    .vr-instagram-link:hover {
        color: var(--vr-instagram);
    }

    .vr-copyright {
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px;
        color: #6b7280;
        font-size: 0.8rem;
    }
    
    .vr-copyright a {
        color: inherit;
        text-decoration: underline;
    }

    /* --- FLOATING WHATSAPP --- */
    .vr-floating-whatsapp {
        position: fixed;
        bottom: 25px;
        right: 25px;
        background: #25D366;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        z-index: 9999;
        transition: transform 0.3s;
    }

    .vr-floating-whatsapp:hover {
        transform: scale(1.1);
    }
    
    .vr-pulse {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #25D366;
        opacity: 0.5;
        z-index: -1;
        animation: vr-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    }
    
    @keyframes vr-ping {
        75%, 100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    /* --- MEDIA QUERIES --- */
    @media (max-width: 991px) {
        .vr-hero-title { font-size: 2.5rem; }
        .vr-footer-grid { grid-template-columns: 1fr; gap: 30px; }
        .vr-desktop-menu { display: none; }
        .vr-mobile-toggle { display: block; }
    }

    @media (max-width: 768px) {
        .vr-hero { align-items: flex-end; padding-bottom: 60px; }
        .vr-hero-content { width: 100%; }
        .vr-services-grid { grid-template-columns: 1fr; }
        .vr-service-card { flex-direction: column; }
    }
    /* Botão do Facebook */
    .icon-facebook-circle {
        width: 20px;              /* ajuste conforme o layout */
        height: 20px;
    }

    .icon-facebook-bg {
        fill: #ffffff;            /* cor de fundo do círculo (mude se quiser monocromático) */
    }

    .icon-facebook-f {
        fill: #000000;            /* “f” branco */
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        font-size: 22px;          /* ajuste fino até ficar no ponto */
        font-weight: 700;
        text-anchor: middle;      /* centraliza horizontalmente no x */
        dominant-baseline: central; /* centraliza verticalmente no y */
    }

    /* Animação CSS Inicial para o Hero (sem dependência de scroll) */
    .vr-animate-up {
        animation: vrSlideUp 0.8s ease-out forwards;
        opacity: 0;
        transform: translateY(30px);
    }
    
    @keyframes vrSlideUp {
        to { opacity: 1; transform: translateY(0); }
    }
    
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.3s; }
    .delay-3 { animation-delay: 0.5s; }/* End custom CSS */