:root {
  --brand-a: #52e0b7;
  --brand-b: #007acc;
  --g: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  --btn-g: linear-gradient(90deg, var(--brand-a), var(--brand-b));
  --bg: #ffffff;
  --surface: #ffffff;
  --muted: #f6f8fb;
  --text: #0f172a;
  --text-2: #475569;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
}

/* Estilo para mensagens de erro do formulário */
.error-message {
  color: var(--danger);
  font-size: 0.8em; /* 4 pontos menor */
  font-style: italic;
  margin-top: 4px;
}

/* Estilo para checkbox com erro */
.checkbox-group.error label {
  color: var(--danger);
}

.checkbox-group.error .error-message {
  display: block;
  margin-left: 25px;
}

.dark {
  --bg: #0b1117;
  --surface: #0f1620;
  --muted: #0a0f16;
  --text: #e6edf3;
  --text-2: #a8b3bf;
  --border: #1f2a37;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-padding-top: 65px; /* Ajustado para o novo tamanho do header */
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container { width: min(1120px, 92%); margin-inline: auto; }

/* GRID SYSTEM */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* HEADER & NAVIGATION */
.header {
  position: sticky;
  top: 0;
  padding: 5px 0;
  background: var(--bg);
  box-shadow: 0 1px 0 var(--border);
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px; /* Reduzido para a nova altura da logo */
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 18px;
  height: 45px; /* Reduzido para acomodar a logo menor */
  overflow: hidden; /* Para recortar a imagem */
}

.logo img {
  height: auto;
  width: auto;
  max-width: 108px; /* 30% de 360px */
  object-fit: contain; /* Alterado para contain para manter a proporção */
  object-position: center; /* Centraliza a imagem */
  transform: scale(1); /* Reset do scale para o novo tamanho */
}

/* Menu Desktop */
.menu-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-desktop a {
  font-weight: 500;
  transition: color 0.2s;
}

.menu-desktop a:hover {
  color: var(--brand-a);
}

/* Menu Mobile */
/* Menu Mobile - Veja mobile-menu.css para estilos completos */

/* Media query para dispositivos móveis */
@media (max-width: 768px) {
  .menu-desktop {
    display: none;
  }
  
  .menu-mobile-trigger {
    display: block;
  }
  
  .header {
    padding: 5px 0;
  }
  
  .logo img {
    max-width: 100px; /* Ajustando a logo para mobile */
  }
  
  .menu-mobile-items a.btn-gradient {
    padding: 12px 24px;
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-gradient {
  background: var(--btn-g);
  color: white;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-gradient:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--brand-b), var(--brand-a));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 122, 204, 0.2);
}

.btn-gradient:hover:before {
  opacity: 1;
}

.btn-outline-nav {
  background: transparent;
  border: 1px solid var(--brand-b);
  color: var(--brand-b);
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.2s;
  margin-right: 10px;
  font-weight: 500;
}

.btn-outline-nav:hover {
  background: rgba(0, 122, 204, 0.1);
  transform: translateY(-2px);
}
  width: 100%;
  height: 100vh;
  background: var(--surface);
  z-index: 1001;
  padding: 20px;
  flex-direction: column;
}

.menu-mobile.active {
  display: flex;
}

.menu-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.menu-mobile-close {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 5px;
}

.menu-mobile-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-mobile-items a {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.menu-mobile-items a:last-child {
  margin-top: 20px;
  border-bottom: none;
}

.btn-outline-nav {
  background: transparent;
  border: 1px solid var(--brand-b);
  color: var(--brand-b);
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.2s;
  margin-right: 10px;
  font-weight: 500;
}

.btn-outline-nav:hover {
  background: rgba(0, 122, 204, 0.1);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--text);
}

.btn-outline {
  border: 1px solid var(--border);
}

/* HERO SECTION */
.section-hero {
  padding: 80px 0 60px;
  overflow: hidden;
  background-color: var(--bg); /* Adicionado para garantir consistência */
}

.hero-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible; /* Alterado de hidden para visible */
  padding-bottom: 15px; /* Adicionado padding para compensar o movimento */
}

.hero-image img {
  max-width: 120%; /* Aumentado de 100% para 120% */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  transform: scale(1.1); /* Aumentado de 1.05 para 1.1 */
  transition: transform 0.8s ease;
  background-color: var(--bg); /* Adicionado para combinar com o fundo */
  padding-bottom: 15px; /* Adicionado espaço extra na parte inferior */
}

.hero-image:hover img {
  transform: scale(1.15); /* Aumentado de 1.1 para 1.15 */
}

