.elementor-86 .elementor-element.elementor-element-467409c{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-86 .elementor-element.elementor-element-efd15f5.elementor-element{--align-self:center;}/* Start custom CSS for html, class: .elementor-element-efd15f5 *//* =============================================== */
/* CSS EXTERNO - PORTAL QUÂNTICO - Por Vini SEO     */
/* Otimizado para Core Web Vitals e Acessibilidade  */
/* =============================================== */

/* =============================================== */
/* VARIÁVEIS DE DESIGN QUÂNTICO - Por Vini SEO      */
/* =============================================== */
:root {
  --cosmic-black: #0b0c10;
  --quantum-blue: #1a2a3a;
  --golden-ratio: #d4af37;
  --phi-gold: #c9b037;
  --platinum-light: #e6e6e6;
  --quantum-violet: #8a2be2;
  --quantum-indigo: #4b0082;
  --quantum-green: #2e8b57;
  --quantum-orange: #ff8c00;
  --quantum-red: #dc143c;
  
  --spiral-gradient: linear-gradient(135deg, #1a2a3a 0%, #0b0c10 100%);
  --sacred-transition: all 0.618s cubic-bezier(0.77, 0, 0.175, 1);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Variáveis para tema escuro (default) */
  --bg-primary: #0b0c10;
  --bg-secondary: #1a2a3a;
  --text-primary: #e6e6e6;
  --text-accent: #d4af37;
  --border-accent: #c9b037;
  --effect-glow: 0 0 15px rgba(106, 176, 219, 0.5);
  --scrollbar-thumb: linear-gradient(135deg, #1a2a3a 0%, #0b0c10 50%, #1a2a3a 100%);
  --scrollbar-track: #0b0c10;
}

/* =============================================== */
/* TEMA CLARO - Variáveis específicas - Vini SEO    */
/* =============================================== */
.theme-light {
  --bg-primary: #f8f5f0;
  --bg-secondary: #e8e3d9;
  --text-primary: #2b2925;
  --text-accent: #3a5a78;
  --border-accent: #a18f5f;
  --effect-glow: 0 0 15px rgba(58, 90, 120, 0.3);
  --scrollbar-thumb: linear-gradient(135deg, #3a5a78 0%, #a18f5f 50%, #3a5a78 100%);
  --scrollbar-track: #e8e3d9;
}

/* =============================================== */
/* ESTRUTURA BASE - Otimizada por Vini SEO          */
/* =============================================== */
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 2rem;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.618;
}

/* =============================================== */
/* CONTAINER PRINCIPAL - Por Vini SEO               */
/* =============================================== */
main {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

/* Borda elegante para o conteúdo - Vini SEO */
main::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

/* =============================================== */
/* TIPOGRAFIA QUÂNTICA - Por Vini SEO              */
/* =============================================== */
h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--text-accent) 0%, var(--border-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Linha decorativa sob o título - Vini SEO */
h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--text-accent), transparent);
  opacity: 0.7;
}

/* =============================================== */
/* BOTÕES QUÂNTICOS - Acessíveis - Por Vini SEO    */
/* =============================================== */
.btn-quantum {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  background: var(--bg-secondary);
  cursor: pointer;
  transition: var(--sacred-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--effect-glow);
  margin: 1.5rem 0;
}

/* Efeito hover refinado - Vini SEO */
.btn-quantum::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(161, 143, 95, 0.2), transparent);
  transition: var(--sacred-transition);
  z-index: -1;
}

.btn-quantum:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-quantum:hover::before {
  left: 100%;
}

/* Contraste garantido para acessibilidade - Vini SEO */
.theme-light .btn-quantum {
  color: var(--bg-primary);
  background: var(--text-accent);
}

/* =============================================== */
/* BOTÃO DE TEMA - Acessível - Por Vini SEO        */
/* =============================================== */
.theme-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-accent);
  background-color: var(--bg-primary);
  color: var(--text-accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--sacred-transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Efeito hover alinhado à paleta - Vini SEO */
.theme-toggle:hover {
  background-color: var(--border-accent);
  color: var(--bg-primary);
  transform: scale(1.1) rotate(15deg);
}

/* =============================================== */
/* BARRA DE ROLAGEM - Luxo e Performance - Vini SEO */
/* =============================================== */
/* WebKit */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-left: 1px solid rgba(161, 143, 95, 0.1);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 6px;
  border: 2px solid var(--bg-primary);
  transition: var(--sacred-transition);
}

::-webkit-scrollbar-thumb:hover {
  opacity: 0.9;
  box-shadow: var(--effect-glow);
}

::-webkit-scrollbar-corner {
  background: var(--bg-primary);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--text-accent) var(--bg-primary);
}

/* =============================================== */
/* RESPONSIVIDADE QUÂNTICA - Por Vini SEO          */
/* =============================================== */
@media (max-width: 768px) {
  body {
    padding: 1.5rem;
  }
  
  main {
    padding: 2rem 1.5rem;
  }
  
  h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 480px) {
  main {
    padding: 1.5rem 1rem;
  }
  
  .btn-quantum {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
  }
}

/* =============================================== */
/* ACESSIBILIDADE - Prioridade Vini SEO            */
/* =============================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

@media (prefers-contrast: more) {
  h1 {
    background: none;
    color: var(--text-accent);
  }
  
  .btn-quantum {
    border-width: 2px;
  }
}

/* Estados de foco para acessibilidade - Vini SEO */
*:focus-visible {
  outline: 2px solid var(--text-accent);
  outline-offset: 3px;
}

/* =============================================== */
/* OTIMIZAÇÕES PARA CORE WEB VITALS - Vini SEO     */
/* =============================================== */
/* Priorize a renderização do conteúdo acima da dobra */
main > * {
  will-change: transform, opacity;
}

/* Otimização para animações - Vini SEO */
@media (prefers-reduced-motion: no-preference) {
  .btn-quantum {
    will-change: transform;
  }
}

/* =============================================== */
/* FIM DO CSS - POR VINI SEO (Vinícius França)     */
/* SEO Quântico | Web Design Consciente            */
/* https://viniseo.com                             */
/* =============================================== *//* End custom CSS */