/* ========================================
   TROBO - Estilos Globais para WordPress/Elementor
   ======================================== */

/* Variáveis CSS — Trobo Brand Book v1.0 */
:root {
  /* Cores Institucionais (Brand Book p.11) */
  --azul-trobo: #2056df;         /* Azul Trobo — 50% uso */
  --azul-primario: #2056df;      /* Alias p/ compatibilidade */
  --azul-escuro: #183277;        /* Azul Escuro — 20% uso */
  --verde-teal: #00c8c8;         /* Verde Teal — 20% uso */
  --branco: #FFFFFF;             /* Branco */

  /* Derivadas (compatibilidade) */
  --azul-medio: #1B3E97;
  --azul-claro: #3B82F6;
  --azul-light: #DBEAFE;
  --azul-bg: #EFF6FF;
  --azul-web: #183277;
  --verde: #10B981;
  --verde-escuro: #059669;
  --verde-light: #D1FAE5;
  --ouro: #efab44;
  --ouro-light: #FEF3C7;
  --preto: #183277;
  --cinza-900: #111827;
  --cinza-700: #374151;
  --cinza-500: #6B7280;
  --cinza-300: #D1D5DB;
  --cinza-100: #F3F4F6;
  --cinza-50: #F9FAFB;
}

/* Reset básico */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--cinza-700);
  line-height: 1.5;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */
/* Hierarquia Tipografica (Brand Book p.12) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--azul-escuro);
  line-height: 1.2;
}
h1 { font-weight: 700; line-height: 1.2; }  /* 32-48px */
h2 { font-weight: 700; line-height: 1.3; }  /* 20-24px */
h3 { font-weight: 600; line-height: 1.4; }  /* 16-18px */
h4, h5, h6 { font-weight: 600; }

.trobo-highlight { color: var(--ouro) !important; }
.trobo-primary { color: var(--azul-primario) !important; }
.trobo-green { color: var(--verde) !important; }

/* ========================================
   BOTÕES TROBO
   ======================================== */
.trobo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.trobo-btn-primary {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
  color: var(--branco);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.trobo-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
  color: var(--branco);
}

.trobo-btn-secondary {
  background: transparent;
  color: var(--branco);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.trobo-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.trobo-btn-ouro {
  background: linear-gradient(135deg, var(--ouro) 0%, #d4922e 100%);
  color: var(--branco);
  box-shadow: 0 4px 15px rgba(239, 171, 68, 0.3);
}

.trobo-btn-ouro:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(239, 171, 68, 0.4);
}

/* ========================================
   HEADER TROBO
   ======================================== */
.trobo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--branco);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.trobo-header.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.trobo-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--azul-primario);
  text-decoration: none;
}

.trobo-logo span { color: var(--ouro); }

.trobo-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cinza-700);
  text-decoration: none;
  padding: 8px 16px;
  transition: color 0.2s;
}

.trobo-nav a:hover { color: var(--azul-primario); }

/* ========================================
   HERO SECTIONS
   ======================================== */
.trobo-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--azul-claro) 0%, var(--azul-primario) 50%, var(--azul-escuro) 100%);
  position: relative;
  overflow: hidden;
}

.trobo-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.trobo-hero-content {
  color: var(--branco);
  max-width: 600px;
}

.trobo-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.trobo-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--branco) !important;
}

.trobo-hero-title span {
  display: block;
  font-size: 52px;
  font-weight: 700;
  color: var(--ouro) !important;
  margin-top: 8px;
}

.trobo-hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* ========================================
   MOCKUP DO DASHBOARD
   ======================================== */
.trobo-mockup {
  background: var(--branco);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.trobo-mockup:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.trobo-mockup-topbar {
  background: var(--cinza-100);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--cinza-300);
}

.trobo-mockup-dots {
  display: flex;
  gap: 6px;
}

