/* ==========================================================================
   CARMATEL - Estilos Oficiales
   Basado en el diseño corporativo de CARMA ("Conectando Vidas")
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@600;700&display=swap');

:root {
  --carma-blue: #004b9c;
  --carma-blue-dark: #003673;
  --carma-blue-light: #0066cc;
  --carma-navy: #061938;
  --carma-navy-dark: #030f24;
  --carma-yellow: #ffbe0b;
  --carma-yellow-hover: #f5b300;
  --carma-cyan: #00c0f3;
  --carma-text-dark: #1e293b;
  --carma-text-muted: #64748b;
  --carma-bg-light: #f8fafc;
  --carma-card-border: #e2e8f0;
  --carma-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --carma-shadow-md: 0 10px 25px -5px rgba(0, 75, 156, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --carma-shadow-lg: 0 20px 35px -5px rgba(0, 54, 115, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.05);
  --carma-radius-sm: 8px;
  --carma-radius-md: 14px;
  --carma-radius-lg: 20px;
  --carma-radius-pill: 50px;
}

body {
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--carma-text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #0b2246;
}

/* --------------------------------------------------------------------------
   1. TOPBAR
   -------------------------------------------------------------------------- */
.topbar {
  background-color: var(--carma-navy);
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.topbar a:hover {
  color: var(--carma-yellow);
}

.topbar-badge-whatsapp {
  background-color: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--carma-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topbar-badge-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* --------------------------------------------------------------------------
   2. NAVBAR
   -------------------------------------------------------------------------- */
.navbar-carma {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: all 0.3s ease;
}

.navbar-carma.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #334155;
  font-size: 0.98rem;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--carma-blue);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background-color: var(--carma-blue);
  border-radius: 2px;
}

/* Botones principales */
.btn-carma-yellow {
  background-color: var(--carma-yellow);
  color: #051b3d;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: var(--carma-radius-pill);
  border: 2px solid var(--carma-yellow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(255, 190, 11, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-carma-yellow:hover {
  background-color: var(--carma-yellow-hover);
  border-color: var(--carma-yellow-hover);
  color: #030f24;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 190, 11, 0.4);
}

.btn-carma-outline-blue {
  background-color: transparent;
  color: var(--carma-blue);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: var(--carma-radius-pill);
  border: 2px solid var(--carma-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-carma-outline-blue:hover {
  background-color: var(--carma-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 75, 156, 0.25);
}

.btn-carma-outline-light {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: var(--carma-radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-carma-outline-light:hover {
  background-color: #ffffff;
  color: var(--carma-navy);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   3. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(135deg, #021128 0%, #041c42 45%, #072a64 100%);
  color: #ffffff;
  padding: 50px 0 45px 0;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 192, 243, 0.12) 0%, rgba(0, 75, 156, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

/* Portada a todo el ancho y degradado a la izquierda */
.hero-cover-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-cover-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.75) 45%, #000000 70%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.75) 45%, #000000 70%);
}

.hero-cover-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #021128 0%,
    #021128 35%,
    rgba(2, 17, 40, 0.95) 46%,
    rgba(2, 17, 40, 0.65) 58%,
    rgba(2, 17, 40, 0.15) 72%,
    rgba(2, 17, 40, 0) 85%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-text-col {
  position: relative;
  z-index: 3;
}

.hero-badge-col {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 3;
}

.hero-tag {
  color: var(--carma-cyan);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #e2e8f0;
  margin-bottom: 22px;
  font-weight: 400;
}

.hero-pricing-box {
  margin-bottom: 24px;
}

.hero-pricing-label {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 2px;
  font-weight: 500;
}

.hero-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--carma-yellow);
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.hero-price-sub {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f1f5f9;
}

.hero-feat-item i {
  color: var(--carma-yellow);
  font-size: 1.1rem;
}

/* Badge flotante "Más velocidad para tus sueños" */
.hero-floating-badge {
  font-family: 'Caveat', cursive;
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 0.95;
  text-align: right;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9);
  transform: rotate(-5deg);
  pointer-events: none;
  margin-bottom: 15px;
}

.hero-floating-badge::after {
  content: '';
  display: block;
  width: 90%;
  height: 5px;
  background-color: var(--carma-yellow);
  margin-left: auto;
  margin-top: 6px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   4. SECCIÓN PLANES DE INTERNET HOGAR
   -------------------------------------------------------------------------- */
.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.section-main-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0b2246;
  margin-bottom: 8px;
}

.section-sub-title {
  font-size: 1.05rem;
  color: var(--carma-text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.plans-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.plan-card {
  background: #ffffff;
  border: 1px solid var(--carma-card-border);
  border-radius: var(--carma-radius-md);
  padding: 32px 24px 28px 24px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--carma-shadow-sm);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--carma-shadow-md);
  border-color: #cbd5e1;
}

/* Plan destacado (500 Mbps) */
.plan-card.featured {
  border: 2px solid var(--carma-yellow);
  box-shadow: 0 15px 35px -5px rgba(255, 190, 11, 0.25);
}

.plan-badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--carma-yellow);
  color: #051b3d;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: var(--carma-radius-pill);
  box-shadow: 0 4px 10px rgba(255, 190, 11, 0.35);
  white-space: nowrap;
}

.plan-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b2246;
  margin-bottom: 6px;
}

.plan-speed {
  font-size: 2.3rem;
  font-weight: 900;
  color: #0b2246;
  line-height: 1.1;
  margin-bottom: 12px;
}

.plan-speed span {
  font-size: 1.2rem;
  font-weight: 600;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.plan-currency {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0b2246;
}

.plan-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #0b2246;
}

.plan-period {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex-grow: 1;
}

.plan-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #334155;
  font-weight: 500;
  margin-bottom: 12px;
}

.plan-features-list li i {
  color: var(--carma-blue);
  font-size: 0.95rem;
}

.plan-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 10px 16px;
}

