/* ==========================================================================
   TOTAL GUARD - SISTEMA DE DISEÑO EMPRESARIAL Y ESTILOS MODERNOS
   Normas: BASC, ISO 9001, ISO 14001, OHSAS 18001
   "Protegiendo su tranquilidad"
   ========================================================================== */

/* --- Importación de Tipografías Modernas --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  /* Paleta Corporativa Total Guard */
  --tg-green-primary: #00703c;
  --tg-green-deep: #004727;
  --tg-green-light: #0ea75d;
  --tg-green-vibrant: #10e778;
  --tg-green-glow: rgba(16, 231, 120, 0.25);
  
  /* Acentos de Seguridad & Alerta */
  --tg-gold: #e5a93b;
  --tg-gold-light: #fcd34d;
  --tg-cyan: #06b6d4;
  --tg-danger: #ef4444;

  /* Neutros Oscuros y Superficies Tecnológicas */
  --tg-bg-main: #060a0f;
  --tg-bg-surface-1: #0a111a;
  --tg-bg-surface-2: #101c2a;
  --tg-bg-surface-3: #18283b;
  --tg-border: rgba(255, 255, 255, 0.08);
  --tg-border-accent: rgba(16, 231, 120, 0.35);
  --tg-border-hover: rgba(255, 255, 255, 0.22);
  
  /* Textos */
  --tg-text-primary: #f8fafc;
  --tg-text-secondary: #94a3b8;
  --tg-text-muted: #64748b;
  --tg-text-inverse: #060a0f;

  /* Tipografías */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Sombras y Luces */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-green: 0 8px 30px rgba(0, 112, 60, 0.35);
  --shadow-gold: 0 8px 30px rgba(229, 169, 59, 0.3);

  /* Transiciones */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Radios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Form / Controls */
  accent-color: var(--tg-green-vibrant);
}

/* Reset y Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--tg-bg-main);
  color: var(--tg-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow-x: hidden;
  width: 100%;
}

section {
  scroll-margin-top: 76px;
}

/* Fondo Tecnológico Global con Rejilla y Gradiente */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 85% 15%, rgba(0, 112, 60, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 10% 60%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(229, 169, 59, 0.05) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: -1;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Utilidades de Contenedor */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(0, 112, 60, 0.2);
  border: 1px solid rgba(16, 231, 120, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tg-green-vibrant);
  margin-bottom: 1rem;
}

.section-tag.gold {
  background: rgba(229, 169, 59, 0.15);
  border-color: rgba(229, 169, 59, 0.4);
  color: var(--tg-gold-light);
}

.section-tag .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tg-green-vibrant);
  box-shadow: 0 0 10px var(--tg-green-vibrant);
  animation: pulse 2s infinite;
}

