.elementor-82 .elementor-element.elementor-element-ebbee54{--display:flex;}/* Start custom CSS for html, class: .elementor-element-18cae39 */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Outfit:wght@400;600;800&display=swap');

:root {
  --bg-color: #09090b;
  --text-main: #f4f4f5;
  --text-sec: #d4d4d8;
  --neon-cyan: #00f0ff;
  --neon-purple: #bc84ee;
  --border-subtle: rgba(255, 255, 255, 0.08);
}

body { background-color: var(--bg-color) !important; color: var(--text-main) !important; font-family: 'Inter', sans-serif !important; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }

/* AURAS FLUTUANTES */
.rv-ambient-1, .rv-ambient-2 { position: fixed; border-radius: 50%; filter: blur(120px); z-index: -1; opacity: 0.4; pointer-events: none; }
.rv-ambient-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%); animation: floatAura 10s infinite alternate ease-in-out; }
.rv-ambient-2 { bottom: -10%; right: -10%; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(188, 132, 238, 0.15) 0%, transparent 70%); animation: floatAura 15s infinite alternate-reverse ease-in-out; }
@keyframes floatAura { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(50px, 80px) scale(1.1); } }

/* TRAVA DE TIPOGRAFIA */
h1, h2, h3, .outfit { font-family: 'Outfit', sans-serif !important; margin: 0; }
h1 { line-height: 1.1 !important; }
h2 { line-height: 1.25 !important; margin-bottom: 20px !important; }
h3 { line-height: 1.3 !important; margin-bottom: 16px !important; }
p { line-height: 1.7 !important; margin-top: 0 !important; margin-bottom: 20px !important; color: var(--text-sec); font-size: 1.05rem !important; }
.rv-header-block p { margin-bottom: 48px !important; }

/* MENU FIXO SUPERIOR */
.rv-navbar {
  position: fixed; top: 0; left: 0; width: 100%; background: rgba(9, 9, 11, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  z-index: 999999 !important; display: flex; justify-content: space-between; align-items: center; padding: 12px 5%; border-bottom: 1px solid var(--border-subtle);
}
.rv-nav-logo img { max-width: 90px !important; height: auto !important; display: block; }
.rv-nav-links { display: flex; gap: 32px; align-items: center; }
.rv-nav-links a { color: var(--text-main); text-decoration: none; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem; transition: color 0.3s; }
.rv-nav-links a:hover { color: var(--neon-cyan); }
.rv-menu-btn { display: none; background: transparent; border: none; color: var(--text-main); font-size: 2rem; cursor: pointer; padding: 0; }

/* ----------------------------------------------------
   NOVO SISTEMA DE ANIMAÇÃO POR SCROLL
   ---------------------------------------------------- */
.animate-up { 
  opacity: 0; 
  transform: translateY(40px); 
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
/* A classe que o Javascript vai adicionar quando você rolar até o item */
.animate-up.is-visible { 
  opacity: 1; 
  transform: translateY(0); 
}
.delay-1 { transition-delay: 0.15s; } 
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

@keyframes floatBox { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
@keyframes glowPulse { 0%, 100% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.1); } 50% { box-shadow: 0 0 30px rgba(188, 132, 238, 0.3); } }

/* Utilitários Neon */
.neon-cyan { color: var(--neon-cyan); text-shadow: 0 0 12px rgba(0, 240, 255, 0.4); }
.neon-purple { color: var(--neon-purple); text-shadow: 0 0 12px rgba(188, 132, 238, 0.4); }

/* Estrutura Base */
.rv-container { max-width: 1200px; margin: 0 auto; padding: 140px 24px 60px 24px; }
.rv-header-block { text-align: center; max-width: 700px; margin: 0 auto; }

/* Botões e Badges (Supercola IA preparo) */
.rv-badge { display: inline-block !important; white-space: normal !important; line-height: 1.8 !important; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-sec); border: 1px solid var(--border-subtle); background: rgba(255, 255, 255, 0.02); padding: 8px 20px; border-radius: 30px; margin-bottom: 24px; }
.rv-btn { display: inline-block; padding: 16px 36px; background: transparent; color: var(--text-main); font-family: 'Outfit', sans-serif; font-weight: 600; text-decoration: none; border: 1px solid var(--neon-cyan); border-radius: 50px; transition: all 0.4s ease; animation: glowPulse 4s infinite; }
.rv-btn:hover { border-color: var(--neon-purple); transform: translateY(-3px); }

