.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//*

== CSS PERSONALIZADO DO SITE - OPTO CONTABILIDADE DIGITAL
== Editor do Elementor > Configurações do Site
== PALETA: Índigo #1E1B4B | Roxo #5B21B6 | Ciano #38BDF8

*/
/* 
   1. RESET E BASE DO SITE
 */
html {
    scroll-padding-top: 120px; /* Compensa altura do menu fixo */
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* 
   2. GARANTE QUE ELEMENTOS ESTRUTURAIS FIQUEM ACIMA DE FUNDOS
 */
nav, header, main, footer {
    position: relative;
    z-index: 1;
}

/* 
   3. CARDS OPTO (Efeito Elegante)
   - Sombra sutil, borda leve, cantos arredondados
   - Substitui o antigo .painel-vidro-cosmico
 */
.opto-card-elegante {
    background-color: #FFFFFF;
    border: 1px solid rgba(30, 27, 75, 0.08);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(30, 27, 75, 0.06);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.opto-card-elegante:hover {
    box-shadow: 0 12px 40px rgba(30, 27, 75, 0.12);
    transform: translateY(-4px);
}

/* Card elegante em fundo escuro (Índigo) */
.opto-section-dark .opto-card-elegante {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.opto-section-dark .opto-card-elegante:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* 
   4. BORDA DE DESTAQUE (Roxo / Ciano)
   - Para highlights visuais em cards ou seções especiais
 */
.opto-border-highlight {
    border: 1px solid rgba(91, 33, 182, 0.2);
    border-radius: 16px;
}

.opto-border-highlight-cyan {
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 16px;
}

/* 
   5. SOMBRA EM TEXTO (Legibilidade em fundo escuro)
   - Usar em textos sobrepostos a fundo Índigo ou imagens
 */
.opto-text-shadow {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Sombra mais suave para textos médios */
.opto-text-shadow-soft {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* 
   6. BOTÃO DE WHATSAPP (Flutuante)
   - Gatilho de conversão sempre visível
 */
.opto-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.opto-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* 
   7. ESPAÇAMENTO ENTRE ITENS DE LISTA NO BLOG
 */
.elementor-widget-theme-post-content ul li {
    margin-bottom: 15px;
}

.elementor-widget-theme-post-content ol li {
    margin-bottom: 12px;
}

/* 
   8. IMAGENS RESPONSIVAS
 */
img {
    max-width: 100%;
    height: auto;
}

/* 
   9. TRANSIÇÕES GLOBAIS SUAVES
 */
.opto-fade-in {
    animation: optoFadeIn 0.6s ease-out;
}

@keyframes optoFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 
   10. SELEÇÃO DE TEXTO (Branding)
 */
::selection {
    background-color: rgba(91, 33, 182, 0.15);
    color: #1E1B4B;
}

::-moz-selection {
    background-color: rgba(91, 33, 182, 0.15);
    color: #1E1B4B;
}

/* 
   11. BOTÃO DE FECHAR (Modais / Popups)
 */
.opto-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(30, 27, 75, 0.06);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    font-size: 1.2em;
    color: #2C3E50;
}

.opto-close-btn:hover {
    background-color: rgba(30, 27, 75, 0.12);
}

/* 
   12. MOBILE - AJUSTES GLOBAIS
 */
@media screen and (max-width: 768px) {
    html {
        scroll-padding-top: 80px; /* Menu fixo menor em mobile */
    }

    .opto-card-elegante {
        padding: 20px;
        border-radius: 12px;
    }

    .opto-whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }
}

@media screen and (max-width: 480px) {
    .opto-card-elegante {
        padding: 16px;
    }
}

/* 
   13. ACESSIBILIDADE - MOVIMENTO REDUZIDO
 */
@media (prefers-reduced-motion: reduce) {
    .opto-fade-in {
        animation: none !important;
    }

    .opto-card-elegante:hover {
        transform: none !important;
    }

    .opto-whatsapp-float:hover {
        transform: none !important;
    }
}/* End custom CSS */