/* ==========================================================================
   DROGARIA CENTRAL FARMA - SISTEMA DE DESIGN & ESTILOS PRINCIPAIS
   ========================================================================== */

/* 1. Definições de Variáveis & Design Tokens (Cores baseadas na marca) */
:root {
  --bg-dark-base: #ffffff;      /* Fundo branco premium */
  --bg-dark-card: #ffffff;
  
  --primary: #ef233c;           /* Vermelho Central Farma */
  --primary-hover: #d90429;
  --primary-light: rgba(239, 35, 60, 0.06);
  --primary-glow: rgba(239, 35, 60, 0.1);
  
  --secondary: #0f3c5d;         /* Azul Clínico para Títulos e Destaque */
  --secondary-hover: #0a2d47;
  --secondary-light: rgba(15, 60, 93, 0.06);
  --secondary-glow: rgba(15, 60, 93, 0.1);
  
  --accent: #10b981;            /* Verde Esmeralda WhatsApp */
  --accent-hover: #059669;
  --accent-light: rgba(16, 185, 129, 0.06);
  --accent-glow: rgba(16, 185, 129, 0.15);
  
  --whatsapp: #25d366;          /* Verde Oficial WhatsApp */
  --whatsapp-hover: #128c7e;
  
  --text-dark: #1e293b;         /* Texto escuro clínico */
  --text-muted: #64748b;        /* Cinza médio para textos secundários */
  --bg-light: #ffffff;          /* Fundo padrão */
  --bg-white: #f8fafc;          /* Fundo secundário leve */
  --border-color: rgba(15, 23, 42, 0.08);
  
  --font-main: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1);
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1200px;
}

/* 2. Reset & Estilos Globais */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.text-center { text-align: center; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.hidden { display: none !important; }
.section-padding { padding: 80px 0; }
.bg-alt { 
  background: linear-gradient(135deg, #ef233c 0%, #b7092b 100%); 
  color: #ffffff;
}

.bg-alt .section-header h2,
.bg-alt .section-header p,
.bg-alt .section-tag,
.bg-alt h2,
.bg-alt p,
.bg-alt h3,
.bg-alt h4 {
  color: #ffffff !important;
}

.bg-alt .section-tag {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
}

.bg-alt .gradient-text-primary {
  background: linear-gradient(135deg, #ffffff 60%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Utilidades de Efeito Vidro e Brilhos (Inspirados na Emergent) */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
}

.bg-alt .glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.bg-alt .glass-card h3,
.bg-alt .glass-card h4,
.bg-alt .glass-card p {
  color: #ffffff !important;
}

.gradient-text {
  background: linear-gradient(135deg, var(--secondary) 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-primary {
  background: linear-gradient(135deg, var(--secondary) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.neon-border-primary {
  border: 1px solid rgba(239, 35, 60, 0.15);
  box-shadow: 0 4px 20px rgba(239, 35, 60, 0.05);
}

.neon-border-secondary {
  border: 1px solid rgba(15, 60, 93, 0.15);
  box-shadow: 0 4px 20px rgba(15, 60, 93, 0.05);
}

/* Tags de Seção */
.section-tag {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--secondary);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-w: 600px;
  margin: 0 auto 50px auto;
}

/* 3. Top Bar & Header */
.top-bar {
  background-color: var(--primary);
  color: #ffffff;
  text-align: center;
  padding: 8px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.main-header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  color: var(--secondary);
  font-weight: 700;
}
.logo-icon {
  font-size: 1.6rem;
}
.logo strong {
  color: var(--primary);
  font-weight: 800;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.main-nav a:hover {
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  color: #166534;
  border: 1.5px solid #86efac;
  padding: 6px 14px 6px 8px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.08);
}

.btn-header-phone:hover {
  background: #dcfce7;
  border-color: #4ade80;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.18);
}

.wa-icon-badge {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease;
}

.btn-header-phone:hover .wa-icon-badge {
  transform: scale(1.08) rotate(6deg);
}

.wa-header-svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  display: block;
}

.phone-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.phone-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #15803d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-number {
  font-size: 0.88rem;
  font-weight: 800;
  color: #14532d;
}

/* 4. Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-md);
  gap: 10px;
}

.btn-sm { padding: 8px 20px; font-size: 0.9rem; }
.btn-md { padding: 12px 28px; font-size: 1rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; display: flex; }

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(11, 60, 93, 0.2);
}
.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 60, 93, 0.3);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-light {
  background-color: var(--bg-white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  background-color: #f1f5f9;
}

/* Botão de Envio de Leads Customizado e Premium */
#btn_submit_lead {
  background: linear-gradient(135deg, #ef233c 0%, #d90429 100%);
  border: none;
  font-size: 1.1rem;
  padding: 18px 28px;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(239, 35, 60, 0.35);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#btn_submit_lead:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(239, 35, 60, 0.5);
  background: linear-gradient(135deg, #d90429 0%, #b7092b 100%);
}

#btn_submit_lead:active {
  transform: translateY(-1px) scale(1);
  box-shadow: 0 4px 15px rgba(239, 35, 60, 0.4);
}

/* Efeito Shimmer/Glare (Brilho que passa pelo botão) */
#btn_submit_lead::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

/* Ícone com transição no hover */
#btn_submit_lead .btn-icon {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

#btn_submit_lead:hover .btn-icon {
  transform: translateX(5px);
}

/* Spinner de Carregamento */
.loading-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 5. Hero Section (Acima da dobra - Redesenho Claro e Chamativo) */
.hero-section {
  padding: 80px 0 120px 0;
  background: radial-gradient(circle at 50% -20%, rgba(239, 35, 60, 0.04) 0%, rgba(255, 255, 255, 1) 70%);
  overflow: hidden;
  position: relative;
}

/* Glow Background Circles behind Hero content */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}
.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 35, 60, 0.06) 0%, transparent 70%);
  top: -100px;
  right: 10%;
}
.hero-glow-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(15, 60, 93, 0.04) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Seção do formulário (abaixo do hero) */
.form-section {
  padding: 80px 0 60px 0;
  background: var(--bg-white);
}

