/* ===================================
   EDNILSON FECHADURAS ELETRÔNICAS
   Premium Landing Page CSS
=================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #00c6ff;
  --primary-light: #61dafb;
  --primary-dark: #0072ff;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --green-wa: #25D366;
  --green-wa-dark: #128C7E;
  --dark-bg: #080e1a;
  --dark-surface: #0d1626;
  --dark-card: #111d33;
  --dark-border: rgba(0, 198, 255, 0.12);
  --text-primary: #f0f6ff;
  --text-secondary: #8ba0c0;
  --text-muted: #4a6080;
  --gradient-primary: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient-dark: linear-gradient(180deg, #080e1a 0%, #0d1626 100%);
  --glow-primary: 0 0 40px rgba(0, 198, 255, 0.3);
  --glow-accent: 0 0 40px rgba(245, 158, 11, 0.3);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-main: 'Outfit', sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.6));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-nav svg {
  width: 18px;
  height: 18px;
}

.btn-whatsapp-nav:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 60px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 198, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 198, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 114, 255, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  animation: float-particle 8s infinite linear;
  opacity: 0.4;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 10s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 8s; top: 20%; }
.particle:nth-child(3) { left: 50%; animation-delay: 4s; animation-duration: 12s; }
.particle:nth-child(4) { left: 70%; animation-delay: 1s; animation-duration: 9s; top: 40%; }
.particle:nth-child(5) { left: 85%; animation-delay: 3s; animation-duration: 11s; }
.particle:nth-child(6) { left: 40%; animation-delay: 5s; animation-duration: 7s; top: 60%; }

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 198, 255, 0.1);
  border: 1px solid rgba(0, 198, 255, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-wa);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 540px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn-primary svg {
  width: 22px;
  height: 22px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-secondary:hover svg {
  transform: translateY(3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-border);
}

/* Hero Image */
.hero-image-wrap {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 580px;
  z-index: 0;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(0, 198, 255, 0.15) 0%, transparent 70%);
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(0, 114, 255, 0.4));
  animation: float-img 6s ease-in-out infinite;
}

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

/* ===== TRUST BAR ===== */
.trust-bar {
  background: linear-gradient(90deg, rgba(0, 114, 255, 0.08) 0%, rgba(0, 198, 255, 0.08) 100%);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 20px 0;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-icon {
  font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 24px;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  background: rgba(0, 198, 255, 0.1);
  border: 1px solid rgba(0, 198, 255, 0.2);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 60px;
  max-width: 560px;
}

/* ===== STEPS ===== */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-card {
  flex: 1;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.step-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-card:nth-child(1) { transition-delay: 0s; }
.step-card:nth-child(3) { transition-delay: 0.15s; }
.step-card:nth-child(5) { transition-delay: 0.3s; }

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover {
  border-color: rgba(0, 198, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 114, 255, 0.2);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 198, 255, 0.15);
  font-family: var(--font-accent);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  flex-shrink: 0;
  position: relative;
}

.step-connector::after {
  content: '▶';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 0.7rem;
}

/* ===== PRODUTOS ===== */
.produtos {
  background: var(--dark-surface);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.produto-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  flex-direction: column;
}

.produto-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.produto-card:nth-child(1).in-view { transition-delay: 0s; }
.produto-card:nth-child(2).in-view { transition-delay: 0.15s; }
.produto-card:nth-child(3).in-view { transition-delay: 0.3s; }

.produto-card:hover {
  border-color: rgba(0, 198, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 114, 255, 0.2);
}

.produto-destaque {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, #111d33 0%, #1a1500 150%);
  position: relative;
}

.produto-destaque::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}

.produto-destaque:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 24px 60px rgba(245, 158, 11, 0.15);
}

.produto-badge {
  display: inline-flex;
  background: rgba(0, 198, 255, 0.1);
  border: 1px solid rgba(0, 198, 255, 0.2);
  color: var(--primary-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  width: fit-content;
}

.destaque-badge {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--accent-light);
}

.produto-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(0, 198, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 198, 255, 0.15);
  transition: var(--transition);
}

.produto-card:hover .produto-icon-wrap {
  background: rgba(0, 198, 255, 0.15);
  transform: scale(1.05);
}

.produto-destaque .produto-icon-wrap {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
}

.produto-icon {
  font-size: 2rem;
}

.produto-nome {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.produto-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.produto-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.produto-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.produto-features li:last-child {
  border-bottom: none;
}

.produto-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-wa);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  margin-top: auto;
}

.produto-btn svg {
  width: 18px;
  height: 18px;
}

.produto-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.produto-btn-destaque {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25);
}

.produto-btn-destaque:hover {
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

/* ===== PORQUE ===== */
.porque {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.porque-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0, 114, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.porque-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.porque-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diferencial-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
}

.diferencial-item.in-view {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.diferencial-item:nth-child(1).in-view { transition-delay: 0s; }
.diferencial-item:nth-child(2).in-view { transition-delay: 0.15s; }
.diferencial-item:nth-child(3).in-view { transition-delay: 0.3s; }

.diferencial-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 198, 255, 0.1);
  border: 1px solid rgba(0, 198, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.diferencial-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.diferencial-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Tech Image */
.tech-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.tech-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0, 114, 255, 0.3));
  border: 1px solid var(--dark-border);
}

.tech-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(13, 22, 38, 0.95);
  border: 1px solid rgba(0, 198, 255, 0.3);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.tech-badge-float span:first-child {
  font-size: 1.1rem;
}

.tech-badge-float span:last-child {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  background: var(--dark-surface);
}

.depos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depos-grid-2 {
  grid-template-columns: repeat(3, 1fr);
}

.depo-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.depo-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.depo-card:nth-child(1).in-view { transition-delay: 0s; }
.depo-card:nth-child(2).in-view { transition-delay: 0.15s; }
.depo-card:nth-child(3).in-view { transition-delay: 0.3s; }

.depo-card:hover {
  border-color: rgba(0, 198, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.depo-stars {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.depo-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.depo-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.depo-autor strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.depo-autor span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
  background: var(--dark-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-item.open {
  border-color: rgba(0, 198, 255, 0.3);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq-btn:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
  font-weight: 300;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer strong {
  color: var(--primary-light);
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 100px 24px;
  background: var(--dark-surface);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow-1 {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-glow-2 {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translate(50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-phone-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-10px) rotate(10deg); }
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-wa);
  color: white;
  text-decoration: none;
  padding: 20px 48px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.15rem;
  transition: var(--transition);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
  margin-bottom: 32px;
}

.btn-cta-final svg {
  width: 24px;
  height: 24px;
}

.btn-cta-final:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.5);
}

.cta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--dark-border);
  padding: 36px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: float-button 3s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@keyframes float-button {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 12px 50px rgba(37, 211, 102, 0.65); }
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 16px 50px rgba(37, 211, 102, 0.6);
}

.float-label {
  white-space: nowrap;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translate(60px, -50%); }
  to { opacity: 0.9; transform: translate(0, -50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-image-wrap {
    opacity: 0.2;
    right: -100px;
  }

  .porque-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .porque-right {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrap {
    display: none;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-connector {
    width: 2px;
    height: 30px;
    transform: rotate(90deg);
  }

  .step-connector::after {
    content: '▼';
    right: auto;
    left: 50%;
    top: auto;
    bottom: -10px;
    transform: translateX(-50%);
  }

  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .depos-grid,
  .depos-grid-2 {
    grid-template-columns: 1fr;
  }

  .trust-container {
    justify-content: center;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .float-label {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }

  .btn-whatsapp-nav span {
    display: none;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 70px 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