.trobo-mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.trobo-mockup-dots span:nth-child(1) { background: #EF4444; }
.trobo-mockup-dots span:nth-child(2) { background: #F59E0B; }
.trobo-mockup-dots span:nth-child(3) { background: #10B981; }

.trobo-mockup-content {
  padding: 24px;
  min-height: 300px;
}

/* Métricas do Dashboard */
.trobo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.trobo-metric-card {
  background: var(--cinza-50);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.trobo-metric-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--cinza-500);
  margin-bottom: 8px;
}

.trobo-metric-value {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--preto);
}

.trobo-metric-value.green { color: var(--verde); }
.trobo-metric-value.blue { color: var(--azul-primario); }

.trobo-metric-change {
  font-size: 12px;
  font-weight: 600;
  color: var(--verde);
  margin-top: 4px;
}

/* Gráfico de barras */
.trobo-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding-top: 20px;
}

.trobo-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--azul-claro) 0%, var(--azul-primario) 100%);
  border-radius: 6px 6px 0 0;
  transition: transform 0.3s ease;
}

.trobo-chart-bar:hover {
  transform: scaleY(1.05);
}

/* Cards flutuantes */
.trobo-float-card {
  position: absolute;
  background: var(--branco);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.trobo-float-card.top { top: 20%; right: -10%; animation-delay: 0s; }
.trobo-float-card.bottom { bottom: 20%; left: -10%; animation-delay: 1.5s; }

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

.trobo-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--branco);
}

.trobo-float-icon.ouro { background: linear-gradient(135deg, var(--ouro), #d4922e); }
.trobo-float-icon.green { background: linear-gradient(135deg, var(--verde), var(--verde-escuro)); }
.trobo-float-icon.blue { background: linear-gradient(135deg, var(--azul-claro), var(--azul-primario)); }

/* ========================================
   SEÇÕES DE FEATURES
   ======================================== */
.trobo-features-section {
  padding: 100px 0;
  background: var(--branco);
}

.trobo-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.trobo-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--azul-primario);
  margin-bottom: 16px;
}

.trobo-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 20px;
}

.trobo-section-subtitle {
  font-size: 18px;
  color: var(--cinza-500);
  line-height: 1.7;
}

/* Feature Cards */
.trobo-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trobo-feature-card {
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.trobo-feature-card:hover {
  border-color: var(--azul-light);
  box-shadow: 0 20px 50px rgba(27, 74, 177, 0.1);
  transform: translateY(-8px);
}

.trobo-feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--azul-light) 0%, var(--azul-bg) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--azul-primario);
  margin-bottom: 24px;
}

.trobo-feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 12px;
}

.trobo-feature-desc {
  font-size: 15px;
  color: var(--cinza-500);
  line-height: 1.7;
}

/* ========================================
   SEÇÃO DE AGENTES IA
   ======================================== */
.trobo-ai-section {
  background: linear-gradient(135deg, var(--azul-web) 0%, var(--azul-escuro) 100%);
  padding: 100px 0;
  color: var(--branco);
  text-align: center;
}

.trobo-ai-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 24px;
}

.trobo-ai-logo span { color: var(--ouro); }

.trobo-ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.trobo-ai-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.trobo-ai-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.trobo-ai-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--ouro), #d4922e);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--branco);
  margin: 0 auto 16px;
}

/* ========================================
   SEÇÃO DE PREÇOS
   ======================================== */
.trobo-pricing-section {
  padding: 100px 0;
  background: var(--cinza-50);
}

.trobo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.trobo-pricing-card {
  background: var(--branco);
  border: 2px solid var(--cinza-200);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.trobo-pricing-card:hover {
  border-color: var(--azul-primario);
  box-shadow: 0 20px 60px rgba(27, 74, 177, 0.15);
}

.trobo-pricing-card.featured {
  border-color: var(--azul-primario);
  box-shadow: 0 20px 60px rgba(27, 74, 177, 0.2);
  transform: scale(1.05);
}

.trobo-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ouro), #d4922e);
  color: var(--branco);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.trobo-pricing-name {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 8px;
}