.section-tag.gold .pulse-dot {
  background: var(--tg-gold);
  box-shadow: 0 0 10px var(--tg-gold);
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-title .text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--tg-green-vibrant) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title .text-gradient-gold {
  background: linear-gradient(135deg, #ffffff 30%, var(--tg-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--tg-text-secondary);
  max-width: 680px;
  margin: 0 auto 2.4rem auto;
}

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

/* ==========================================================================
   TOP NOTIFICATION BAR (Atención 24/7 y Contacto Inmediato)
   ========================================================================== */
.topbar {
  background: linear-gradient(90deg, #05140b 0%, #0a1711 50%, #05140b 100%);
  border-bottom: 1px solid rgba(16, 231, 120, 0.15);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 101;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--tg-text-secondary);
  font-weight: 500;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  color: var(--tg-green-vibrant);
}

.topbar-item a {
  color: var(--tg-text-primary);
}

.topbar-item a:hover {
  color: var(--tg-green-vibrant);
}

.topbar-badge {
  background: rgba(16, 231, 120, 0.15);
  border: 1px solid rgba(16, 231, 120, 0.3);
  color: var(--tg-green-vibrant);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   HEADER & NAVEGACIÓN PRINCIPAL STICKY
   ========================================================================== */
.header-main {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(10, 17, 26, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--tg-border);
  z-index: 100;
  transition: all var(--transition-smooth);
}

.header-scrolled {
  background: rgba(6, 10, 15, 0.95);
  border-bottom-color: rgba(16, 231, 120, 0.2);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-shield-wrapper {
  width: 46px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-shield-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(16, 231, 120, 0.35));
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1;
}

.brand-title span {
  color: var(--tg-green-vibrant);
}

.brand-subtitle {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tg-gold-light);
  margin-top: 2px;
}

/* Menú de Navegación */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--tg-text-secondary);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tg-green-vibrant);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Botones Principales */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--tg-green-light) 0%, var(--tg-green-primary) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-green);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--tg-green-vibrant) 0%, var(--tg-green-primary) 100%);
  box-shadow: 0 10px 30px rgba(16, 231, 120, 0.4);
  color: #060a0f;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--tg-border);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--tg-gold) 0%, #b87c1c 100%);
  color: #060a0f;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--tg-gold-light) 0%, var(--tg-gold) 100%);
  box-shadow: 0 12px 35px rgba(229, 169, 59, 0.45);
}

.btn-outline-green {
  border: 1px solid var(--tg-green-vibrant);
  color: var(--tg-green-vibrant);
  background: rgba(16, 231, 120, 0.05);
}

.btn-outline-green:hover {
  background: var(--tg-green-vibrant);
  color: #060a0f;
  box-shadow: 0 8px 25px rgba(16, 231, 120, 0.35);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* Botón Hamburguesa Móvil */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--tg-border);
  border-radius: var(--radius-sm);
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (Alto Impacto con Fotografía Real y Métricas en Vivo)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 1.75rem 0 4rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1rem;
  background: rgba(0, 112, 60, 0.15);
  border: 1px solid rgba(16, 231, 120, 0.35);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
}

.hero-badge-pill strong {
  color: var(--tg-green-vibrant);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.3rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--tg-text-secondary);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

/* Garantías / Certificaciones Rápidas en Hero */
.hero-guarantees {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--tg-border);
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tg-text-secondary);
}

.guarantee-item svg {
  width: 20px;
  height: 20px;
  color: var(--tg-green-vibrant);
  flex-shrink: 0;
}

/* Visual del Hero: Tarjeta Fotográfica Compuesta con Badges Flotantes */
.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--tg-border-accent);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 112, 60, 0.25);
  background: var(--tg-bg-surface-2);
}

.hero-agent-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-smooth);
}

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

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 15, 0.1) 0%, rgba(6, 10, 15, 0.85) 95%);
  pointer-events: none;
}

.hero-image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agent-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(6, 10, 15, 0.85);
  border: 1px solid rgba(16, 231, 120, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--tg-green-vibrant);
}

/* Badges Flotantes Métricos */
.float-card {
  position: absolute;
  background: rgba(16, 28, 42, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 2;
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.float-card-1 {
  top: 8%;
  left: -25px;
}

.float-card-2 {
  bottom: 12%;
  right: -25px;
  animation-delay: -2s;
}

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

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 112, 60, 0.25);
  border: 1px solid rgba(16, 231, 120, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-green-vibrant);
}

.float-icon.gold {
  background: rgba(229, 169, 59, 0.2);
  border-color: rgba(229, 169, 59, 0.45);
  color: var(--tg-gold-light);
}

.float-content h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.float-content p {
  font-size: 0.78rem;
  color: var(--tg-text-secondary);
  margin-top: 3px;
}

/* ==========================================================================
   CLIENTES CORPORATIVOS & CARRUSEL (Social Proof)
   ========================================================================== */
.clients-section {
  padding: 2.25rem 0 3.25rem 0;
  background: var(--tg-bg-surface-1);
  border-top: 1px solid var(--tg-border);
  border-bottom: 1px solid var(--tg-border);
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 2rem;
}