.form-section .hero-form-container {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

/* Form fields em 2 colunas */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.badge-tag {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 25px;
  border: 1px solid rgba(239, 35, 60, 0.15);
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 850;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Selos de Confiança */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 45px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.trust-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 35, 60, 0.2);
  box-shadow: var(--shadow-md);
}

.badge-icon {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(15, 60, 93, 0.04);
  border-radius: var(--radius-sm);
}

.badge-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* Vitrine Interativa / Mockup Celular */
.hero-interactive-showcase {
  margin-top: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.phone-mockup {
  width: 310px;
  height: 490px;
  background-color: #111827;
  border-radius: 36px;
  border: 10px solid #1f2937;
  box-shadow: 
    0 30px 60px -10px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 40px rgba(239, 35, 60, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s ease;
}
.phone-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.phone-header {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  padding: 16px 16px 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: none;
  position: relative;
}

.phone-camera {
  width: 44px;
  height: 10px;
  background-color: #0a0e18;
  border-radius: var(--radius-full);
  margin: 0 auto;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.phone-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.phone-user-avatar {
  font-size: 1.2rem;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.phone-user-info h4 {
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}
.phone-user-info span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  display: block;
}

.phone-chat-body {
  flex: 1;
  padding: 15px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  background-color: #ece5dd;
  background-image: 
    radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 0);
  background-size: 20px 20px;
}

.chat-bubble {
  max-width: 85%;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #1e293b;
  animation: messageSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.chat-left {
  background-color: #ffffff;
  color: #1e293b;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.chat-right {
  background-color: #dcf8c6;
  color: #1e293b;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

@keyframes messageSlideIn {
  from { opacity: 0; transform: translateY(14px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.phone-footer {
  background-color: #f0f0f0;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #e0e0e0;
}
.phone-input-sim {
  flex: 1;
  background-color: #ffffff;
  border-radius: var(--radius-full);
  padding: 7px 14px;
  font-size: 0.72rem;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
}
.phone-send-btn {
  background-color: #128c7e;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.72rem;
}

/* Floating Delivery Tracker Card */
.floating-delivery-card {
  position: absolute;
  bottom: -30px;
  right: -60px;
  width: 210px;
  padding: 15px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 60, 93, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  animation: floatCard 4s ease-in-out infinite;
}

.delivery-badge {
  display: inline-block;
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.floating-delivery-card h4 {
  font-size: 0.8rem;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 2px;
}
.floating-delivery-card p {
  font-size: 0.7rem;
  color: #64748b;
  margin-bottom: 10px;
}
.delivery-progress-bar {
  width: 100%;
  height: 5px;
  background-color: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}
.delivery-progress-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: var(--radius-full);
  animation: loadProgress 3s ease-in-out infinite;
}

@keyframes floatCard {
  0% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(2deg); }
}

@keyframes loadProgress {
  0% { width: 10%; }
  50% { width: 85%; }
  100% { width: 100%; }
}

/* 6. Formulário de Captura */
.hero-form-container {
  padding: 40px;
  position: relative;
  z-index: 10;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}
.form-header h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 6px;
}
.form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-dark);
  background-color: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px var(--primary-light);
}

.input-helper {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.form-checkbox input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
}
.form-checkbox a {
  color: var(--primary);
  font-weight: 700;
}

/* Mensagem de Sucesso */
.success-message {
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 0.4s ease;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.success-message h4 {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 10px;
}
.success-message p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

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

/* 7. Grid de Cards Modernos */
.grid-layout {
  display: grid;
  gap: 30px;
}
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Cards de Benefício (Redesenho com Glassmorphism) */
.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(239, 35, 60, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 60, 93, 0.25);
  box-shadow: var(--shadow-md), 0 0 15px rgba(15, 60, 93, 0.05);
}
.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 60, 93, 0.08) 0%, rgba(15, 60, 93, 0.16) 100%);
  border: 1px solid rgba(15, 60, 93, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(15, 60, 93, 0.1);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-icon svg {
  stroke: #0f3c5d;
  width: 26px;
  height: 26px;
  transition: all 0.35s ease;
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, #0f3c5d 0%, #0b1e36 100%);
  border-color: #0f3c5d;
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(15, 60, 93, 0.35);
}

.benefit-card:hover .benefit-icon svg {
  stroke: #ffffff !important;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* 8. Como Funciona (Fluxo Ilustrado) */
.flow-layout {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

/* Linha pontilhada conectando os passos no desktop */
.flow-layout::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border-color) 0, var(--border-color) 8px, transparent 8px, transparent 16px);
  z-index: 1;
}

.flow-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px auto;
  border: 4px solid var(--bg-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.flow-step:hover .step-num {
  transform: scale(1.1);
  background-color: var(--secondary);
}

.flow-step h3 {
  font-size: 1.15rem;
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 8px;
}
.flow-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0 10px;
}

/* Overrides para fluxo em fundo vermelho (.bg-alt) */
.bg-alt .flow-layout::before {
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.25) 0, rgba(255, 255, 255, 0.25) 8px, transparent 8px, transparent 16px);
}
.bg-alt .step-num {
  background-color: #ffffff;
  color: var(--primary);
  border: 4px solid rgba(255, 255, 255, 0.2);
}
.bg-alt .flow-step:hover .step-num {
  background-color: var(--secondary);
  color: #ffffff;
}
.bg-alt .flow-step h3 {
  color: #ffffff !important;
}
.bg-alt .flow-step p {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* 9. Seção de Categorias (Redesenho com Abas Interativas) */
.categories-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 15px 30px;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  min-width: 220px;
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
  background: var(--bg-light);
  color: var(--text-dark);
  border-color: rgba(15, 23, 42, 0.15);
}

