/* =========================
   VARIABLES Y BASE
   ========================= */

:root {
  /* Colores base (puedes ajustarlos a tu paleta exacta) */
  --primary-color: #0d6efd;      /* azul principal */
  --primary-dark: #0b5ed7;
  --accent-teal: #00d4ff;
  --accent-green: #22c55e;
  --accent-yellow: #eab308;
  --bg-dark: #020617;
  --text-muted: #6b7280;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  scroll-behavior: smooth;
  background-color: #f3f4f6;
  color: #111827;
  margin: 0;
}

/* =========================
   NAVBAR
   ========================= */

.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    padding 0.3s ease;
  background: transparent;
  padding-block: 0.8rem;
}

.navbar-scrolled {
  background: rgba(2, 8, 23, 0.92) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  padding-block: 0.5rem;
}

/* Tamaño del logo en la navbar */
.logo-nav {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-footer {
  height: 38px;   /* antes 26px */
  width: auto;
  object-fit: contain;
  opacity: 0.95;  /* se ve más premium */
}


.navbar-dark .navbar-nav .nav-link {
  color: #e5e7eb;
  font-weight: 500;
  font-size: 0.95rem;
}

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

.navbar .btn-primary {
  border-radius: 999px;
  padding-inline: 1.4rem;
}

/* Navbar sólida cuando el menú móvil está abierto */
@media (max-width: 991.98px) {
  .navbar.navbar-open {
    background: rgba(2, 8, 23, 0.96) !important;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  }

  /* opcional: que el contenido desplegado no tenga otro fondo raro */
  .navbar.navbar-open .navbar-collapse {
    background: transparent;
  }
}


/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  min-height: 100vh;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Fondo con gradiente + imagen */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.75) 0%,
      rgba(15, 23, 42, 0.72) 35%,
      rgba(15, 23, 42, 0.70) 100%
    ),
    url("../img/hero-bg-tracker7.webp") center center / cover no-repeat;
  z-index: 1;
}

/* halo de luz extra */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 80%, rgba(15, 23, 42, 0.8), transparent 60%),
    radial-gradient(circle at 100% 0%, rgba(15, 23, 42, 0.9), transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

/* Badge superior */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.8rem;
  backdrop-filter: blur(16px);
}

.hero-badge i {
  font-size: 1rem;
  color: var(--accent-teal);
}

/* Título principal */
.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-top: 1rem;
}

.hero-title span {
  background: linear-gradient(
    120deg,
    #38bdf8,
    var(--accent-green),
    var(--accent-yellow)
  );
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: #e5e7eb;
  max-width: 32rem;
}

/* Botones hero */
.hero .btn-lg {
  border-radius: 999px;
}

.hero .btn-light {
  color: #0f172a;
}

.hero .btn-light:hover {
  background-color: #e5e7eb;
}

.hero .btn-outline-light {
  border-radius: 999px;
  border-width: 1.5px;
}

/* =========================
   HERO STATS – 3 TARJETAS
   ========================= */

.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.25rem;
  margin-top: 2rem;
}

.hero-stat {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1.1rem;
  border-radius: 1.1rem;
  background: radial-gradient(circle at top left,
              rgba(56, 189, 248, 0.18),
              rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.38);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-stat h4 {
  margin: 0 0 0.1rem 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-stat span {
  font-size: 0.78rem;
  color: #cbd5f5;
  white-space: nowrap;
}

/* =========================
   HERO MOCKUP – dispositivos
   ========================= */

.hero-devices-wrapper {
  position: relative;
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-devices {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  animation: hero-devices-float 8s ease-in-out infinite;
}

.hero-devices-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mockup más grande en pantallas grandes (tipo Carplus) */
@media (min-width: 1200px) {
  .hero-devices-wrapper {
    justify-content: flex-end;
  }

  .hero-devices {
    width: 135%;
    transform: translateX(40px);
  }
}

/* Flotación suave */
@keyframes hero-devices-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* =========================
   ALERTA EMERGENTE (más pequeña)
   ========================= */

.hero-alert-card {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;

  display: flex;
  align-items: center;
  gap: 0.55rem;

  background: rgba(15, 23, 42, 0.92);
  padding: 0.28rem 0.95rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);

  color: #ffffff;
  max-width: 260px;

  animation: alert-slide-in 0.9s ease-out forwards;
  opacity: 0;
}

.alert-warning-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  font-size: 0.8rem;

  background: linear-gradient(135deg, #facc15, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 6px rgba(253, 224, 71, 0.6);
  font-size: 0.8rem;
  color: #1e1e1e;
  flex-shrink: 0;
}

.hero-alert-content strong {
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 0px;
  display: block;
}

.hero-alert-content .small {
  font-size: 0.62rem !important;
  color: #e5e7eb !important;
  line-height: 1.05;
}

.hero-alert-status {
  margin-top: 3px;
  font-size: 0.6rem;
  color: #fef9c3;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-dot.status-warning {
  width: 5px;
  height: 5px;
  background: #facc15;
  box-shadow: 0 0 5px rgba(250, 204, 21, 0.8);
  border-radius: 999px;
}

@keyframes alert-slide-in {
  0% {
    transform: translateY(-10px) translateX(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
}

/* =========================
   SECCIONES GENERALES
   ========================= */

section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.section-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

/* =========================
   SERVICIOS
   ========================= */

.shadow-soft {
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.12),
    rgba(129, 140, 248, 0.16)
  );
  margin-bottom: 1rem;
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--primary-color);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  font-size: 0.9rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.feature-list li i {
  color: var(--accent-green);
}

/* =========================
   PLATAFORMA
   ========================= */

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 0.75rem;
}

.platform-card {
  border-radius: 1.4rem;
  border: 1px solid #e5e7eb;
  padding: 1.6rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  background-color: #ffffff;
}

/* =========================
   PLANES
   ========================= */

.pricing-card {
  border-radius: 1.4rem;
  border: 1px solid #e5e7eb;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  height: 100%;
  background-color: #ffffff;
}

.pricing-card.highlight {
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: visible; /* dejamos que el badge salga un poquito arriba */
}

/* Anulamos el pseudo-elemento viejo por si quedó en caché */
.pricing-card.highlight::before {
  content: none;
}

/* Nuevo badge centrado y bonito */
.best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
}


