/* Google Fonts são carregados via <link> no HTML com preconnect para melhor performance */

/* =========================================
   Argos Group - Design System (Light Theme)
   Inspired by: lanyard.com.br & passevip.com.br
   ========================================= */

:root {
  /* Brand Colors */
  --color-primary: #4f46e5;        /* Indigo principal */
  --color-primary-dark: #3730a3;   /* Indigo escuro */
  --color-primary-light: #eef2ff;  /* Indigo suave */
  --color-primary-rgb: 79, 70, 229;

  --color-accent: #f59e0b;         /* Âmbar/dourado (CTA principal) */
  --color-accent-dark: #d97706;
  --color-accent-light: #fef3c7;
  --color-accent-rgb: 245, 158, 11;

  --color-topbar: #24166a;         /* Barra superior roxo-escuro */

  --color-green: #22c55e;          /* Verde confirmação */

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f5f7fa;
  --bg-light-2: #f0f0f5;
  --bg-section: #f8fafc;

  /* Text Colors */
  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  /* Borders */
  --border-light: #e5e7eb;
  --border-card: #f0f0f5;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 25px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
  --shadow-accent: 0 4px 15px rgba(245, 158, 11, 0.35);
  --shadow-primary: 0 4px 15px rgba(79, 70, 229, 0.25);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-hero: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4f46e5 100%);
  --gradient-hero-light: linear-gradient(160deg, #f0f0f5 0%, #ffffff 50%, #eef2ff 100%);
  --gradient-topbar: linear-gradient(90deg, #24166a 0%, #4f46e5 100%);

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-display: 'Outfit', 'Montserrat', sans-serif;

  /* Misc */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --max-width: 1200px;
  --nav-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ========= TOP BAR ========= */
.topbar {
  background: var(--gradient-topbar);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 0;
  letter-spacing: 0.2px;
}

.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.topbar a:hover { color: #fff; }

.topbar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topbar-wa {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #4ade80 !important;
  font-weight: 600;
}

/* ========= HEADER / NAV ========= */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  text-decoration: none;
  flex-shrink: 0;
}

/* Logo como imagem SVG */
.logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.logo-footer-img {
  height: 42px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  /* Inverte para branco no footer escuro */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* Fallback texto para quando a imagem não carregar */
.logo-argos {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.logo-group {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  font-style: italic;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}

.nav-link {
  color: var(--text-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.nav-link.active {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* ========= MEGA MENU ========= */
.has-megamenu {
  position: static;
}

.nav-arrow {
  font-size: 0.65rem;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
  display: inline-block;
  vertical-align: middle;
}

.has-megamenu:hover .nav-arrow {
  transform: rotate(180deg);
}

.megamenu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 2px solid var(--border-light);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.has-megamenu:hover .megamenu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.megamenu-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.megamenu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.megamenu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #c7d2fe;
}

.megamenu-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1rem;
}

.megamenu-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.megamenu-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.megamenu-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Gradients for megamenu-icon */
.megamenu-icon.bg-couche { background: var(--gradient-primary); }
.megamenu-icon.bg-pvc { background: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 100%); }
.megamenu-icon.bg-pulseiras { background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%); }
.megamenu-icon.bg-cordoes { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.megamenu-icon.bg-camisas { background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%); }

/* Mobile adaptation for Megamenu */
@media (max-width: 768px) {
  .has-megamenu {
    width: 100%;
  }
  
  .megamenu-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 1rem;
    display: none;
  }
  
  .megamenu-panel.open {
    display: block;
  }
  
  .megamenu-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .megamenu-item {
    flex-direction: row;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 1rem;
  }
  
  .megamenu-icon {
    margin-bottom: 0;
    width: 36px;
    height: 36px;
  }
  
  .megamenu-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .megamenu-text h4 {
    margin-bottom: 0.1rem;
  }
}

/* Nav CTA Button */
.nav-cta {
  background: var(--gradient-accent);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Hamburger (mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-topbar);
  cursor: pointer;
  padding: 0.25rem;
}

/* ========= HERO SECTION ========= */
.hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(79,70,229,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #c4b5fd;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: #c4b5fd;
}

.hero h1 strong {
  color: var(--color-accent);
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

/* Hero Visual Panel */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-cards-float {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 400px;
}

.float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.float-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.float-card-icon svg {
  color: #fff;
}

.float-card-text p {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.1rem;
}

.float-card-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.btn-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  border-radius: var(--radius-full);
}

.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ========= SECTIONS ========= */
.section {
  padding: 5rem 2rem;
}

.section-white { background: var(--bg-white); }
.section-light { background: var(--bg-light); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  transition: var(--transition);
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem; /* Ajustado para caber melhor lado a lado */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: var(--transition-slow);
}

/* Efeito dinâmico: quando passa o mouse no grid, os outros cards diminuem */
.products-grid:hover .product-card:not(:hover) {
  transform: scale(0.94);
  opacity: 0.7;
}

/* O card com mouse em cima aumenta de tamanho */
.product-card:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #c7d2fe;
  opacity: 1 !important;
}

.product-card:hover::after {
  width: 100%;
}

.product-image-container {
  width: 100%;
  height: 200px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.product-card:hover .product-image-container {
  background: var(--bg-light);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img {
  transform: scale(1.08);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: var(--text-body);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border-card);
}

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

.product-features li::before {
  content: '✓';
  color: var(--color-green);
  font-weight: 700;
  font-size: 0.8rem;
  width: 16px;
  height: 16px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-link:hover {
  gap: 0.6rem;
  color: var(--color-primary-dark);
}

/* ========= PRODUCT DETAIL PAGE ========= */
.product-detail-hero {
  background: var(--gradient-hero-light);
  border-bottom: 1px solid var(--border-light);
  padding: 5rem 2rem 3rem;
}

.product-detail-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-visual {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.product-visual svg {
  width: 85%;
  height: auto;
  max-height: 320px;
}

.product-info .category-badge {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.product-info .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.importance-box {
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2rem;
}

.importance-box h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

.importance-box p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-light);
}

.specs-table td {
  padding: 0.75rem 0;
}

.specs-table td:first-child {
  font-weight: 700;
  color: var(--text-dark);
  width: 35%;
}

.specs-table td:last-child {
  color: var(--text-muted);
}

/* Quote Form */
.purchase-area {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.purchase-area h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.purchase-area .sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.input-group {
  margin-bottom: 1.25rem;
}

.input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 0.4rem;
}

.input-group select,
.input-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.input-group select:focus,
.input-group input:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

/* ========= BENEFITS / FEATURES SECTION ========= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon.icon-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.benefit-icon.icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.benefit-icon.icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.benefit-icon.icon-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========= HOW IT WORKS / STEPS ========= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========= CTA SECTION ========= */
.cta-section {
  background: var(--gradient-hero);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Caixa do formulário de orçamento dentro do CTA */
.cta-form-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  max-width: 520px;
  margin: 0 auto;
}

.cta-form-box label {
  color: rgba(255,255,255,0.9);
}

.cta-form-box select,
.cta-form-box input[type="number"] {
  background: rgba(255,255,255,0.12) !important;
  border: 1.5px solid rgba(255,255,255,0.25) !important;
  color: #fff !important;
}

.cta-form-box select option {
  background: #312e81;
  color: #fff;
}

.cta-form-box input::placeholder {
  color: rgba(255,255,255,0.5);
}

/* Scroll margin para compensar o header fixo */
#produtos, #orcamento, #importancia, #como {
  scroll-margin-top: calc(var(--nav-height) + 0.5rem);
}

/* ========= FAQ SECTION ========= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.faq-item h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-item h3::before {
  content: '?';
  width: 28px;
  height: 28px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-item p {
  padding: 0 1.5rem 1.25rem 3.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========= IMPORTANCE SECTION ========= */
.importance-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.importance-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.importance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.importance-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.importance-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.importance-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.importance-icon.bg-cyan { background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%); }
.importance-icon.bg-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.importance-icon.bg-purple { background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%); }