.hero-img-spotlight {
  position: relative;
  border-radius: 16px;
  transition: all 0.5s ease;
}

.hero-img-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(82, 224, 183, 0.3) 0%, rgba(0, 122, 204, 0.1) 70%, transparent 100%);
  border-radius: 16px;
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.hero-img-spotlight:hover::before {
  opacity: 0.4;
}

.kicker {
  display: inline-block;
  padding: 6px 12px;
  background: var(--muted);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

h1, .hero-title {
  font-family: Poppins, Inter, system-ui;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 720px;
  margin-bottom: 32px;
}

.hero .cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.metrics {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}

.metric {
  text-align: center;
}

.metric b {
  font-size: 2rem;
  color: var(--brand-b);
  display: block;
  line-height: 1;
}

.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.feature {
  background: var(--muted);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}

/* SECTIONS */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

h2 {
  font-family: Poppins, Inter, system-ui;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  text-align: center;
}

.section > p {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
}

.muted {
  color: var(--text-2);
}

/* CARDS */
.card {
  background: var(--surface);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--btn-g);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card:hover:before {
  width: 100%;
  opacity: 0.05;
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  background: var(--muted);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-bottom: 16px;
  font-size: 1.4rem;
  position: relative;
}

.card h3:after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--btn-g);
  margin-top: 12px;
  border-radius: 2px;
}

.problem-highlight {
  margin-top: 24px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
  color: var(--danger);
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.1);
}

/* CTA SECTIONS */
.cta-mid {
  text-align: left;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 0;
  background: var(--muted);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-mid:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-box-highlight {
  background: linear-gradient(135deg, rgba(82, 224, 183, 0.1), rgba(0, 122, 204, 0.1));
}

.cta-box-alternate {
  background: linear-gradient(135deg, rgba(0, 122, 204, 0.1), rgba(82, 224, 183, 0.1));
}

.cta-mid-content {
  padding: 40px;
  flex: 1;
}

.cta-mid h3 {
  margin-bottom: 16px;
  font-size: 1.8rem;
  background: var(--g);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-mid p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text-2);
}

.accent-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--g);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accent-tag-urgent {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
}

.cta-mid-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-b);
  color: var(--brand-b);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  background: rgba(0, 122, 204, 0.1);
  transform: translateY(-2px);
}

.cta-mid-badge {
  width: 200px;
  background: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-mid-badge::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  top: -50%;
  left: -50%;
}

.badge-content {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.badge-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.badge-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.cta-mid-counters {
  display: flex;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.counter-item {
  text-align: center;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.counter-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--g);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.counter-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-2);
  margin-top: 4px;
}

.cta-final {
  background: linear-gradient(135deg, var(--brand-b), var(--brand-a));
  color: white;
  padding: 64px 48px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 150px 150px;
  opacity: 0.3;
}

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

.cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
}

.cta-benefit {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
}