.tab-btn.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.tab-progress-bar {
  width: 100%;
  height: 3px;
  background-color: rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-btn.active .tab-progress-bar {
  opacity: 1;
}

.tab-progress-fill {
  height: 100%;
  width: 0;
  background-color: var(--primary);
  border-radius: var(--radius-full);
}

/* Animação da barra de progresso ativa */
.tab-btn.active .tab-progress-fill {
  animation: tabProgressFill 6s linear forwards;
}

@keyframes tabProgressFill {
  from { width: 0%; }
  to { width: 100%; }
}

.tab-content {
  display: none;
  animation: tabFadeIn 0.5s ease both;
}

.tab-content.active {
  display: block;
}

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

.category-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.category-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-md), 0 0 15px rgba(239, 35, 60, 0.05);
}

.category-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--secondary-light);
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background-color: var(--primary-light);
  transform: scale(1.1);
}

.category-info h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 4px;
}

.category-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 10. Diferenciais / Nossos Valores (Azul Nobre Clínico - Idêntico ao Rodapé) */
.diferenciais-section {
  background: linear-gradient(145deg, #0b1e36 0%, #061224 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.diferenciais-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.diferenciais-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(8px);
}

.text-white {
  color: #ffffff !important;
}

.text-white-muted {
  color: #94a3b8 !important;
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
}

.diff-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.diff-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(66, 133, 244, 0.15);
}

