/* ==========================================================================
   Luppo Web - Brand Identity & Modern Mobile-First Stylesheet (2026 Edition)
   Inspirado en la nueva identidad: Deep Forest Teal, Slate, Emerald Glow & Cream
   ========================================================================== */

:root {
  /* Paleta de Marca Luppo (Nuevo Logo Hexagonal Lobo Guardián) */
  --lp-brand-teal-dark: #0b2928;
  --lp-brand-teal: #123c3a;
  --lp-brand-teal-light: #1b524f;
  --lp-brand-teal-soft: #e6f4f3;
  --lp-accent-mint: #2dd4bf;
  --lp-accent-mint-soft: #ccfbf1;
  --lp-accent-emerald: #10b981;
  --lp-accent-emerald-soft: #d1fae5;
  
  /* Tonos Neutros y Cream */
  --lp-cream-light: #fbf8f1;
  --lp-cream-surface: #f5f0e6;
  --lp-slate-900: #0f172a;
  --lp-slate-800: #1e293b;
  --lp-slate-700: #334155;
  --lp-slate-500: #64748b;
  --lp-slate-100: #f1f5f9;
  
  /* Acentos de Servicio */
  --lp-accent-amber: #f59e0b;
  --lp-accent-amber-soft: #fef3c7;
  --lp-accent-purple: #8b5cf6;
  --lp-accent-purple-soft: #ede9fe;
  --lp-accent-rose: #f43f5e;
  --lp-accent-rose-soft: #ffe4e6;
  --lp-accent-blue: #0284c7;
  --lp-accent-blue-soft: #e0f2fe;

  /* Elevaciones & Bordes */
  --lp-card-border: rgba(226, 232, 240, 0.85);
  --lp-card-shadow: 0 10px 30px -5px rgba(11, 41, 40, 0.06), 0 4px 6px -2px rgba(11, 41, 40, 0.03);
  --lp-card-shadow-hover: 0 20px 40px -10px rgba(18, 60, 58, 0.18), 0 10px 15px -5px rgba(11, 41, 40, 0.05);
  
  --lp-radius-sm: 10px;
  --lp-radius-md: 16px;
  --lp-radius-lg: 24px;
  --lp-radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   Tipografía y Estilos Base
   -------------------------------------------------------------------------- */
body {
  color: var(--lp-slate-800);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Logo de Marca en Header y Footer */
.brand-wrapper {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  padding: 0;
  vertical-align: middle;
}

.brand-logo-img {
  height: 44px;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
  display: block;
}

.brand:hover .brand-logo-img {
  transform: scale(1.04);
}

/* Ajuste móvil impecable para el navbar fijo */
.rd-navbar-fixed .rd-navbar-brand {
  display: flex !important;
  align-items: center !important;
  height: 56px !important;
  margin: 0 0 0 10px !important;
  padding: 0 !important;
  top: 0 !important;
  line-height: normal !important;
  overflow: visible !important;
}

.rd-navbar-fixed .rd-navbar-brand img,
.rd-navbar-fixed .brand-logo-img {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* --------------------------------------------------------------------------
   Hero Section - Nueva Identidad Teal & Glow
   -------------------------------------------------------------------------- */
.luppo-hero-section {
  position: relative;
  background: linear-gradient(135deg, #0b2928 0%, #123c3a 45%, #0f172a 100%);
  color: #ffffff;
  padding: 125px 0 75px 0;
  overflow: hidden;
}

.luppo-hero-section::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.18) 0%, rgba(18, 60, 58, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.luppo-hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(11, 41, 40, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.luppo-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(45, 212, 191, 0.3);
  color: #5eead4;
  padding: 6px 18px;
  border-radius: var(--lp-radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.luppo-hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--lp-accent-mint);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.7);
  animation: lp-pulse 2s infinite;
}

@keyframes lp-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(45, 212, 191, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
  }
}

.luppo-hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.luppo-hero-title span.text-highlight {
  background: linear-gradient(90deg, #5eead4 0%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.luppo-hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 30px;
  max-width: 580px;
}

.luppo-hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.btn-lp-brand {
  background: linear-gradient(135deg, #123c3a 0%, #1c5552 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--lp-radius-full);
  border: 1px solid rgba(45, 212, 191, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px -5px rgba(18, 60, 58, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  cursor: pointer;
}

.btn-lp-brand:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1c5552 0%, #123c3a 100%);
  border-color: #5eead4;
  box-shadow: 0 15px 30px -5px rgba(45, 212, 191, 0.4);
}

.btn-lp-mint {
  background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--lp-radius-full);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  cursor: pointer;
}

.btn-lp-mint:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.6);
  background: linear-gradient(135deg, #0d9488 0%, #10b981 100%);
}

.btn-lp-secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--lp-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

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

.luppo-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.luppo-hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #e2e8f0;
  font-weight: 500;
}

.luppo-hero-highlight-item i {
  color: var(--lp-accent-mint);
  font-size: 15px;
}

/* Mockup con Badge Hexagonal */
.luppo-mockup-wrapper {
  position: relative;
  text-align: center;
  margin-top: 20px;
}

.luppo-mockup-main {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 36px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 0 8px rgba(45, 212, 191, 0.15);
  transition: transform 0.4s ease;
}

.luppo-mockup-main:hover {
  transform: translateY(-6px) scale(1.02);
}

.luppo-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--lp-radius-md);
  padding: 10px 14px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  color: var(--lp-slate-800);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: lp-float 4s ease-in-out infinite alternate;
}