.cta-guarantee {
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.cta-social-proof {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* DEMO SECTION */
.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: center;
}

.benefits-list {
  list-style: none;
  margin: 24px 0;
}

.benefits-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.dashboard {
  background: var(--surface);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.dashboard h4 {
  margin-bottom: 24px;
  font-size: 1.2rem;
  text-align: center;
}

.dashboard-metrics {
  display: flex;
  justify-content: space-around;
  margin-bottom: 24px;
}

.dash-metric {
  text-align: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-2);
}

.dashboard-agents {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.agent {
  padding: 12px 16px;
  margin-bottom: 8px;
  background: var(--muted);
  border-radius: 6px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}

.agent.active span {
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 600;
}

/* AGENTS SECTION */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 50px 0 40px;
}

.agent-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.agent-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.agent-image {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(82, 224, 183, 0.05), rgba(0, 122, 204, 0.05));
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.agent-image img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.agent-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.agent-info h3 {
  margin: 0 0 5px;
  font-size: 1.5rem;
  background: var(--g);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.agent-role {
  font-weight: 600;
  color: var(--brand-b);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.agent-info p {
  color: var(--text-2);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.agent-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.agent-skills span {
  background: linear-gradient(135deg, rgba(82, 224, 183, 0.1), rgba(0, 122, 204, 0.1));
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brand-b);
}

.custom-agent-card {
  background: linear-gradient(135deg, rgba(82, 224, 183, 0.05), rgba(0, 122, 204, 0.05));
  border: 2px dashed rgba(0, 122, 204, 0.3);
}

.custom-agent-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(82, 224, 183, 0.1), rgba(0, 122, 204, 0.1));
}

.plus-icon {
  font-size: 5rem;
  font-weight: 300;
  color: var(--brand-b);
  opacity: 0.6;
  line-height: 1;
}

.custom-agent-card:hover .plus-icon {
  transform: scale(1.1) rotate(90deg);
  transition: transform 0.5s ease;
}

.btn-sm {
  padding: 8px 16px;
  margin-top: 15px;
  font-size: 0.9rem;
  width: 100%;
}

@media (max-width: 1100px) {
  .agents-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 940px) {
  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .agents-grid {
    grid-template-columns: 1fr;
  }
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.quote {
  background: var(--surface);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin: 0;
  position: relative;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--g);
}

.quote:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.quote-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.quote-icon {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 4rem;
  background: var(--g);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

blockquote {
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.testimonial-result {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(0, 122, 204, 0.1));
  color: var(--success);
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 3px solid var(--success);
}

.who {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 2px solid white;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-info strong {
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.9rem;
  color: var(--text-2);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  max-width: 720px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-2);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.center-cta {
  text-align: center;
  margin-top: 40px;
}

.center-cta .btn {
  padding: 14px 32px;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.popular {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary);
}

.popular-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header {
  padding: 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-header p {
  color: var(--text-2);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.price {
  margin-bottom: 16px;
}

.currency {
  font-size: 1.2rem;
  vertical-align: top;
  font-weight: 500;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.period {
  font-size: 0.9rem;
  color: var(--text-2);
}

.pricing-trial {
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-2);
}

.pricing-features {
  padding: 32px;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 28px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.pricing-addons {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.pricing-addons h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.pricing-addons ul {
  margin-bottom: 0;
}

.pricing-addons li {
  padding-left: 0;
  font-size: 0.9rem;
  color: var(--text-2);
}

.pricing-addons li::before {
  display: none;
}

/* FOOTER */
footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 20px;
}

.footer-logo img {
  height: auto;
  width: auto;
  max-width: 40px;
  border-radius: 50%;
  display: block;
}

.powered-by {
  text-align: right;
  font-size: 0.9rem;
}

.powered-by strong {
  font-size: 1.1rem;
  display: block;
  margin: 4px 0;
}

.powered-by small {
  font-size: 0.8rem;
  color: var(--text-2);
}

footer p {
  text-align: center;
  font-size: 0.9rem;
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* TEXTO COM GRADIENTE */
.gradient-text {
  background: var(--g);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
}

.gradient-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--g);
  border-radius: 3px;
}

/* RESPONSIVO */
@media (max-width: 940px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3, .testimonials, .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .demo-container {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .hero {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    text-align: center;
    order: 2;
  }
  
  .hero-image {
    order: 1;
    margin: 0 auto;
    max-width: 90%;
  }
  
  .hero .cta {
    justify-content: center;
  }
  
  .metrics {
    justify-content: center;
  }
  
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  nav a {
    margin: 5px;
  }
  
  .logo img {
    max-height: 60px;
    max-width: 280px;
  }
  
  .cta-mid {
    flex-direction: column;
  }
  
  .cta-mid-badge {
    width: 100%;
    padding: 20px 0;
  }
  
  .cta-mid-actions {
    flex-direction: column;
  }
  
  .foot {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  
  .powered-by {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .grid-2, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero .cta {
    flex-direction: column;
  }
  
  .metrics, .cta-benefits {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-final {
    padding: 32px 24px;
  }
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-button::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  top: -60px;
  right: 0;
  background: white;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 24px;
  width: 16px;
  height: 16px;
  background: white;
  transform: rotate(45deg);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.05);
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MODAL DE CADASTRO DE LEAD */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  overflow-y: auto;
  padding: 30px 0;
}

.modal-content {
  background-color: var(--surface);
  margin: 0 auto;
  max-width: 550px;
  width: 90%;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  padding: 40px;
  position: relative;
  animation: modalFadeIn 0.4s ease-out;
}

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

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: 300;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal:hover {
  background: var(--muted);
  color: var(--text);
}

.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  text-align: left;
}

.modal-content > p {
  margin-bottom: 30px;
  text-align: left;
  font-size: 1rem;
  color: var(--text-2);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-step {
  transition: all 0.3s ease;
}

.form-step.hidden {
  display: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  transition: all 0.2s;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.checkbox-item label {
  font-weight: 400;
  margin: 0;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.form-actions .btn {
  flex: 1;
}

.modal-link {
  color: var(--primary);
  text-decoration: underline;
}

.form-notice {
  margin: 16px 0;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-2);
  border-left: 3px solid var(--success);
}

.btn-full {
  width: 100%;
  margin-top: 10px;
  justify-content: center;
  padding: 14px;
  font-size: 1.05rem;
}

.modal-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-2);
}

.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.success-message svg {
  margin-bottom: 20px;
}

.success-message h3 {
  color: var(--success);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.success-message p {
  margin-bottom: 30px;
}

.next-steps {
  background: var(--muted);
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  margin-bottom: 30px;
  width: 100%;
}

.next-steps h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text);
}

.next-steps ol {
  padding-left: 24px;
  margin: 0;
}

.next-steps li {
  margin-bottom: 10px;
  padding-left: 8px;
}

.next-steps li:last-child {
  margin-bottom: 0;
}

#contato-preferido {
  font-weight: 600;
  color: var(--primary);
}

.btn-success {
  background: var(--success);
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-success:hover {
  background: #0da271;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button svg {
    width: 22px;
    height: 22px;
  }
}

/* Estilos do Rodapé */
.footer {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo .logo-img {
  height: 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links p {
  color: var(--text-2);
  font-size: 0.875rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link svg {
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.2);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-links {
    align-items: flex-end;
  }
}

/* Texto com cores especiais */
.text-danger {
  color: var(--danger);
}

/* Efeitos de animação para a seção hero */
.bounce-animation {
  animation: bounce 6s ease-in-out infinite;
}

.bounce-animation-delay-1 {
  animation: bounce 5s ease-in-out 0.5s infinite;
}

.bounce-animation-delay-2 {
  animation: bounce 5.5s ease-in-out 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Reduzido de -15px para -10px */
  }
}

.hero-bg-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(82, 224, 183, 0.15), rgba(255, 255, 255, 0));
  z-index: -1;
  border-radius: 50%;
  transform: scale(1.5);
}

.hero-image {
  position: relative;
}

.hero-element {
  position: absolute;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-element svg {
  color: var(--brand-a);
}

.hero-element-1 {
  top: 10%;
  left: 15%;
}

.hero-element-2 {
  bottom: 20%;
  right: 15%;
}

/* ============ MEDIA QUERIES PARA RESPONSIVIDADE ============ */

/* Dispositivos grandes (desktops, 1200px e acima) */
@media (max-width: 1200px) {
  .container {
    width: min(1020px, 92%);
  }
  
  .pricing-cards {
    gap: 20px;
  }
  
  .feature-card {
    padding: 24px;
  }
}

/* Dispositivos médios (tablets, 992px e abaixo) */
@media (max-width: 992px) {
  .container {
    width: min(900px, 92%);
  }
  
  .grid-2, 
  .grid-3, 
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-content {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .main-header .menu-desktop {
    display: none;
  }
  
  .main-header .menu-mobile-trigger {
    display: flex;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }
  
  .section {
    padding: 60px 0;
  }
}

/* Tablets e dispositivos móveis (768px e abaixo) */
@media (max-width: 768px) {
  .container {
    width: min(700px, 92%);
  }
  
  .grid-2, 
  .grid-3, 
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-content,
  .hero-image {
    width: 100%;
    text-align: center;
  }
  
  .hero-img-spotlight {
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .metrics-container {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    width: 95%;
    padding: 20px;
  }
  
  .modal-form-container {
    padding: 15px;
  }
  
  .clients-logos {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Dispositivos móveis pequenos (480px e abaixo) */
@media (max-width: 480px) {
  .container {
    width: 92%;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .main-header .container {
    padding: 12px 0;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (min-width: 769px) {
  .hero-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  
  .hero-content {
    flex: 1;
    text-align: left;
  }
  
  .hero-image {
    flex: 1.3;
    text-align: right;
  }
}
/* Corrigir o menu principal e botão fixo */
@media (max-width: 768px) {
  .header {
    position: static; /* Removendo position sticky em mobile */
  }
  
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  nav a.btn-gradient {
    position: static; /* Garantir que o botão não esteja fixo */
    display: inline-block;
  }
}

/* Reforçar layout lado a lado da seção hero em telas maiores */
@media (min-width: 769px) {
  .hero-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  
  .hero-content {
    flex: 1;
    text-align: left;
    width: 50%;
  }
  
  .hero-image {
    flex: 1;
    text-align: right;
    width: 50%;
  }
}

/* ========================================
   HERO DASHBOARD PROFISSIONAL
   ======================================== */
.hero-dashboard {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(82, 224, 183, 0.2);
  transition: all 0.3s ease;
  animation: slideInRight 0.8s ease-out;
}

.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(82, 224, 183, 0.15);
}

.metrics-card {
  grid-column: 1 / -1;
  animation-delay: 0.2s;
}

.agents-card {
  animation-delay: 0.4s;
}

.chart-card {
  animation-delay: 0.6s;
}

.card-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(82, 224, 183, 0.2);
}

.card-header h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-2);
  margin-bottom: 0.25rem;
}

.metric-trend {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  display: inline-block;
}

.metric-trend.up {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.agents-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.agent-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: rgba(82, 224, 183, 0.05);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.agent-status:hover {
  background: rgba(82, 224, 183, 0.1);
  transform: translateX(4px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.active {
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s infinite;
}

.agent-status span:nth-child(2) {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.status-badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-radius: 8px;
  font-weight: 600;
}

.chart-card {
  padding: 1rem;
}

.chart-placeholder {
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(82, 224, 183, 0.05) 0%, transparent 100%);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
}

.chart-svg {
  width: 100%;
  height: 100%;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-dashboard {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }
  
  .metrics-card {
    grid-column: 1;
  }
  
  .dashboard-card {
    padding: 1rem;
  }
  
  .metric-value {
    font-size: 1.5rem;
  }
  
  .metrics-grid {
    gap: 1rem;
  }
}

/* Grid de Agentes Hero - Opção 2 */
.agents-grid-hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.agent-card-hero {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInScale 0.6s ease-out forwards;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.agent-card-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.agent-card-hero:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.3);
}

.agent-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  transition: transform 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.agent-card-hero:hover .agent-avatar {
  transform: rotate(360deg) scale(1.1);
}

.agent-avatar svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.agent-info-hero {
  text-align: center;
}

.agent-info-hero h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 0.25rem 0;
}

.agent-info-hero span {
  font-size: 0.875rem;
  color: #718096;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Gradientes personalizados para cada agente */
.gradient-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-start: #667eea;
  --gradient-end: #764ba2;
}

.gradient-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-start: #f093fb;
  --gradient-end: #f5576c;
}

.gradient-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-start: #4facfe;
  --gradient-end: #00f2fe;
}

.gradient-4 {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --gradient-start: #43e97b;
  --gradient-end: #38f9d7;
}

.gradient-5 {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --gradient-start: #fa709a;
  --gradient-end: #fee140;
}

.gradient-6 {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
  --gradient-start: #30cfd0;
  --gradient-end: #330867;
}

/* Elemento Central de Conexão */
.connection-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(102, 126, 234, 0.5);
  z-index: 10;
  animation: hubFloat 3s ease-in-out infinite;
}

.connection-hub svg {
  color: white;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hub-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.3);
  animation: pulseRing 2s ease-out infinite;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hubFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Linhas de conexão decorativas */
.agents-grid-hero::before,
.agents-grid-hero::after {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
  z-index: 1;
}

.agents-grid-hero::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.agents-grid-hero::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

/* Responsivo */
@media (max-width: 768px) {
  .agents-grid-hero {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  
  .agent-card-hero {
    padding: 1.5rem;
  }
  
  .agent-avatar {
    width: 60px;
    height: 60px;
  }
  
  .agent-avatar svg {
    width: 30px;
    height: 30px;
  }
  
  .connection-hub {
    width: 70px;
    height: 70px;
  }
  
  .connection-hub svg {
    width: 30px;
    height: 30px;
  }
  
  .agent-info-hero h4 {
    font-size: 1rem;
  }
  
  .agent-info-hero span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .agents-grid-hero {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .connection-hub {
    display: none;
  }
}

/* Hero Corporativo - Foto Profissional */
.hero-corporate {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.85) 0%,
    rgba(118, 75, 162, 0.75) 50%,
    rgba(102, 126, 234, 0.65) 100%
  );
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Elementos Flutuantes de Métricas */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 3rem;
  gap: 1.5rem;
}

.float-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.15),
    0 0 1px rgba(255, 255, 255, 0.5) inset;
  animation: floatIn 0.8s ease-out forwards, gentleFloat 3s ease-in-out infinite;
  opacity: 0;
  transform: translateX(100px);
  min-width: 200px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 20px 60px rgba(102, 126, 234, 0.3),
    0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.card-icon svg {
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-text strong {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.card-text span {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animações */
@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes floatIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Efeito de brilho sutil */
.hero-photo-overlay::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shine 8s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .floating-elements {
    padding: 2rem 1.5rem;
    gap: 1rem;
    align-items: center;
  }
  
  .float-card {
    padding: 1rem 1.5rem;
    min-width: unset;
    width: 100%;
    max-width: 280px;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
  }
  
  .card-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .card-text strong {
    font-size: 1.5rem;
  }
  
  .card-text span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .floating-elements {
    padding: 1.5rem 1rem;
  }
  
  .float-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  
  .card-text {
    align-items: center;
  }
}

/* Hero Section com Background Full */
.hero-fullbg {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 !important;
}

.hero-bg-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: slowZoomBg 25s ease-in-out infinite alternate;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.92) 0%,
    rgba(118, 75, 162, 0.88) 30%,
    rgba(102, 126, 234, 0.85) 60%,
    rgba(76, 81, 191, 0.90) 100%
  );
  z-index: 1;
}

/* Efeito de brilho sutil no overlay */
.hero-bg-overlay::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  animation: shineOverlay 10s ease-in-out infinite;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-fullbg .hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  min-height: 80vh;
}

.hero-fullbg .hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-fullbg .hero-title,
.hero-fullbg .hero-subtitle,
.hero-fullbg .kicker {
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-fullbg .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.3));
}