.trobo-pricing-desc {
  font-size: 14px;
  color: var(--cinza-500);
  margin-bottom: 24px;
}

.trobo-pricing-price {
  margin-bottom: 24px;
}

.trobo-pricing-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--cinza-700);
  vertical-align: top;
}

.trobo-pricing-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--preto);
}

.trobo-pricing-period {
  font-size: 14px;
  color: var(--cinza-500);
}

.trobo-pricing-features {
  border-top: 1px solid var(--cinza-200);
  padding-top: 24px;
  margin-bottom: 24px;
}

.trobo-pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--cinza-700);
  padding: 8px 0;
}

.trobo-pricing-features li i {
  color: var(--azul-primario);
  font-size: 12px;
}

/* ========================================
   FOOTER TROBO
   ======================================== */
.trobo-footer {
  background: var(--cinza-900);
  color: var(--branco);
  padding: 80px 0 40px;
}

.trobo-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.trobo-footer-brand {
  max-width: 280px;
}

.trobo-footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--branco);
  margin-bottom: 16px;
}

.trobo-footer-logo span { color: var(--ouro); }

.trobo-footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.trobo-footer-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trobo-footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}

.trobo-footer-links a:hover { color: var(--branco); }

.trobo-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ========================================
   CTA SECTION
   ======================================== */
.trobo-cta-section {
  background: linear-gradient(135deg, var(--azul-web) 0%, var(--azul-escuro) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--branco);
}

.trobo-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--branco) !important;
}

.trobo-cta-subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   ANIMAÇÕES AVANÇADAS
   ======================================== */

/* Header SEMPRE visível - Não animar */
[data-id="header001"],
[data-id="header001"] *,
.elementor-section[style*="position: fixed"],
.elementor-section[style*="position:fixed"],
[data-id^="header"] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Padding para compensar header fixo */
body.elementor-page,
body.elementor-default {
  padding-top: 80px;
}

/* Fade In Up - Apenas para conteúdo (não header/footer) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Elementos do Elementor - Apenas se tiver classe animate */
.elementor-section.trobo-animate,
.elementor-widget.trobo-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.elementor-section.trobo-animate.visible,
.elementor-widget.trobo-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations for children - apenas com classe trobo-animate */
.elementor-section.trobo-animate.visible .elementor-widget:nth-child(1) { transition-delay: 0.1s; }
.elementor-section.trobo-animate.visible .elementor-widget:nth-child(2) { transition-delay: 0.2s; }
.elementor-section.trobo-animate.visible .elementor-widget:nth-child(3) { transition-delay: 0.3s; }
.elementor-section.trobo-animate.visible .elementor-widget:nth-child(4) { transition-delay: 0.4s; }
.elementor-section.trobo-animate.visible .elementor-widget:nth-child(5) { transition-delay: 0.5s; }

/* Fade In Left */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade In Right */
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale In */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(16, 185, 129, 0.6); }
}

.trobo-btn-primary,
.elementor-button-wrapper .elementor-button {
  animation: pulse 2s infinite;
}

.trobo-btn-primary:hover,
.elementor-button-wrapper .elementor-button:hover {
  animation: none;
}

/* Gradient animation for hero */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.trobo-hero,
.elementor-section[data-settings*="gradient"] {
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
}

/* Float animation enhanced */
@keyframes floatEnhanced {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }
  25% { transform: translateY(-8px) rotate(1deg); }
  50% {
    transform: translateY(-15px) rotate(0deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }
  75% { transform: translateY(-8px) rotate(-1deg); }
}

.trobo-float-card {
  animation: floatEnhanced 4s ease-in-out infinite;
}

/* Shimmer effect for cards */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.trobo-feature-card::before,
.elementor-widget-icon-box .elementor-icon-box-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: inherit;
}

.trobo-feature-card:hover::before,
.elementor-widget-icon-box:hover .elementor-icon-box-wrapper::before {
  opacity: 1;
  animation: shimmer 1.5s infinite;
}