.price {
  font-size: 2rem;
  font-weight: 700;
}

.price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Espaciado planes: switcher vs tarjetas */
#planes .billing-toggle {
  margin-top: 0.5rem;
}

#planes .pricing-row {
  margin-top: 2rem;    /* separa las tarjetas del switcher */
}


/* =========================
   NOSOTROS
   ========================= */

#nosotros .shadow-soft {
  background: #ffffff;
}

/* =========================
   CONTACTO
   ========================= */
/* =========================
   CONTACTO
   ========================= */

.contact-section {
  background: radial-gradient(circle at top left, #020617, #020617);
  color: #e5e7eb;
}

/* Tarjeta del formulario */
.contact-card {
  background: rgba(15, 23, 42, 0.94);
  border-radius: 1.4rem;
  padding: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  /* corregido el espacio en box-shadow */
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
}

.contact-label {
  font-size: 0.85rem;
  color: #9ca3af;
}

.form-control,
.form-select {
  background-color: rgba(15, 23, 42, 0.9);
  border-color: rgba(55, 65, 81, 0.9);
  color: #e5e7eb;
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(15, 23, 42, 0.9);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.5);
  color: #f9fafb;
}

.form-control::placeholder {
  color: #6b7280;
}

/* ========== MAPA ========== */

.map-embed {
  position: relative;
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);

  /* Altura clara para que el iframe use el 100% */
  height: 320px;
  max-height: 380px;

  /* Fondo de seguridad mientras carga */
  background: radial-gradient(circle at top, #1e293b, #020617);

  /* Sombra suave tipo iOS */
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);

  /* Animación de entrada */
  animation: map-appear 0.9s ease-out forwards;
}

/* El iframe ocupa todo el contenedor sin cortar */
.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Halo suave arriba del mapa (da sensación de profundidad) */
.map-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center,
    rgba(15, 23, 42, 0.20),
    transparent 55%);
  pointer-events: none;
}

/* Efecto hover (solo desktop) */
@media (hover: hover) {
  .map-embed:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.95);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

/* Animación de aparición */
@keyframes map-appear {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Ajuste en móvil: un poco menos alto para que no ocupe todo */
@media (max-width: 991.98px) {
  .map-embed {
    height: 260px;
    max-height: 300px;
    margin-top: 1.5rem;
  }

  .contact-card {
    margin-bottom: 1.5rem;
  }
}


/* =========================
   FOOTER
   ========================= */

footer {
  background: #020617;
  color: #9ca3af;
  position: relative;                 /* para el separador */
  box-shadow: 0 -1px 0 rgba(15, 23, 42, 0.9); /* línea superior muy sutil */
}

/* “Glow” suave arriba del footer tipo 3D */
footer::before {
  content: "";
  position: absolute;
  top: -18px;                         /* sube el halo para que no tape nada */
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 70%);
  height: 18px;

  background: radial-gradient(
    circle at center,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(15, 23, 42, 0) 70%
  );
  opacity: 0.7;
  pointer-events: none;
}

footer a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.9rem;
}

footer a:hover {
  text-decoration: underline;
}

.social-link {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #e5e7eb;
}

.social-link:hover {
  background: rgba(148, 163, 184, 0.16);
}