/* HERO SECTION (Blindagem contra imagem vazia) */
.rv-hero { display: grid !important; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; min-height: 90vh; width: 100%; }
.rv-hero-content { width: 100%; }
.rv-hero-title { font-size: clamp(2.8rem, 5vw, 5rem); letter-spacing: -1px; margin-bottom: 24px !important; }
.rv-hero-image { width: 100%; display: flex !important; justify-content: flex-end; animation: floatBox 6s ease-in-out infinite; }
.rv-hero-image img { width: 100%; max-width: 550px; display: block !important; visibility: visible !important; opacity: 1 !important; border-radius: 24px; object-fit: cover; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

/* GRIDS E CARDS */
.rv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 48px; }
.rv-card { background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(12px); border: 1px solid var(--border-subtle); padding: 40px 32px; border-radius: 20px; transition: all 0.4s; }
.rv-card:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(0, 240, 255, 0.3); transform: translateY(-8px); }
.rv-card-premium { border-color: rgba(188, 132, 238, 0.4); background: linear-gradient(145deg, rgba(188, 132, 238, 0.05) 0%, rgba(0,0,0,0) 100%); }

/* VITRINE COM IMAGENS */
.rv-showcase-grid { display: flex; flex-direction: column; gap: 80px; margin-top: 56px; }
.rv-showcase-item { display: flex; align-items: center; gap: 48px; }
.rv-showcase-item.reverse { flex-direction: row-reverse; }
.rv-showcase-content { flex: 1 1 50%; border-left: 4px solid var(--neon-cyan); padding-left: 32px; }
.rv-showcase-item.reverse .rv-showcase-content { border-left: none; border-right: 4px solid var(--neon-purple); padding-left: 0; padding-right: 32px; text-align: right; }
.rv-showcase-image { flex: 1 1 50%; }
.rv-showcase-image img { width: 100%; border-radius: 16px; display: block; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 1px solid var(--border-subtle); }

/* GALERIA PORTFÓLIO */
.rv-portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.rv-portfolio-img { border-radius: 16px; overflow: hidden; border: 1px solid var(--border-subtle); height: 280px; }
.rv-portfolio-img img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.8; transition: all 0.4s; }
.rv-portfolio-img:hover img { opacity: 1; transform: scale(1.05); }

/* RODAPÉ E CONTATO */
.rv-footer { border-top: 1px solid var(--border-subtle); padding: 80px 24px 20px 24px; text-align: center; background: #050505; }
.rv-footer-links { display: flex; justify-content: center; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.rv-footer-links a { color: var(--text-sec); text-decoration: none; font-size: 1.1rem; }
.rv-footer-copy { margin-top: 100px !important; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px !important; font-size: 0.85rem !important; color: #666 !important; }

/* =========================================
   BLINDAGEM RESPONSIVA E MENU MOBILE
   ========================================= */
@media (max-width: 900px) {
  .rv-badge { font-size: 0.85rem !important; } /* Correção 2: Badge maior no celular */
  .rv-navbar { padding: 16px 20px; }
  .rv-nav-logo img { max-width: 80px !important; }
  .rv-menu-btn { display: block; } 
  
  .rv-nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: rgba(9, 9, 11, 0.98); border-bottom: 1px solid var(--border-subtle); flex-direction: column; padding: 10px 0; display: none; }
  .rv-nav-links.active { display: flex; }
  
  /* Correção 3: Alvo de toque grande no menu */
  .rv-nav-links a { font-size: 1.3rem !important; padding: 16px 24px !important; display: block !important; width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.02); }
  
  .rv-hero { grid-template-columns: 1fr !important; text-align: center; gap: 40px; padding-top: 160px !important; } 
  .rv-hero-title { font-size: 2.8rem !important; }
  .rv-hero-image { justify-content: center !important; }
  
  .rv-container { padding: 120px 20px 40px 20px; }
  .rv-showcase-item, .rv-showcase-item.reverse { flex-direction: column !important; gap: 32px; }
  .rv-showcase-content, .rv-showcase-item.reverse .rv-showcase-content { border-left: none !important; border-right: none !important; border-top: 4px solid var(--neon-cyan); padding: 24px 0 0 0 !important; text-align: left !important; width: 100%; flex: 1 1 auto; }
  .rv-showcase-item.reverse .rv-showcase-content { border-top-color: var(--neon-purple); }
  .rv-showcase-image { width: 100%; flex: 1 1 auto; }
  .rv-footer { padding: 60px 20px 20px 20px; }
  .rv-footer-links { flex-direction: column; gap: 16px; }
}/* End custom CSS */