.clients-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tg-text-secondary);
}

/* Ticker Infinito */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--tg-bg-surface-1) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, var(--tg-bg-surface-1) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo-card {
  width: 160px;
  height: 72px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.8rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  filter: grayscale(0.8) contrast(1.1);
  opacity: 0.85;
}

.client-logo-card:hover {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ==========================================================================
   SECCIÓN NOSOTROS: EXPERIENCIA, MISIÓN, VISIÓN Y ESTÁNDARES
   ========================================================================== */
.about-section {
  padding: 3.25rem 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--tg-border);
  box-shadow: var(--shadow-lg);
}

.about-main-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.experience-badge-stamp {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: linear-gradient(135deg, var(--tg-green-deep) 0%, #062b18 100%);
  border: 2px solid var(--tg-green-vibrant);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.8rem;
  box-shadow: var(--shadow-md), 0 0 30px rgba(16, 231, 120, 0.25);
  text-align: center;
}

.experience-badge-stamp .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--tg-green-vibrant);
  line-height: 1;
}

.experience-badge-stamp .label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-top: 4px;
}

.about-content h2 {
  margin-bottom: 1.2rem;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--tg-text-primary);
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mv-card {
  background: var(--tg-bg-surface-2);
  border: 1px solid var(--tg-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition-fast);
}

.mv-card:hover {
  border-color: rgba(16, 231, 120, 0.3);
  transform: translateY(-2px);
}

.mv-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.mv-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 112, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-green-vibrant);
}

.mv-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.mv-card p {
  font-size: 0.92rem;
  color: var(--tg-text-secondary);
  line-height: 1.6;
}

/* Sellos de Estándares Internacionales */
.standards-box {
  background: rgba(10, 17, 26, 0.7);
  border: 1px solid rgba(229, 169, 59, 0.3);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
}

.standards-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--tg-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.standards-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.standard-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   SERVICIOS Y SOLUCIONES INTEGRALES (Catálogo y Modal Interactivo)
   ========================================================================== */
.services-section {
  padding: 3.25rem 0;
  background: var(--tg-bg-surface-1);
  position: relative;
}

/* Filtros de Categoría */
.services-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tg-border);
  color: var(--tg-text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.filter-btn.active {
  background: var(--tg-green-primary);
  border-color: var(--tg-green-vibrant);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 112, 60, 0.4);
}

/* Grilla de Tarjetas de Servicios */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--tg-bg-surface-2);
  border: 1px solid var(--tg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--tg-border-accent);
  box-shadow: var(--shadow-md), 0 0 25px rgba(0, 112, 60, 0.2);
}

.service-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #000000;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(6, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tg-green-vibrant);
}

.service-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--tg-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--tg-border);
  padding-top: 1.2rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--tg-text-primary);
}

.service-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--tg-green-vibrant);
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--tg-border);
}

.service-link-btn {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--tg-green-vibrant);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link-btn:hover {
  color: #ffffff;
}

/* ==========================================================================
   ¿POR QUÉ ELEGIRNOS? (Diferenciales del Brochure Página 12)
   ========================================================================== */
.why-section {
  padding: 3.25rem 0;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--tg-bg-surface-2);
  border: 1px solid var(--tg-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--tg-green-primary), var(--tg-green-vibrant));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 231, 120, 0.4);
  box-shadow: var(--shadow-md);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 112, 60, 0.2);
  border: 1px solid rgba(16, 231, 120, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-green-vibrant);
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
  color: #ffffff;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--tg-text-secondary);
  line-height: 1.65;
}



/* ==========================================================================
   GALERÍA OPERATIVA EN TERRENO (Fotografías Reales de Agentes)
   ========================================================================== */