.diff-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(239, 35, 60, 0.12);
  border: 1px solid rgba(239, 35, 60, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(239, 35, 60, 0.2);
  transition: all 0.35s ease;
}

.diff-icon-box svg {
  color: #ef233c;
  stroke: #ef233c !important;
  filter: drop-shadow(0 2px 6px rgba(239, 35, 60, 0.4));
  transition: all 0.35s ease;
}

.diff-card:hover .diff-icon-box {
  background: linear-gradient(135deg, #ef233c 0%, #d90429 100%);
  border-color: #ef233c;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(239, 35, 60, 0.5);
}

.diff-card:hover .diff-icon-box svg {
  stroke: #ffffff !important;
  filter: none;
}

.diff-card h4 {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.diff-card p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
}

.diff-card:hover p {
  color: #cbd5e1;
}

/* Seção Como Funciona com Fundo Claro e Limpo */
.flow-section {
  background-color: #f8fafc;
  border-top: 1px solid var(--border-color);
}

/* 11. Avaliações Oficiais do Google (Google Business Widget) */
.google-reviews-section {
  background: #f8fafc;
  position: relative;
}

.google-reviews-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.google-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.reviews-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 30px auto;
}

/* Card Resumo da Avaliação Geral */
.google-rating-summary {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 820px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.google-summary-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.google-summary-brand strong {
  display: block;
  font-size: 1.05rem;
  color: #0f172a;
  font-weight: 800;
}

.google-summary-brand span {
  font-size: 0.82rem;
  color: #64748b;
}

.google-summary-score {
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  padding: 0 25px;
}

.score-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.score-stars {
  text-align: left;
}

.score-stars .google-stars {
  color: #fbbc04;
  font-size: 1.25rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 4px;
}

.score-stars span {
  font-size: 0.78rem;
  color: #16a34a;
  font-weight: 700;
}

.btn-google-action {
  background: #f1f5f9;
  color: #0f172a;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #cbd5e1;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-google-action:hover {
  background: #ffffff;
  color: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
  transform: translateY(-2px);
}

/* Slider Multi-Cards Estilo Trustindex / Elfsight */
.google-reviews-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-slider-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  padding: 10px 0;
}

.google-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 24px;
}

.google-slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  box-sizing: border-box;
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

.google-slide:hover .google-review-card {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.google-slide:hover .google-review-card::before {
  opacity: 1;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.slider-nav-btn:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  transform: translateY(-50%) scale(1.08);
}

.slider-nav-btn.prev-btn {
  left: -65px;
}

.slider-nav-btn.next-btn {
  right: -65px;
}

/* Indicadores de Pontos (Dots) */
.slider-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin: 10px auto 45px auto;
  max-width: 92%;
  flex-wrap: wrap;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background: #94a3b8;
  transform: scale(1.2);
}