.luppo-floating-card.card-left {
  bottom: 30px;
  left: -10px;
}

.luppo-floating-card.card-right {
  top: 40px;
  right: -10px;
  animation-delay: 2s;
}

.luppo-floating-card .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}

.luppo-floating-card .card-text h6 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-brand-teal-dark);
}

.luppo-floating-card .card-text p {
  margin: 0;
  font-size: 11px;
  color: var(--lp-slate-500);
}

@keyframes lp-float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* --------------------------------------------------------------------------
   Barra de Métricas y Credibilidad (7 años, 600+ condominios, 100k residentes)
   -------------------------------------------------------------------------- */
.luppo-metrics-strip {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(11, 41, 40, 0.06);
  position: relative;
  z-index: 5;
  margin-top: -35px;
  border-radius: var(--lp-radius-lg);
  padding: 30px 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.luppo-metric-card {
  text-align: center;
  padding: 10px 8px;
}

.luppo-metric-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--lp-brand-teal-dark);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luppo-metric-number .metric-plus {
  color: var(--lp-accent-emerald);
  font-size: 1.8rem;
  margin-left: 2px;
}

.luppo-metric-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-slate-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.luppo-metric-subtext {
  font-size: 12px;
  color: var(--lp-slate-500);
  margin-top: 4px;
  display: block;
}

/* --------------------------------------------------------------------------
   Sección de los 7 Servicios Clave
   -------------------------------------------------------------------------- */
.luppo-services-section {
  padding: 85px 0 65px 0;
  background-color: var(--lp-cream-light);
  position: relative;
}

.section-header-modern {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px auto;
}

.section-badge-pill {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--lp-brand-teal-soft);
  color: var(--lp-brand-teal-dark);
  border: 1px solid rgba(18, 60, 58, 0.2);
  border-radius: var(--lp-radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-title-modern {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--lp-brand-teal-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-description-modern {
  font-size: 1.05rem;
  color: var(--lp-slate-500);
  line-height: 1.6;
}

/* Tabs / Filtros */
.services-category-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding: 4px 8px 12px 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.services-category-nav::-webkit-scrollbar {
  display: none;
}

.cat-btn {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: var(--lp-slate-500);
  padding: 10px 22px;
  border-radius: var(--lp-radius-full);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.cat-btn.active, .cat-btn:hover {
  background: var(--lp-brand-teal);
  color: #ffffff;
  border-color: var(--lp-brand-teal);
  box-shadow: 0 6px 16px rgba(18, 60, 58, 0.3);
}

/* Tarjetas de Servicio */
.service-card-modern {
  background: #ffffff;
  border: 1px solid var(--lp-card-border);
  border-radius: var(--lp-radius-lg);
  padding: 30px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--lp-card-shadow);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background 0.3s ease;
}

.service-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-card-shadow-hover);
  border-color: #cbd5e1;
}

