/* ==========================================================================
   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, #03132e 0%, #062354 50%, #093778 100%);
  color: #ffffff;
  padding: 40px 0 35px 0;
  position: relative;
  overflow: hidden;
}

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

.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;
}

.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;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--carma-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: #0b1f41;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Badge flotante "Más velocidad para tus sueños" */
.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  text-align: right;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  transform: rotate(-3deg);
  pointer-events: none;
  z-index: 2;
}

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

/* --------------------------------------------------------------------------
   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-title {
    font-size: 2.2rem;
  }
  .hero-image-wrapper {
    margin-top: 30px;
  }
  .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;
  }
}