.slider-dot.active {
  width: 26px;
  border-radius: 8px;
  background: linear-gradient(90deg, #4285F4, #34A853);
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

.google-review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 32px 36px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.google-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.google-review-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.google-review-card:hover::before {
  opacity: 1;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
  position: relative;
}

.avatar-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.avatar-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.avatar-green { background: linear-gradient(135deg, #10b981, #047857); }
.avatar-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.avatar-red { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.avatar-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }

.g-mini-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.reviewer-meta h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.reviewer-badge {
  font-size: 0.72rem;
  color: #64748b;
  display: block;
}

.review-date {
  font-size: 0.72rem;
  color: #94a3b8;
  white-space: nowrap;
}

.google-stars {
  color: #fbbc04;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  font-size: 0.72rem;
}

.verified-check {
  color: #16a34a;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.google-source {
  color: #94a3b8;
  font-weight: 600;
}

/* Banner de Chamada para Avaliação no Google */
.google-cta-banner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.google-cta-text h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.google-cta-text p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
}

/* 12. CTA Final (Vermelho Premium) */
.bg-gradient {
  background: linear-gradient(135deg, #ef233c 0%, #b7092b 100%);
  color: #ffffff;
}

.bg-gradient h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff !important;
}
.bg-gradient p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  opacity: 0.95;
  color: #ffffff !important;
}

/* 13. FAQ (Sanfona Redesenhada e Fluida) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}
.faq-trigger:hover {
  background-color: var(--secondary-light);
  color: var(--secondary);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--secondary);
  font-weight: 400;
  transition: var(--transition);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 30px;
}

.faq-content p {
  padding-bottom: 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}
.faq-item.active .faq-trigger {
  background-color: var(--secondary-light);
  color: var(--secondary);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

/* 14. Rodapé */
.site-footer {
  background-color: #0b1e36;
  color: #94a3b8;
  padding: 70px 0 0 0;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.logo-light {
  color: var(--bg-white);
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cnpj {
  font-size: 0.72rem;
  color: #64748b;
}

.footer-grid h3 {
  color: var(--bg-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
}
.footer-grid h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.85rem;
}
.footer-links a:hover {
  color: var(--bg-white);
  padding-left: 5px;
}

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.footer-contact a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--bg-white);
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 0.85rem;
  font-weight: 700;
}
.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.map-container {
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 25px 0;
  font-size: 0.78rem;
  color: #64748b;
}
.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* 15. WhatsApp Flutuante Fixo */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-floating-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.6);
}

.wa-svg {
  width: 30px;
  height: 30px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* 16. Responsividade (Mobile-First / Adaptativo) */

@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-badge-tag {
    margin: 0 auto 18px auto;
  }

  .hero-title-light {
    font-size: 2.3rem;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-right {
    position: static;
  }
  
  .main-nav {
    display: none;
  }
  
  .top-bar {
    font-size: 0.75rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .section-header h2 {
    font-size: 1.7rem;
  }
  
  .flow-layout {
    flex-direction: column;
    gap: 30px;
  }
  .flow-layout::before {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  /* Melhorias do Formulário no Tablet/Mobile */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Melhorias dos Selos de Confiança no Tablet/Mobile (Evita cortes de texto) */
  .trust-badges {
    grid-template-columns: 1fr;
  }

  /* Remove card flutuante para evitar scroll horizontal em telas menores */
  .floating-delivery-card {
    display: none;
  }

  .google-slide {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .google-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .cols-4, .cols-3 {
    grid-template-columns: 1fr;
  }
  
  .hero-form-container {
    padding: 25px 20px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .top-bar p {
    font-size: 0.7rem;
  }
  
  .whatsapp-floating-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .wa-svg {
    width: 25px;
    height: 25px;
  }
  
  .phone-mockup {
    width: 280px;
    height: 440px;
  }

  /* Botões de abas em largura total e empilhados uniformemente no mobile */
  .categories-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn {
    min-width: unset;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn-header-phone {
    padding: 6px 10px;
    gap: 5px;
  }
  .btn-header-phone .phone-label {
    display: none;
  }
  .btn-header-phone .phone-number {
    font-size: 0.78rem;
  }

  /* Responsividade do Widget Google Reviews */
  .google-rating-summary {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 20px;
  }
  .google-summary-brand {
    flex-direction: column;
    text-align: center;
  }
  .google-summary-score {
    border-left: none;
    border-right: none;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
    width: 100%;
    justify-content: center;
  }
  .google-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .google-review-card {
    padding: 22px 20px;
    min-height: auto;
  }
  .slider-nav-btn {
    display: none;
  }
}

@media (max-width: 900px) {
  .slider-nav-btn.prev-btn {
    left: -15px;
  }
  .slider-nav-btn.next-btn {
    right: -15px;
  }
  .slider-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}