/* Bordes superiores por temática */
.service-card-modern.theme-tickets::after { background: linear-gradient(90deg, #8b5cf6, #c084fc); }
.service-card-modern.theme-comms::after { background: linear-gradient(90deg, #123c3a, #2dd4bf); }
.service-card-modern.theme-facial::after { background: linear-gradient(90deg, #10b981, #34d399); }
.service-card-modern.theme-alarm::after { background: linear-gradient(90deg, #f43f5e, #fb7185); }
.service-card-modern.theme-billing::after { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.service-card-modern.theme-rondinero::after { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.service-card-modern.theme-morosidad::after { background: linear-gradient(90deg, #ec4899, #8b5cf6); }
.service-card-modern.theme-conmutador::after { background: linear-gradient(90deg, #06b6d4, #0d9488); }

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--lp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.service-card-modern:hover .service-icon-box {
  transform: scale(1.1) rotate(3deg);
}

.service-icon-box.icon-purple { background: var(--lp-accent-purple-soft); color: var(--lp-accent-purple); }
.service-icon-box.icon-teal { background: var(--lp-brand-teal-soft); color: var(--lp-brand-teal); }
.service-icon-box.icon-emerald { background: var(--lp-accent-emerald-soft); color: var(--lp-accent-emerald); }
.service-icon-box.icon-rose { background: var(--lp-accent-rose-soft); color: var(--lp-accent-rose); }
.service-icon-box.icon-amber { background: var(--lp-accent-amber-soft); color: var(--lp-accent-amber); }
.service-icon-box.icon-blue { background: var(--lp-accent-blue-soft); color: var(--lp-accent-blue); }
.service-icon-box.icon-pink { background: #fce7f3; color: #db2777; }
.service-icon-box.icon-cyan { background: #cffafe; color: #0891b2; }

.service-pill-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--lp-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-purple { background: var(--lp-accent-purple-soft); color: var(--lp-accent-purple); }
.tag-teal { background: var(--lp-brand-teal-soft); color: var(--lp-brand-teal-dark); }
.tag-emerald { background: var(--lp-accent-emerald-soft); color: #047857; }
.tag-rose { background: var(--lp-accent-rose-soft); color: #be123c; }
.tag-amber { background: var(--lp-accent-amber-soft); color: #b45309; }
.tag-blue { background: var(--lp-accent-blue-soft); color: var(--lp-accent-blue); }
.tag-pink { background: #fce7f3; color: #be185d; }
.tag-cyan { background: #cffafe; color: #0e7490; }

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lp-brand-teal-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--lp-slate-500);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--lp-slate-700);
  margin-bottom: 8px;
  line-height: 1.45;
}

.service-feature-item i {
  color: var(--lp-accent-emerald);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-card-footer {
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-action-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-brand-teal);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.service-action-link:hover {
  color: var(--lp-accent-mint);
  gap: 10px;
}

/* --------------------------------------------------------------------------
   Sección de Presencia Internacional en LATAM
   -------------------------------------------------------------------------- */
.luppo-latam-section {
  padding: 75px 0;
  background: #ffffff;
  position: relative;
}

.latam-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 35px;
}

.country-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--lp-radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.country-chip:hover {
  background: #ffffff;
  border-color: var(--lp-brand-teal);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(18, 60, 58, 0.1);
}

.country-flag-icon {
  font-size: 34px;
  line-height: 1;
}

.country-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-brand-teal-dark);
  margin: 0;
}

.country-status-badge {
  font-size: 11px;
  color: var(--lp-accent-emerald);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.country-status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--lp-accent-emerald);
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   Sección FAQ Interactivo (Optimizado para SEO / Rich Snippets)
   -------------------------------------------------------------------------- */
.luppo-faq-section {
  padding: 80px 0;
  background: var(--lp-cream-light);
}

.faq-card-modern {
  background: #ffffff;
  border-radius: var(--lp-radius-md);
  border: 1px solid #e2e8f0;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-card-modern:hover {
  border-color: var(--lp-brand-teal);
  box-shadow: 0 6px 16px rgba(18, 60, 58, 0.06);
}

.faq-header-btn {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: transparent;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lp-brand-teal-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-header-btn i {
  color: var(--lp-brand-teal);
  transition: transform 0.3s ease;
}

.faq-header-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: var(--lp-accent-emerald);
}

.faq-body-content {
  padding: 0 22px 20px 22px;
  color: var(--lp-slate-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Sección de Descarga Multiplataforma
   -------------------------------------------------------------------------- */
.luppo-download-section {
  padding: 85px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.store-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--lp-brand-teal-dark);
  color: #ffffff !important;
  padding: 12px 20px;
  border-radius: var(--lp-radius-md);
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(11, 41, 40, 0.2);
  margin: 6px 4px;
}

.store-badge-card:hover {
  background: var(--lp-brand-teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(18, 60, 58, 0.3);
  color: #ffffff !important;
}

.store-badge-card i {
  font-size: 26px;
}

.store-badge-card .store-texts {
  text-align: left;
  line-height: 1.2;
}

.store-badge-card .store-sub {
  font-size: 10px;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.store-badge-card .store-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Sección de Formulario de Contacto Moderno
   -------------------------------------------------------------------------- */
.luppo-contact-card {
  background: #ffffff;
  border-radius: var(--lp-radius-lg);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(11, 41, 40, 0.08);
  border: 1px solid #e2e8f0;
}

.form-group-modern {
  margin-bottom: 20px;
  text-align: left;
}

.form-label-modern {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-slate-700);
  margin-bottom: 6px;
  display: block;
}

.form-control-modern {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--lp-radius-sm);
  font-size: 15px;
  color: var(--lp-slate-800);
  transition: all 0.2s ease;
  background-color: #f8fafc;
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--lp-brand-teal);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(18, 60, 58, 0.15);
}

/* --------------------------------------------------------------------------
   Barra Flotante Móvil Inferior (Mobile Sticky Action Bar)
   -------------------------------------------------------------------------- */
.luppo-mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 41, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(45, 212, 191, 0.25);
  padding: 10px 16px;
  z-index: 9999;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.3);
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.btn-mobile-wa {
  flex: 1;
  background: #25d366;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: var(--lp-radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-mobile-demo {
  flex: 1.2;
  background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: var(--lp-radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Boton flotante WhatsApp Desktop */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.float:hover {
  transform: scale(1.1);
  background-color: #20ba59;
  color: #FFF;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries (Mobile First)
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 72px;
  }

  .luppo-hero-section {
    padding: 95px 0 50px 0;
    text-align: center;
  }

  .luppo-hero-title {
    font-size: 1.8rem;
  }

  .luppo-hero-subtitle {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }

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

  .luppo-hero-highlights {
    justify-content: center;
  }

  .luppo-floating-card {
    display: none;
  }

  .luppo-mobile-sticky-bar {
    display: block;
  }

  .float {
    display: none;
  }

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

  .luppo-contact-card {
    padding: 24px 18px;
  }

  .service-card-modern {
    padding: 22px 18px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .latam-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 992px) {
  .luppo-hero-title {
    font-size: 2.85rem;
  }

  .latam-card-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}