.importance-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.importance-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ========= BLOG & CIDADES PAGES ========= */

/* Blog Hero */
.blog-hero {
  background: var(--gradient-hero-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3rem 2rem 4rem;
  text-align: center;
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.blog-hero h1 em { color: var(--color-primary); font-style: normal; }

.blog-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Breadcrumb */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  justify-content: center;
}

.breadcrumb-nav a {
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition);
}

.breadcrumb-nav a:hover { color: var(--color-primary-dark); }

/* FAQ Accordion (details/summary) */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-group { }

.faq-category {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary-light);
}

.faq-item-detail {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.faq-item-detail[open] {
  border-color: #c7d2fe;
  box-shadow: var(--shadow-sm);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  transition: var(--transition);
  user-select: none;
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-summary:hover { background: var(--color-primary-light); color: var(--color-primary); }

.faq-item-detail[open] .faq-summary { 
  background: var(--color-primary-light); 
  color: var(--color-primary); 
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item-detail[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-body {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
}

.faq-body p + p { margin-top: 0.75rem; }

.faq-body ul {
  margin: 0.75rem 0 0 1.25rem;
}

.faq-body ul li {
  margin-bottom: 0.35rem;
  color: var(--text-body);
}

.faq-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

/* FAQ Table */
.faq-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

.faq-table th {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  padding: 0.6rem 0.85rem;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-table td {
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
}

.faq-table tr:last-child td { border-bottom: none; }

/* Article Rich Content */
.article-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.article-block {
  background: var(--bg-light);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
}

.article-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.article-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.article-block p + p { margin-top: 0.75rem; }

/* Cities Cards */
.cities-region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.city-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.city-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  color: #fff;
}

.city-flag {
  font-size: 2rem;
  line-height: 1;
}

.city-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
}

.city-label {
  font-size: 0.78rem;
  opacity: 0.85;
  font-weight: 500;
}

.city-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.city-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.city-products {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}

.city-products strong {
  font-size: 0.82rem;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.4rem;
}

.city-products ul {
  margin: 0;
  padding-left: 1.2rem;
}

.city-products ul li {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

/* Region filter styling */
.region-filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-white);
  border: 1.5px solid var(--border-card);
  color: var(--text-body);
  padding: 0.75rem 1.5rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

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

.filter-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.cities-state-block.hidden {
  display: none !important;
}

/* Cities List Grid */
.cities-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.cities-state-block {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-xs);
}

.cities-state-block h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-primary-light);
}