.hero-fullbg .metrics {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-fullbg .metrics .metric b {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-fullbg .metrics .muted {
  color: rgba(255, 255, 255, 0.9);
}

.hero-fullbg .features .feature {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Elementos flutuantes reposicionados */
.hero-fullbg .floating-elements {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  z-index: 3;
  padding: 0;
}

/* Elementos decorativos */
.hero-fullbg .hero-element {
  position: absolute;
  z-index: 2;
  opacity: 0.4;
  color: white;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero-fullbg .hero-element-1 {
  top: 15%;
  right: 10%;
}

.hero-fullbg .hero-element-2 {
  bottom: 20%;
  left: 8%;
}

/* Animações */
@keyframes slowZoomBg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

@keyframes shineOverlay {
  0%, 100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Responsivo */
@media (max-width: 968px) {
  .hero-fullbg .hero-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 4rem 0;
  }
  
  .hero-fullbg .hero-content {
    max-width: 100%;
  }
  
  .hero-fullbg .floating-elements {
    align-items: center;
    width: 100%;
    max-width: 400px;
  }
  
  .hero-fullbg .metrics {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-fullbg {
    min-height: auto;
    padding: 3rem 0 !important;
  }
  
  .hero-fullbg .hero-wrapper {
    min-height: auto;
    gap: 2rem;
  }
  
  .hero-bg-overlay {
    background: linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.94) 0%,
      rgba(118, 75, 162, 0.92) 50%,
      rgba(102, 126, 234, 0.94) 100%
    );
  }
}

/* Ajustes para conteúdo centralizado sobre a imagem */
.hero-fullbg .hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  min-height: 85vh;
  padding: 2rem 0;
}

.hero-fullbg .hero-content {
  flex: none;
  max-width: 800px;
  margin: 0 auto;
}

/* Reposicionar elementos flutuantes para as laterais */
.hero-fullbg .floating-elements {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  z-index: 3;
  padding: 0;
  max-width: 250px;
}

/* Ajustes de responsividade */
@media (max-width: 1200px) {
  .hero-fullbg .floating-elements {
    right: 2%;
    max-width: 220px;
  }
  
  .hero-fullbg .float-card {
    padding: 1.25rem 1.5rem;
    min-width: 180px;
  }
}

@media (max-width: 968px) {
  .hero-fullbg .floating-elements {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    align-items: center;
    max-width: 400px;
    margin: 2rem auto 0;
  }
  
  .hero-fullbg .hero-wrapper {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .hero-fullbg .floating-elements {
    max-width: 100%;
  }
  
  .hero-fullbg .float-card {
    width: 100%;
    max-width: 300px;
  }
}

/* CORREÇÃO: Remover elementos flutuantes da lateral */
.hero-fullbg .floating-elements {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
  flex: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  z-index: 3;
  padding: 0;
  max-width: 100%;
  margin: 3rem auto 0;
  flex-wrap: wrap;
}

.hero-fullbg .float-card {
  min-width: 160px !important;
  max-width: 200px;
}

/* Ajustes responsivos corrigidos */
@media (max-width: 968px) {
  .hero-fullbg .floating-elements {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-fullbg .float-card {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .hero-fullbg .floating-elements {
    margin: 2rem auto 0;
  }
  
  .hero-fullbg .float-card {
    max-width: 300px;
  }
}

/* CORREÇÃO DEFINITIVA - Hero Section */
.hero-fullbg {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 !important;
}

.hero-fullbg .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-fullbg .hero-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 3rem !important;
  min-height: auto !important;
  padding: 0 !important;
}

.hero-fullbg .hero-content {
  flex: none !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.hero-fullbg .floating-elements {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  flex: none !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1.5rem !important;
  z-index: 3 !important;
  padding: 0 !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}

.hero-fullbg .float-card {
  min-width: 180px !important;
  max-width: 220px !important;
  flex: 0 1 auto !important;
}

/* Responsivo */
@media (max-width: 968px) {
  .hero-fullbg .floating-elements {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .hero-fullbg .float-card {
    width: 100% !important;
    max-width: 350px !important;
  }
}

@media (max-width: 768px) {
  .hero-fullbg {
    padding: 3rem 0 !important;
  }
  
  .hero-fullbg .container {
    padding: 0 1.5rem;
  }
  
  .hero-fullbg .hero-wrapper {
    gap: 2rem !important;
  }
  
  .hero-fullbg .float-card {
    max-width: 300px !important;
  }
}

/* CORREÇÕES FINAIS - Hero Section */

/* 1. Melhor aproveitamento de espaço no Desktop */
.hero-fullbg .hero-title {
  font-size: 3.5rem !important;
  line-height: 1.2 !important;
  margin-bottom: 1.5rem !important;
}

.hero-fullbg .hero-subtitle {
  font-size: 1.35rem !important;
  line-height: 1.6 !important;
  margin-bottom: 2rem !important;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-fullbg .kicker {
  font-size: 1.1rem !important;
  margin-bottom: 1rem !important;
}

/* 2. Esconder bouncing cards no mobile */
@media (max-width: 768px) {
  .hero-fullbg .floating-elements {
    display: none !important;
  }
  
  /* Foto mais visível no mobile */
  .hero-bg-overlay {
    background: linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.75) 0%,
      rgba(118, 75, 162, 0.70) 50%,
      rgba(102, 126, 234, 0.75) 100%
    ) !important;
  }
  
  .hero-fullbg .hero-title {
    font-size: 2.2rem !important;
  }
  
  .hero-fullbg .hero-subtitle {
    font-size: 1.1rem !important;
  }
}

/* Tablet - mantém cards mas ajusta */
@media (min-width: 769px) and (max-width: 968px) {
  .hero-fullbg .hero-title {
    font-size: 2.8rem !important;
  }
  
  .hero-fullbg .hero-subtitle {
    font-size: 1.2rem !important;
  }
}

/* Desktop grande - ainda mais destaque */
@media (min-width: 1400px) {
  .hero-fullbg .hero-title {
    font-size: 4rem !important;
  }
  
  .hero-fullbg .hero-subtitle {
    font-size: 1.5rem !important;
    max-width: 800px !important;
  }
}

/* CORREÇÃO TOTAL - Hero Section Professional */

/* Texto Hero - Melhor aproveitamento */
.hero-fullbg .hero-content {
  flex: none !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  width: 100% !important;
  padding: 0 1rem !important;
}

.hero-fullbg .hero-title {
  font-size: 4rem !important;
  line-height: 1.15 !important;
  margin-bottom: 1.75rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.hero-fullbg .hero-subtitle {
  font-size: 1.45rem !important;
  line-height: 1.65 !important;
  margin-bottom: 2.5rem !important;
  max-width: 750px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 400 !important;
  opacity: 0.95 !important;
}

.hero-fullbg .kicker {
  font-size: 1.15rem !important;
  margin-bottom: 1.25rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}

.hero-fullbg .metrics {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
  transform: scale(1.1) !important;
}

.hero-fullbg .cta {
  margin: 2.5rem 0 !important;
}

.hero-fullbg .btn-gradient {
  padding: 1.25rem 3rem !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
}

/* Floating Cards - Responsivos ao Container */
.hero-fullbg .floating-elements {
  position: absolute !important;
  top: 50% !important;
  right: 3% !important;
  transform: translateY(-50%) !important;
  flex: none !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-end !important;
  gap: 1.25rem !important;
  z-index: 3 !important;
  padding: 0 !important;
  max-width: 260px !important;
  margin: 0 !important;
  flex-wrap: nowrap !important;
}

.hero-fullbg .float-card {
  min-width: 200px !important;
  max-width: 240px !important;
  flex: 0 0 auto !important;
}

/* Responsivo - Ajustes Progressivos */
@media (max-width: 1600px) {
  .hero-fullbg .hero-title {
    font-size: 3.5rem !important;
  }
  
  .hero-fullbg .hero-subtitle {
    font-size: 1.35rem !important;
  }
  
  .hero-fullbg .floating-elements {
    right: 2% !important;
    max-width: 220px !important;
  }
  
  .hero-fullbg .float-card {
    min-width: 180px !important;
    max-width: 220px !important;
  }
}

@media (max-width: 1200px) {
  .hero-fullbg .hero-title {
    font-size: 3rem !important;
  }
  
  .hero-fullbg .hero-subtitle {
    font-size: 1.25rem !important;
  }
  
  .hero-fullbg .floating-elements {
    right: 1.5% !important;
    max-width: 200px !important;
  }
  
  .hero-fullbg .float-card {
    min-width: 160px !important;
    max-width: 200px !important;
    padding: 1rem 1.25rem !important;
  }
}

@media (max-width: 968px) {
  .hero-fullbg .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-fullbg .hero-subtitle {
    font-size: 1.15rem !important;
  }
  
  /* Cards abaixo do conteúdo em tablet */
  .hero-fullbg .floating-elements {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    max-width: 100% !important;
    margin: 2.5rem auto 0 !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
  }
  
  .hero-fullbg .float-card {
    flex: 0 1 auto !important;
    max-width: 280px !important;
  }
}

@media (max-width: 768px) {
  .hero-fullbg .hero-title {
    font-size: 2.2rem !important;
  }
  
  .hero-fullbg .hero-subtitle {
    font-size: 1.1rem !important;
    max-width: 100% !important;
  }
  
  .hero-fullbg .kicker {
    font-size: 0.95rem !important;
  }
  
  .hero-fullbg .metrics {
    transform: scale(1) !important;
  }
  
  .hero-fullbg .btn-gradient {
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
  }
  
  /* Esconder cards no mobile */
  .hero-fullbg .floating-elements {
    display: none !important;
  }
  
  /* Foto mais visível no mobile */
  .hero-bg-overlay {
    background: linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.72) 0%,
      rgba(118, 75, 162, 0.68) 50%,
      rgba(102, 126, 234, 0.72) 100%
    ) !important;
  }
}

@media (max-width: 480px) {
  .hero-fullbg .hero-title {
    font-size: 1.85rem !important;
  }
  
  .hero-fullbg .hero-subtitle {
    font-size: 1rem !important;
  }
}

/* Desktop XL */
@media (min-width: 1800px) {
  .hero-fullbg .hero-title {
    font-size: 4.5rem !important;
  }
  
  .hero-fullbg .hero-subtitle {
    font-size: 1.6rem !important;
    max-width: 850px !important;
  }
  
  .hero-fullbg .floating-elements {
    right: 4% !important;
    max-width: 280px !important;
  }
  
  .hero-fullbg .float-card {
    min-width: 220px !important;
    max-width: 260px !important;
  }
}

/* MELHORIA: Kicker "SquadZ" mais legível */
.hero-fullbg .kicker {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #667eea !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 50px !important;
  display: inline-block !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

.hero-fullbg .kicker:hover {
  transform: translateY(-2px) !important;
  box-shadow: 
    0 6px 20px rgba(102, 126, 234, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset !important;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-fullbg .kicker {
    font-size: 0.9rem !important;
    padding: 0.5rem 1.25rem !important;
  }
}

@media (max-width: 480px) {
  .hero-fullbg .kicker {
    font-size: 0.85rem !important;
    padding: 0.45rem 1rem !important;
  }
}

/* Tag Melhor Escolha para Enterprise */
.pricing-card.best-choice {
  position: relative;
  border: 2px solid #f59e0b;
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
}

.best-choice-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  z-index: 10;
}

.pricing-card.best-choice:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #f59e0b;
  box-shadow: 0 30px 80px rgba(245, 158, 11, 0.3);
}

/* CORREÇÃO: Tag Melhor Escolha igual ao Mais Popular */
.best-choice-tag {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  left: auto !important;
  transform: none !important;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: white !important;
  padding: 4px 12px !important;
  border-radius: 50px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4) !important;
  z-index: 10 !important;
  white-space: nowrap !important;
}

/* CORREÇÃO: Hero centralização perfeita */
.hero-fullbg .hero-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.hero-fullbg .metrics {
  display: flex !important;
  justify-content: center !important;
  gap: 3rem !important;
  margin: 2rem 0 !important;
}

.hero-fullbg .cta {
  display: flex !important;
  justify-content: center !important;
  margin: 2rem 0 !important;
}

.hero-fullbg .features {
  display: flex !important;
  justify-content: center !important;
  gap: 1.5rem !important;
}

/* Responsivo mobile */
@media (max-width: 768px) {
  .hero-fullbg .metrics {
    flex-direction: row !important;
    gap: 1.5rem !important;
  }
  
  .hero-fullbg .features {
    flex-direction: column !important;
    align-items: center !important;
  }
}