.gallery-section {
  padding: 3.25rem 0;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--tg-border);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.large img {
  object-position: center 20%;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 10, 15, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all var(--transition-fast);
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--tg-green-vibrant);
}

/* ==========================================================================
   PREGUNTAS FRECUENTES (FAQ Accesible)
   ========================================================================== */
.faq-section {
  padding: 3.25rem 0;
  background: var(--tg-bg-surface-1);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--tg-bg-surface-2);
  border: 1px solid var(--tg-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-smooth);
  color: var(--tg-green-vibrant);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-smooth);
  padding: 0 1.8rem;
}

.faq-item.active .faq-content {
  grid-template-rows: 1fr;
  padding-bottom: 1.5rem;
}

.faq-content-inner {
  overflow: hidden;
  color: var(--tg-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   CONTACTO DIRECTO & FORMULARIO (Modern Web Guidance Validation)
   ========================================================================== */
.contact-section {
  padding: 3.25rem 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card-box {
  background: var(--tg-bg-surface-2);
  border: 1px solid var(--tg-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 112, 60, 0.2);
  border: 1px solid rgba(16, 231, 120, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-green-vibrant);
  flex-shrink: 0;
}

.contact-method-body h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.contact-method-body p, .contact-method-body a {
  font-size: 0.95rem;
  color: var(--tg-text-secondary);
}

.contact-method-body a:hover {
  color: var(--tg-green-vibrant);
}

/* Horario de Central 24/7 */
.monitoring-center-badge {
  background: linear-gradient(135deg, rgba(0, 112, 60, 0.2) 0%, rgba(10, 28, 18, 0.4) 100%);
  border: 1px solid rgba(16, 231, 120, 0.35);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.monitoring-center-badge .radar-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--tg-green-vibrant);
  box-shadow: 0 0 12px var(--tg-green-vibrant);
  animation: pulse 1.8s infinite;
}

/* Formulario con Validación Moderna :user-invalid / :user-valid */
.contact-form-card {
  background: var(--tg-bg-surface-2);
  border: 1px solid var(--tg-border-accent);
  border-radius: var(--radius-xl);
  padding: 2.8rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.contact-form-card p {
  color: var(--tg-text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  margin-bottom: 1.2rem;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tg-text-secondary);
  margin-bottom: 0.45rem;
}

.form-group label .req {
  color: var(--tg-green-vibrant);
}

.form-control {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tg-border);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

select.form-control {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

select.form-control option {
  background: var(--tg-bg-surface-2);
  color: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: var(--tg-green-vibrant);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(16, 231, 120, 0.2);
}

/* Modern Web Guidance: Estados :user-invalid y :user-valid */
.form-control:user-invalid {
  border-color: var(--tg-danger);
  background-color: rgba(239, 68, 68, 0.08);
}

.field-error-msg {
  display: none;
  color: #fca5a5;
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.form-control:user-invalid + .field-error-msg {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.form-control:required:user-valid {
  border-color: var(--tg-green-vibrant);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  box-sizing: border-box;
}

.form-success-banner {
  display: none;
  background: rgba(0, 112, 60, 0.25);
  border: 1px solid var(--tg-green-vibrant);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
}

/* ==========================================================================
   FOOTER CORPORATIVO
   ========================================================================== */
.footer-main {
  background: #030609;
  border-top: 1px solid var(--tg-border);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--tg-text-secondary);
  font-size: 0.92rem;
  margin-top: 1.2rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--tg-green-vibrant);
}

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

.footer-links a {
  color: var(--tg-text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--tg-green-vibrant);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--tg-text-muted);
}

/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP CON MENSAJE PRECARGADO
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all var(--transition-bounce);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float .tooltip-wa {
  position: absolute;
  right: 70px;
  background: var(--tg-bg-surface-2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .tooltip-wa {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   MODAL INTERACTIVO DE SERVICIOS (<dialog>)
   ========================================================================== */
dialog.service-modal {
  margin: auto;
  background: var(--tg-bg-surface-2);
  border: 1px solid var(--tg-border-accent);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 650px;
  width: 90%;
  color: var(--tg-text-primary);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 0, 0, 0.8);
}

dialog.service-modal::backdrop {
  background: rgba(4, 7, 10, 0.85);
  backdrop-filter: blur(10px);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.modal-body {
  margin-bottom: 2rem;
  line-height: 1.7;
  color: var(--tg-text-secondary);
}

/* ==========================================================================
   RESPONSIVIDAD & MEDIA QUERIES (Mobile First & Adaptable)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

@media (max-width: 768px) {
  html {
    scroll-padding-top: 76px;
  }

  section {
    scroll-margin-top: 76px;
  }

  .container {
    padding: 0 1.2rem;
  }

  .topbar {
    display: none; /* Simplificación en móvil */
  }

  /* Hero más compacto al inicio */
  .hero-section {
    padding-top: 1rem;
    padding-bottom: 2.25rem;
  }

  .hero-badge-pill {
    margin-bottom: 0.75rem;
  }

  /* Secciones más compactas para que el título quede arriba al navegar */
  .about-section,
  .services-section,
  .why-section,
  .gallery-section,
  .faq-section,
  .contact-section {
    padding-top: 1.1rem;
    padding-bottom: 2.2rem;
    scroll-margin-top: 76px;
  }

  .clients-section {
    padding-top: 1.25rem;
    padding-bottom: 1.4rem;
    scroll-margin-top: 76px;
  }

  .section-tag {
    font-size: 0.75rem;
    padding: 0.28rem 0.75rem;
    margin-bottom: 0.45rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 5.5vw, 2.1rem);
    margin-bottom: 0.65rem;
    line-height: 1.2;
  }

  .section-desc {
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
  }

  /* Menú Móvil */
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(10, 17, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--tg-border-accent);
    transform: translateY(-150%);
    transition: transform var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .header-actions .btn-primary {
    display: none;
  }

  /* Hero Section */
  .hero-agent-img {
    height: 320px;
  }

  .float-card {
    padding: 0.65rem 0.85rem;
    gap: 0.5rem;
    max-width: calc(100% - 16px);
  }

  .float-card-1 {
    top: -12px;
    left: 8px;
  }

  .float-card-2 {
    bottom: -12px;
    right: 8px;
  }

  /* Sección Nosotros: Título primero, luego imagen */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text-side {
    order: 1;
  }

  .about-visual {
    order: 2;
    max-width: 100%;
  }

  .about-main-image img {
    height: 280px;
  }

  .experience-badge-stamp {
    right: 10px;
    bottom: -15px;
    padding: 0.75rem 1.1rem;
  }

  .experience-badge-stamp .number {
    font-size: 1.8rem;
  }

  .experience-badge-stamp .label {
    font-size: 0.72rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Grilla de Servicios 100% fluida sin overflow */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Por Qué Elegirnos */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-card {
    padding: 1.5rem 1.25rem;
  }

  /* Galería */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.large, .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Formulario de Contacto: Adaptación móvil perfecta */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-card-box {
    padding: 1.4rem 1.15rem;
    border-radius: var(--radius-md);
  }

  .contact-form-card {
    padding: 1.5rem 1.15rem;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .contact-form-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
  }

  .contact-form-card p {
    font-size: 0.88rem;
    margin-bottom: 1.4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
    width: 100%;
  }

  .form-group {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin-bottom: 1.1rem;
  }

  .form-control {
    font-size: 16px; /* Evita zoom automático en Safari y Chrome móvil */
    padding: 0.75rem 0.85rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  select.form-control {
    width: 100%;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .form-submit-btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    line-height: 1.35;
    box-sizing: border-box;
  }

  /* Botón Flotante de WhatsApp para móvil */
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float .tooltip-wa {
    display: none !important;
  }

  /* Footer en Móvil */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