.cities-state-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cities-state-block ul li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--border-light);
}

.cities-state-block ul li:last-child { border-bottom: none; }

.cities-state-block ul li::before {
  content: '→ ';
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ========= IMPORTANCE ARTICLE SECTION ========= */
.article-section {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
  padding-top: 4rem;
  margin-top: 4rem;
}

.article-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.article-block {
  margin-bottom: 2rem;
}

.article-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-block h3 span {
  width: 24px;
  height: 24px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.article-block p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ========= TRUST BAND ========= */
.trust-band {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.75rem 2rem;
}

.trust-band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
}

.trust-item svg {
  color: var(--color-primary);
}

/* ========= FOOTER ========= */
footer {
  background: #111827;
  color: rgba(255,255,255,0.8);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-argos {
  color: #fff;
}

.footer-brand .logo-group {
  color: #c4b5fd;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-col a:hover {
  color: #c4b5fd;
  padding-left: 4px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual { display: none; }

  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-description { margin-left: auto; margin-right: auto; }

  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-visual {
    position: static;
    min-height: 280px;
  }

  /* Scroll horizontal para produtos no Tablet e Mobile */
  .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0.75rem 0.5rem;
    margin: 0 -0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .products-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 270px;
    scroll-snap-align: start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root { --nav-height: 65px; }

  .topbar { display: none; }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 0.25rem;
    transition: var(--transition);
    border-top: 1px solid var(--border-light);
    overflow-y: auto;
    z-index: 998;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .menu-toggle { display: flex; }

  .hero {
    padding: 4rem 1.5rem 3.5rem;
  }

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

  .section { padding: 3.5rem 1.5rem; }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: span 1; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .hero-actions { flex-direction: column; }
}

/* ========= WHATSAPP CHAT WIDGET ========= */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Speech bubble */
.wa-bubble {
  background: #ffffff;
  border-radius: 16px 16px 4px 16px;
  padding: 16px 20px;
  max-width: 260px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  animation: waBubbleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 3s;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
}

@keyframes waBubbleIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 0px solid transparent;
  border-top: 10px solid #ffffff;
}

.wa-bubble p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
}

.wa-bubble strong {
  font-size: 1rem;
  color: #111827;
}

.wa-bubble-close {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 1.1rem;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.wa-bubble-close:hover {
  color: #334155;
}

.wa-bubble.hidden {
  display: none;
}

/* Avatar floating action button */
.wa-fab {
  position: relative;
  display: block;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: visible;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: waPulse 2s ease-in-out infinite;
}

.wa-fab:hover {
  transform: scale(1.12);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.wa-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  display: block;
}

/* WhatsApp badge icon */
.wa-fab-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 26px;
  height: 26px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}

.wa-fab-badge svg {
  width: 14px;
  height: 14px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .wa-widget {
    bottom: 18px;
    right: 18px;
  }
  .wa-bubble {
    max-width: 220px;
    padding: 12px 16px;
  }
  .wa-fab { width: 60px; height: 60px; }
  .wa-avatar { width: 60px; height: 60px; }
}

/* ========= SOCIAL PROOF TOAST ========= */
.social-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  border-left: 4px solid var(--color-green);
  transform: translateX(-150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.social-toast-icon {
  font-size: 24px;
}

.social-toast-text p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

.social-toast-text p strong {
  color: var(--text-dark);
}

.social-toast-text p span {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .social-toast {
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 320px;
  }
  .social-toast.show {
    transform: translateX(-50%) translateY(0);
  }
}