/* Icon bounce on hover */
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.trobo-feature-icon:hover,
.elementor-icon-box-icon:hover {
  animation: iconBounce 0.5s ease;
}

/* Typing cursor */
@keyframes blink {
  0%, 50% { border-color: transparent; }
  51%, 100% { border-color: var(--ouro); }
}

.trobo-typing::after {
  content: '';
  border-right: 2px solid var(--ouro);
  animation: blink 1s infinite;
}

/* Glow effect for highlighted text */
@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(239, 171, 68, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(239, 171, 68, 0.6),
                 0 0 40px rgba(239, 171, 68, 0.3);
  }
}

.trobo-highlight,
.elementor-heading-title span[style*="color:#efab44"],
.elementor-heading-title span[style*="color: #efab44"] {
  animation: glow 3s ease-in-out infinite;
}

/* Button hover lift effect */
.elementor-button-wrapper .elementor-button,
.trobo-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.elementor-button-wrapper .elementor-button::before,
.trobo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.elementor-button-wrapper .elementor-button:hover::before,
.trobo-btn:hover::before {
  left: 100%;
}

.elementor-button-wrapper .elementor-button:hover,
.trobo-btn:hover {
  transform: translateY(-4px);
}

/* Card 3D tilt effect */
.trobo-feature-card,
.elementor-widget-icon-box {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Smooth section transitions */
.elementor-section {
  position: relative;
}

/* Parallax background elements */
.parallax-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.parallax-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

/* Stats counter highlight */
@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.elementor-counter-number-wrapper {
  animation: countPulse 2s ease-in-out;
}

/* Link underline animation */
.trobo-nav a,
.elementor-nav-menu a {
  position: relative;
}

.trobo-nav a::after,
.elementor-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--azul-primario);
  transition: width 0.3s ease;
}

.trobo-nav a:hover::after,
.elementor-nav-menu a:hover::after {
  width: 100%;
}

/* Accordion smooth animation */
.elementor-accordion-item {
  transition: all 0.3s ease;
}

.elementor-accordion-item:hover {
  background: var(--cinza-50);
}

.elementor-tab-title {
  transition: all 0.3s ease;
}

.elementor-tab-content {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image hover zoom */
.elementor-image img {
  transition: transform 0.5s ease;
}

.elementor-image:hover img {
  transform: scale(1.05);
}

/* Social icons bounce */
.elementor-social-icon {
  transition: all 0.3s ease;
}

.elementor-social-icon:hover {
  transform: translateY(-5px) scale(1.1);
}

/* Progress bar animation */
@keyframes progressFill {
  from { width: 0; }
}

.elementor-progress-bar {
  animation: progressFill 1.5s ease-out;
}

/* Testimonial card slide */
.elementor-testimonial-wrapper {
  transition: all 0.5s ease;
}

.elementor-testimonial-wrapper:hover {
  transform: translateX(5px);
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 1024px) {
  .trobo-features-grid { grid-template-columns: repeat(2, 1fr); }
  .trobo-ai-grid { grid-template-columns: repeat(2, 1fr); }
  .trobo-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .trobo-pricing-card.featured { transform: none; }
  .trobo-footer-grid { grid-template-columns: repeat(3, 1fr); }
  .trobo-hero-title { font-size: 36px; }
  .trobo-hero-title span { font-size: 44px; }
}

@media (max-width: 768px) {
  .trobo-hero { padding: 100px 0 60px; min-height: auto; }
  .trobo-hero-title { font-size: 28px; }
  .trobo-hero-title span { font-size: 36px; }
  .trobo-section-title { font-size: 32px; }
  .trobo-features-grid { grid-template-columns: 1fr; }
  .trobo-ai-grid { grid-template-columns: 1fr; }
  .trobo-footer-grid { grid-template-columns: 1fr 1fr; }
  .trobo-mockup { transform: none; }
  .trobo-float-card { display: none; }
  .trobo-metrics { grid-template-columns: 1fr; }
}