/* --------------------------------------------------------------------------
   5. SECCIÓN ¿POR QUÉ ELEGIR CARMA?
   -------------------------------------------------------------------------- */
.why-section {
  padding: 60px 0;
  background-color: var(--carma-bg-light);
}

.why-card {
  text-align: center;
  padding: 20px 15px;
  transition: transform 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005bb7 0%, #003673 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 1.45rem;
  box-shadow: 0 8px 20px rgba(0, 75, 156, 0.22);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon-circle {
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0, 75, 156, 0.32);
}

.why-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b2246;
  margin-bottom: 6px;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--carma-text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   6. SECCIÓN NUESTROS SERVICIOS
   -------------------------------------------------------------------------- */
.services-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.service-card {
  background: #ffffff;
  border-radius: var(--carma-radius-md);
  overflow: hidden;
  box-shadow: var(--carma-shadow-sm);
  border: 1px solid var(--carma-card-border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--carma-shadow-md);
  border-color: #cbd5e1;
}

.service-img-wrap {
  position: relative;
  height: 140px;
  overflow: hidden;
  background-color: #0c1e3d;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-icon-badge {
  position: absolute;
  bottom: -16px;
  left: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005bb7 0%, #003673 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #ffffff;
  z-index: 2;
}

.service-content {
  padding: 24px 16px 20px 16px;
  flex-grow: 1;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b2246;
  margin-bottom: 6px;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--carma-text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   7. SECCIÓN DUAL: COBERTURA & EMPRESAS
   -------------------------------------------------------------------------- */
.dual-banner-section {
  padding: 30px 0 60px 0;
  background-color: #ffffff;
}

/* Tarjeta izquierda: Cobertura */
.coverage-banner-card {
  background: linear-gradient(135deg, #03142f 0%, #062659 100%);
  border-radius: var(--carma-radius-lg);
  color: #ffffff;
  padding: 36px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(3, 20, 47, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coverage-banner-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background-image: url('../images/coverage-map.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mask-image: linear-gradient(to right, transparent, black 40%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
  pointer-events: none;
}

.coverage-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.coverage-header-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(0, 192, 243, 0.15);
  border: 1px solid rgba(0, 192, 243, 0.3);
  color: var(--carma-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.coverage-header-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.coverage-header-subtitle {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
}

.coverage-input-group {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
}

.coverage-input-group .form-control {
  height: 50px;
  border-radius: var(--carma-radius-pill) 0 0 var(--carma-radius-pill);
  border: none;
  padding-left: 20px;
  font-size: 0.95rem;
}

.coverage-input-group .form-control:focus {
  box-shadow: none;
  outline: none;
}

.coverage-input-group .btn {
  background-color: var(--carma-blue);
  color: #ffffff;
  font-weight: 700;
  border-radius: 0 var(--carma-radius-pill) var(--carma-radius-pill) 0;
  padding: 0 24px;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}

.coverage-input-group .btn:hover {
  background-color: var(--carma-blue-light);
}

.coverage-footer-note {
  font-size: 0.82rem;
  color: #cbd5e1;
  position: relative;
  z-index: 2;
  margin: 0;
  line-height: 1.4;
}

.coverage-footer-note a {
  color: var(--carma-yellow);
  text-decoration: underline;
  cursor: pointer;
}

/* Tarjeta derecha: Internet para Empresas */
.enterprise-banner-card {
  background: #ffffff;
  border: 1px solid var(--carma-card-border);
  border-radius: var(--carma-radius-lg);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--carma-shadow-sm);
  transition: all 0.3s ease;
}

.enterprise-banner-card:hover {
  box-shadow: var(--carma-shadow-md);
  border-color: #cbd5e1;
}

.enterprise-icon-wrap {
  width: 54px;
  height: 54px;
  background-color: #f0f7ff;
  border: 1px solid #d0e4ff;
  color: var(--carma-blue);
  border-radius: var(--carma-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.enterprise-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0b2246;
  margin-bottom: 8px;
}

.enterprise-desc {
  font-size: 0.95rem;
  color: var(--carma-text-muted);
  margin-bottom: 24px;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   8. FOOTER
   -------------------------------------------------------------------------- */
.footer-carma {
  background-color: var(--carma-navy-dark);
  color: #94a3b8;
  padding: 60px 0 24px 0;
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-block {
  margin-bottom: 20px;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 14px;
  transition: transform 0.2s ease;
}

.footer-whatsapp-btn i {
  color: #25d366;
  font-size: 1.6rem;
}

.footer-whatsapp-btn:hover {
  transform: translateY(-2px);
  color: var(--carma-yellow) !important;
}

.footer-location-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.4;
}

.footer-location-info i {
  color: var(--carma-cyan);
  margin-top: 3px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #64748b;
}

.footer-social-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.footer-social-links a:hover {
  background: var(--carma-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   9. BOTÓN FLOTANTE DE WHATSAPP
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 1040;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pulse-green 2.5s infinite;
}

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

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --------------------------------------------------------------------------
   10. MODALES INTERACTIVOS
   -------------------------------------------------------------------------- */
.modal-carma .modal-content {
  border-radius: var(--carma-radius-lg);
  border: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.modal-carma .modal-header {
  background: linear-gradient(135deg, #03142f 0%, #062659 100%);
  color: #ffffff;
  padding: 20px 24px;
  border-bottom: none;
}

.modal-carma .modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.modal-carma .modal-body {
  padding: 24px;
}

.modal-carma .form-label {
  font-weight: 600;
  color: #0b2246;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.modal-carma .form-control,
.modal-carma .form-select {
  border-radius: var(--carma-radius-sm);
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
}

.modal-carma .form-control:focus,
.modal-carma .form-select:focus {
  border-color: var(--carma-blue);
  box-shadow: 0 0 0 3px rgba(0, 75, 156, 0.15);
}

/* --------------------------------------------------------------------------
   11. MEDIA QUERIES RESPONSIVAS
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 45px 0 35px 0;
    min-height: auto;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-cover-img {
    width: 100%;
    opacity: 0.22;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-cover-gradient {
    background: linear-gradient(180deg, rgba(2, 17, 40, 0.88) 0%, rgba(2, 17, 40, 0.98) 100%);
  }
  .hero-badge-col {
    min-height: auto;
    margin-top: 25px;
    justify-content: center;
  }
  .hero-floating-badge {
    text-align: center;
    transform: none;
    font-size: 2.1rem;
    margin-bottom: 0;
  }
  .hero-floating-badge::after {
    margin: 4px auto 0 auto;
  }
  .dual-banner-section .col-lg-8,
  .dual-banner-section .col-lg-4 {
    margin-bottom: 24px;
  }
  .footer-social-links {
    justify-content: flex-start;
    margin-top: 14px;
  }
  .navbar-nav .nav-link.active::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-price {
    font-size: 2rem;
  }
  .hero-floating-badge {
    font-size: 1.6rem;
    bottom: 12px;
    right: 12px;
  }
  .coverage-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .coverage-input-group .form-control {
    border-radius: var(--carma-radius-sm) !important;
  }
  .coverage-input-group .btn {
    border-radius: var(--carma-radius-sm) !important;
    justify-content: center;
    height: 46px;
  }
}

/* --------------------------------------------------------------------------
   12. PÁGINA INTERNA: NOSOTROS (ESTILOS CARMA)
   -------------------------------------------------------------------------- */
.page-banner-header {
  background: linear-gradient(135deg, #03132e 0%, #062354 50%, #093778 100%);
  color: #ffffff;
  padding: 55px 0 45px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--carma-yellow);
}

.page-banner-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 192, 243, 0.15) 0%, rgba(0, 75, 156, 0) 70%);
  pointer-events: none;
}

.page-banner-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.page-banner-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #94a3b8;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-breadcrumb a {
  color: var(--carma-yellow);
  text-decoration: none;
  font-weight: 600;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.page-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.4);
}

/* Sección ¿Qué es CARMA? */
.about-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.about-badge {
  color: var(--carma-blue);
  background-color: #e6f0fa;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--carma-radius-pill);
  display: inline-block;
  margin-bottom: 12px;
}

.about-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0b2246;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-highlight-box {
  background: #f8fafc;
  border-left: 4px solid var(--carma-blue);
  padding: 16px 20px;
  border-radius: 0 var(--carma-radius-sm) var(--carma-radius-sm) 0;
  margin: 20px 0 24px 0;
  font-size: 0.95rem;
  color: #334155;
}

.about-img-container {
  position: relative;
  border-radius: var(--carma-radius-lg);
  overflow: hidden;
  box-shadow: var(--carma-shadow-lg);
}

.about-img-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-container:hover img {
  transform: scale(1.02);
}

.about-floating-pill {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(3, 19, 46, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--carma-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-floating-pill i {
  color: var(--carma-yellow);
  font-size: 1.5rem;
}

/* Sección Estadísticas / Métricas */
.stats-banner-section {
  background: linear-gradient(135deg, #051a3a 0%, #08285c 100%);
  color: #ffffff;
  padding: 55px 0;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 15px;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--carma-yellow);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.stat-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0;
}

/* Sección Filosofía y Excelencia */
.philosophy-section {
  padding: 70px 0 50px 0;
  background-color: var(--carma-bg-light);
}

.philosophy-card {
  background: #ffffff;
  border-radius: var(--carma-radius-lg);
  padding: 40px;
  border: 1px solid var(--carma-card-border);
  box-shadow: var(--carma-shadow-sm);
  position: relative;
  margin-bottom: 30px;
}

.philosophy-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 3rem;
  color: rgba(0, 75, 156, 0.07);
}

.philosophy-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0b2246;
  margin-bottom: 16px;
  line-height: 1.3;
}

.philosophy-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Sección Misión y Visión */
.mv-section {
  padding: 20px 0 75px 0;
  background-color: var(--carma-bg-light);
}

.mv-card {
  background: #ffffff;
  border-radius: var(--carma-radius-lg);
  padding: 38px 32px;
  border: 1px solid var(--carma-card-border);
  box-shadow: var(--carma-shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--carma-shadow-md);
  border-color: var(--carma-blue-light);
}

.mv-card.mision-card {
  border-top: 4px solid var(--carma-blue);
}

.mv-card.vision-card {
  border-top: 4px solid var(--carma-yellow);
}

.mv-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--carma-radius-md);
  background: #eff6ff;
  color: var(--carma-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.vision-card .mv-icon-wrap {
  background: #fffbeb;
  color: #d97706;
}

.mv-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0b2246;
  margin-bottom: 14px;
}

.mv-text {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Valores de CARMA */
.values-box {
  background: #ffffff;
  border-radius: var(--carma-radius-md);
  padding: 24px;
  margin-top: 40px;
  border: 1px solid var(--carma-card-border);
  box-shadow: var(--carma-shadow-sm);
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--carma-radius-sm);
  background: #f8fafc;
  font-weight: 700;
  color: #0b2246;
  font-size: 0.95rem;
}

.value-pill i {
  color: var(--carma-blue);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   13. PÁGINA INTERNA: COBERTURA (ESTILOS CARMA - INSPIRADO EN INVENTA.PE)
   -------------------------------------------------------------------------- */
.coverage-nav-tabs {
  border-bottom: 2px solid #e2e8f0;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.coverage-nav-tabs .nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #475569;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--carma-radius-pill) !important;
  padding: 10px 24px !important;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.coverage-nav-tabs .nav-link:hover {
  border-color: var(--carma-blue);
  color: var(--carma-blue);
  background: #f0f7ff;
}

.coverage-nav-tabs .nav-link.active {
  background: linear-gradient(135deg, #004b9c 0%, #003673 100%) !important;
  color: #ffffff !important;
  border-color: var(--carma-blue) !important;
  box-shadow: 0 6px 18px rgba(0, 75, 156, 0.25);
}

.coverage-nav-tabs .nav-link.active i {
  color: var(--carma-yellow);
}

.coverage-map-frame {
  width: 100%;
  height: 520px;
  border-radius: var(--carma-radius-lg);
  overflow: hidden;
  box-shadow: var(--carma-shadow-md);
  border: 2px solid #e2e8f0;
  background-color: #f1f5f9;
}

.coverage-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.coverage-district-box {
  background: #ffffff;
  border-radius: var(--carma-radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--carma-card-border);
  box-shadow: var(--carma-shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.coverage-box-header {
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.coverage-box-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0b2246;
  margin-bottom: 4px;
}

.coverage-box-subtitle {
  font-size: 0.92rem;
  color: var(--carma-text-muted);
  margin-bottom: 0;
}

.coverage-zones-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 8px;
}

.coverage-zones-list::-webkit-scrollbar {
  width: 5px;
}

.coverage-zones-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.coverage-zone-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--carma-radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.coverage-zone-item:hover {
  background: #eff6ff;
  transform: translateX(4px);
}

.coverage-zone-item i {
  color: #10b981;
  font-size: 1rem;
}

.coverage-zone-category {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--carma-blue);
  margin-top: 14px;
  margin-bottom: 6px;
  padding-left: 6px;
  border-left: 3px solid var(--carma-blue);
}

.coverage-cta-banner {
  background: linear-gradient(135deg, #03142f 0%, #062659 100%);
  color: #ffffff;
  border-radius: var(--carma-radius-lg);
  padding: 35px 30px;
  margin-top: 50px;
  box-shadow: var(--carma-shadow-md);
}

.coverage-search-filter {
  position: relative;
  margin-bottom: 24px;
}

.coverage-search-filter input {
  padding-left: 44px;
  height: 48px;
  border-radius: var(--carma-radius-pill);
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
}

.coverage-search-filter i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   14. PÁGINA INTERNA: INTERNET EMPRESAS (ESTILOS CARMA - INVENTA.PE)
   -------------------------------------------------------------------------- */
.empresa-intro-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.empresa-img-wrap {
  position: relative;
  border-radius: var(--carma-radius-lg);
  overflow: hidden;
  box-shadow: var(--carma-shadow-lg);
}

.empresa-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.empresa-img-wrap:hover img {
  transform: scale(1.02);
}

.empresa-floating-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(3, 19, 46, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--carma-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.empresa-floating-tag i {
  color: var(--carma-yellow);
  font-size: 1.6rem;
}

.empresa-solutions-section {
  padding: 60px 0;
  background-color: var(--carma-bg-light);
}

.empresa-solution-card {
  background: #ffffff;
  border-radius: var(--carma-radius-md);
  padding: 30px 24px;
  border: 1px solid var(--carma-card-border);
  box-shadow: var(--carma-shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.empresa-solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--carma-shadow-md);
  border-color: var(--carma-blue-light);
}

.empresa-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: var(--carma-radius-md);
  background: #eff6ff;
  color: var(--carma-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.empresa-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0b2246;
  margin-bottom: 8px;
}

.empresa-card-desc {
  font-size: 0.9rem;
  color: var(--carma-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.empresa-quote-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.empresa-quote-card {
  background: #ffffff;
  border-radius: var(--carma-radius-lg);
  padding: 40px;
  border: 1px solid var(--carma-card-border);
  box-shadow: var(--carma-shadow-md);
}

.empresa-quote-card .form-label {
  font-weight: 700;
  color: #0b2246;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.empresa-quote-card .form-control,
.empresa-quote-card .form-select {
  border-radius: var(--carma-radius-sm);
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
}

.empresa-quote-card .form-control:focus,
.empresa-quote-card .form-select:focus {
  border-color: var(--carma-blue);
  box-shadow: 0 0 0 3px rgba(0, 75, 156, 0.15);
}

.benefit-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #f8fafc;
  border-radius: var(--carma-radius-sm);
  border: 1px solid #e2e8f0;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.92rem;
}

.benefit-badge-item i {
  color: var(--carma-blue);
  font-size: 1.3rem;
}

/* ==========================================================================
   ESTILOS: INTERNET RURAL (ESTILO INSPIRADO EN INTERNETADOMICILIO.COM + CARMA)
   ========================================================================== */
.rural-hero {
  position: relative;
  background: radial-gradient(circle at top right, #0056b3, #061938 75%);
  color: #ffffff;
  padding: 80px 0 90px 0;
  overflow: hidden;
}

.rural-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.rural-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 199, 0, 0.15);
  border: 1px solid var(--carma-yellow);
  color: var(--carma-yellow);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.rural-hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
}

.rural-hero-title span {
  color: var(--carma-yellow);
}

.rural-hero-subtitle {
  font-size: 1.12rem;
  color: #cbd5e1;
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.rural-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  color: #e2e8f0;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Soluciones Inalámbricas (Cards) */
.rural-solution-card {
  background: #ffffff;
  border-radius: var(--carma-radius-lg);
  border: 1px solid var(--carma-card-border);
  box-shadow: var(--carma-shadow-sm);
  padding: 32px 26px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rural-solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--carma-shadow-md);
  border-color: var(--carma-blue);
}

.rural-solution-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #eff6ff;
  color: var(--carma-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.rural-solution-card:hover .rural-solution-icon {
  background: var(--carma-blue);
  color: #ffffff;
}

/* Zonas de Aplicación */
.rural-zone-card {
  background: #ffffff;
  border-radius: var(--carma-radius-lg);
  border: 1px solid var(--carma-card-border);
  overflow: hidden;
  box-shadow: var(--carma-shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rural-zone-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--carma-shadow-md);
}

.rural-zone-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.rural-zone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rural-zone-card:hover .rural-zone-img {
  transform: scale(1.06);
}

.rural-zone-body {
  padding: 22px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.rural-zone-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--carma-dark);
  margin-bottom: 8px;
}

.rural-zone-text {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Red Inalámbrica y Ventajas (Estilo Timeline con Checkmarks) */
.rural-network-box {
  background: transparent;
  padding: 10px 0;
}

.rural-network-timeline,
.rural-network-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.rural-network-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 22px;
}

.rural-network-item:last-child {
  padding-bottom: 0;
}

.rural-network-item:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 19px;
  width: 2px;
  height: calc(100% - 22px);
  background-color: #e2e8f0;
}

.rural-network-check,
.rural-network-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #ef4444;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rural-network-item:hover .rural-network-check,
.rural-network-item:hover .rural-network-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.22);
}

.rural-network-text strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--carma-dark);
  margin-bottom: 3px;
}

.rural-network-text p {
  font-size: 0.93rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Badges de Tecnología */
.badge-tech-fibra {
  background-color: #eff6ff !important;
  color: #004b9c !important;
  border: 1px solid #bfdbfe !important;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-tech-inalambrica {
  background-color: #fffbeb !important;
  color: #b45309 !important;
  border: 1px solid #fde68a !important;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}



