/**
 * SnapHubb - Estilos para Elementor
 * Estilos CSS compatíveis com Elementor (versão clássica)
 */

/* Variáveis de cores */
:root {
  --primary-dark: #010A0F;
  --secondary-dark: #0D1619;
  --light-gray: #C4C2C2;
  --primary-red: #E50914;
  --primary-yellow: #ECBA12;
  --white: #FFFFFF;
}

/* Reset e estilos base */
body {
  font-family: 'Roboto', sans-serif;
  color: var(--white);
  background-color: var(--primary-dark);
  line-height: 1.6;
}

/* Estilos para texto neon */
.neon-text {
  color: var(--primary-red);
  text-shadow: 0 0 5px var(--primary-red);
  transition: text-shadow 0.3s ease;
}

.neon-text-yellow {
  color: var(--primary-yellow);
  text-shadow: 0 0 5px var(--primary-yellow);
}

/* Botões com efeito de brilho */
.btn-glow {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  overflow: hidden;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px var(--primary-red);
}

.btn-glow-yellow:hover {
  box-shadow: 0 0 10px var(--primary-yellow);
}

/* Gradientes animados */
.animated-gradient {
  background: linear-gradient(45deg, var(--primary-dark), var(--secondary-dark), var(--primary-red), var(--primary-yellow));
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Efeito de glass morphism */
.glass-effect {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}

/* Cartões com efeito hover */
.hover-card {
  transition: all 0.3s ease;
}

.hover-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Elementos flutuantes */
.floating-element {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Planos de preços */
.plan-card {
  background-color: var(--secondary-dark);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.2);
}

.plan-card.popular {
  border: 2px solid var(--primary-red);
  position: relative;
}

.plan-card.popular::before {
  content: "Popular";
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-red);
  color: var(--white);
  padding: 5px 15px;
  border-bottom-left-radius: 8px;
}

/* Cartões de depoimento */
.testimonial-card {
  background-color: rgba(13, 22, 25, 0.6);
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.testimonial-card::before {
  content: """;
  position: absolute;
  top: -15px;
  left: 10px;
  font-size: 60px;
  color: var(--primary-red);
  opacity: 0.5;
}

/* Seção FAQ */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.faq-question {
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}

.faq-answer {
  display: none;
  padding-top: 10px;
  color: var(--light-gray);
}

.faq-question.active + .faq-answer {
  display: block;
}

/* Ícones animados */
.icon-pulse {
  animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Barra de progresso */
.progress-bar {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar-fill {
  background-color: var(--primary-red);
  height: 100%;
  width: 0;
  transition: width 1s ease;
}

/* Utilitários responsivos */
@media (max-width: 768px) {
  .mobile-stack {
    flex-direction: column !important;
  }
  
  .mobile-full {
    width: 100% !important;
  }
  
  .mobile-center {
    text-align: center !important;
    display: flex;
    justify-content: center;
  }
  
  .mobile-hidden {
    display: none !important;
  }
}