/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 991.98px) {
  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  /* 1) CENTRAR BOTONES DEL HERO EN MÓVIL */
  .hero-content .d-flex.flex-wrap.gap-3 {
    justify-content: center;      /* centra los botones */
  }

  /* 2) STATS EN UNA SOLA FILA EN MÓVIL */
  .hero-stats {
    flex-direction: row;          /* fila */
    flex-wrap: nowrap;            /* no se rompen */
    justify-content: center;
    align-items: stretch;
    gap: 0.7rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stat {
    padding: 0.7rem 0.6rem;       /* un poquito más compactas */
  }

  .hero-stat h4 {
    font-size: 1.1rem;
  }

  .hero-stat span {
    font-size: 0.7rem;
    white-space: normal;          /* permite saltos de línea si hace falta */
  }

  .hero-devices-wrapper {
    margin-top: 2rem;
    justify-content: center;
  }

  .hero-devices {
    width: 100%;
    transform: none;
  }

  /* ALERTA EN MÓVIL: PEQUEÑA Y ESQUINA SUPERIOR DERECHA */
  .hero-alert-card {
    top: 0.45rem;
    right: 0.45rem;
    left: auto;
    bottom: auto;
    transform: none;
    max-width: 220px;
    padding: 0.25rem 0.8rem;
  }

  .hero-alert-content strong {
    font-size: 0.68rem;
  }

  .hero-alert-content .small {
    font-size: 0.58rem !important;
  }

  .hero-alert-status {
    font-size: 0.56rem;
  }
}


.platform-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.platform-box {
  background: #ffffff;
  padding: 1.8rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(129,140,248,0.16));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: .8rem;
}

/* MOCKUP DEL CELULAR */
.phone-mockup {
  position: relative;
  width: 280px;
  margin-inline: auto;
}

.phone-frame {
  width: 100%;
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.phone-screen {
  position: absolute;
  inset: 8.5% 11%;
  background: #ffffff;
  border-radius: 1.4rem;
  overflow: hidden;
  z-index: 1;
}

/* ENCABEZADO APP */
.phone-header {
  background: #f8fafc;
  padding: .8rem;
  text-align: center;
  font-weight: 700;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
}

/* MAPA SIMULADO */
.phone-map {
  background: url("img/map-preview.png") center / cover;
  height: 200px;
  width: 100%;
}

/* TARJETA INFERIOR */
.phone-card {
  background: #ffffff;
  padding: 1rem;
  border-top-left-radius: 1.6rem;
  border-top-right-radius: 1.6rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.vehicle-info {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}

.vehicle-avatar {
  width: 46px;
  height: 46px;
  border-radius: .8rem;
  object-fit: cover;
  background: #f1f5f9;
}

/* BOTONES */
.phone-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
}

.app-btn {
  flex: 1;
  border: none;
  background: #f9fafb;
  padding: .6rem;
  border-radius: .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}

.app-btn i {
  font-size: 1.1rem;
  color: #f59e0b;
}


/* =========================
   PLATAFORMA – LAYOUT TIPO CARPLUS
   ========================= */

.platform-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f3f4f6;
}

.platform-section .row {
  align-items: stretch;
}

/* Tarjetas de la plataforma (cuadros blancos) */
.platform-box {
  background: #ffffff;
  padding: 1.8rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 18px 40px rgba(15,23,42,0.06);
}

/* Para que las cards llenen bien la columna en pantallas grandes */
@media (min-width: 992px) {
  .platform-section .col-lg-4.d-flex {
    align-items: stretch;
  }
}

/* Icono circular suave */
.icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(
    135deg,
    rgba(59,130,246,0.13),
    rgba(129,140,248,0.18)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: .85rem;
}

/* =========================
   MOCKUP DEL CELULAR (SOLO IMAGEN)
   ========================= */

.phone-mockup {
  position: relative;
  width: 300px;
  margin-inline: auto;
  animation: phone-float 6s ease-in-out infinite;
  transform-origin: center center;
}

.phone-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.25));
  border-radius: 40px; /* ajusta según tu mockup */
}

/* Flotación suave del mockup */
@keyframes phone-float {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-10px) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
}

/* Responsive para móvil / tablet */
@media (max-width: 991.98px) {
  .platform-section {
    text-align: center;
  }

  .platform-section .col-lg-4.d-flex {
    align-items: stretch;
  }

  .phone-mockup {
    width: 240px;
    animation-duration: 8s;
    margin-bottom: 2rem;
  }

  .platform-box {
    text-align: left;
  }
}

/* ===== Modal Fondo ===== */
.server-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* ===== Contenido ===== */
.server-modal-content {
  background: #ffffff;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.server-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* ===== Tarjetas de Servidores ===== */
.server-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.server-card {
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(0,0,0,0.06);
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.server-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.server-icon {
  font-size: 2rem;
  color: #0d6efd;
}

.server-card h6 {
  margin: 0;
  font-weight: 700;
}

.latency {
  font-size: .8rem;
  color: #6b7280;
}

.server-btn {
  margin-top: .5rem;
  background: #0d6efd;
  color: white;
  border: none;
  padding: .45rem 1.2rem;
  border-radius: .7rem;
  font-size: .85rem;
  transition: background .3s ease;
}

.server-btn:hover {
  background: #0a58ca;
}

/* ===== Botón cerrar ===== */
.close-modal-btn {
  margin-top: 1rem;
  width: 100%;
  border: none;
  background: #e5e7eb;
  padding: .6rem;
  border-radius: .8rem;
  font-weight: 500;
}

.close-modal-btn:hover {
  background: #d1d5db;
}


