bodyw {
  margin: 0;
  background: #0c1c2d;
  background-size: 40%;
  color: #eee;
  font-family: 'Open Sans', sans-serif;
}

body {
  /* Fondo azulado con degradado plateado */
  min-height: 100vh;
  /*background: linear-gradient(135deg, #0c1c2d 0%, #0c1c2d 60%, #363c86 90%);  */
  background: linear-gradient(180deg, #0c1c2d 50%, #0c1c2d 50%, #181d56 100%);
  color: #eee;
  font-family: 'Open Sans', sans-serif;
  /* #1e3c72 y #2a5298 son tonos de azul, #c0c0c0 es plateado */
}

header {
  background: linear-gradient(#0c1c2d, #0c1c2d);
  /* padding: 15px; */
  text-align: center;
  border-top: 2px solid #aaa;
  /* Borde superior */
  border-bottom: 2px solid #aaa;
  /* Borde inferior */
  border-left: none;
  border-right: none;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  margin: 15px 0px 15px 0px;
}

header .logo {
  max-width: 100%;
  height: auto;
  width: 400px;
}

.div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  background: #0c1c2d;
  width: 100%;
}

.filters2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  background: #0c1c2d;
  padding: 20px;

  border-top: 2px solid #aaa;
  /* Borde superior */
  border-bottom: 2px solid #aaa;
  /* Borde inferior */
  border-left: 2px solid #aaa;
  border-right: 2px solid #aaa;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);

  width: 60%;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to bottom, #333 0%, #444 100%);
  /* Degradado gris oscuro */
  padding: 20px;

  border-radius: 10px;
  border-top: 3px solid #aaa;
  /* Borde metálico arriba */
  border-bottom: 3px solid #aaa;
  /* Borde metálico abajo */
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
  /* Sutil relieve interior */
  width: 78%;
}

.filters select,
.filters button {
  padding: 10px 15px;
  font-size: 14px;
  background: #222;
  /* Fondo de selects oscuros */
  color: #fff;
  border: 1px solid #555;
  border-radius: 4px;
}

.filters button {
  background: #337ab7;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.filters button:hover {
  background: #286090;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  background: #060f17;
  /* Fondo oscuro de la card */
  border: 2px solid #aaa;
  /* Borde metálico gris claro */
  border-radius: 8px;
  /* Esquinas redondeadas */
  overflow: hidden;
  /* Para que imagen y highlight se ajusten */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  /* Sombra profunda para flotar */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Efecto suave al pasar cursor */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.9);
}

.highlight {
  background: linear-gradient(to bottom, #8B0000, #600000);
  /* Degradé rojo oscuro */
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card img {
  display: block;
  /* La convierte en bloque */
  margin: 0 auto;
  /* Centra horizontalmente */
  max-width: 90%;
  /* Opcional: que no se salga de la card */
  height: auto;
  /* Mantiene proporción */
  padding: 10px 0;
  /* Espacio superior e inferior */
}

.separador {
  height: 10px;
}


.info {
  padding: 10px;
  background: #060f17;
  display: flex;
  /* Habilita Flexbox */
  flex-direction: column;
  /* Organiza elementos en columna */
  align-items: center;
  /* Centra horizontalmente */
  justify-content: center;
  /* Centra verticalmente (opcional) */
  text-align: center;
  /* Centra texto dentro de cada párrafo */
  color: white;
}

.info p {
  margin: 5px 0;
}

.model {
  font-weight: bold;
}

.price {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.strip {
  width: 100%;
  height: 10px;
  /* Ajusta la altura según la franja que desees */
  background: linear-gradient(to right, #999, #ccc, #999);
  /* Degradado metálico horizontal */
  border-top: 2px solid #aaa;
  /* Borde superior para realce */
  border-bottom: 2px solid #888;
  /* Borde inferior para sombra */
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
  /* Relieve interno */
  margin: 20px 0;
  /* Espaciado arriba y abajo */
}

.h5,
h5 {
  font-size: 1.0rem !important;
  line-height: 1.8 !important;
}

@media (min-width: 1200px) {

  .h2,
  h2 {
    font-size: 1.325rem 21.2px;
  }
}

.h2,
h2 {
  font-size: calc(1.325rem + .9vw);

}

/* Contenedor del toggle */

.menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
}

/* Las 3 líneas */
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.4s;
}


@media (max-width: 768px) {
  .menu-toggle {
    top: auto;
    /* desactiva posición superior */
    bottom: 20px;
    /* activa posición inferior */
    left: 20px;
    /* puedes usar right: 20px si prefieres */
  }
}


/* Menú lateral */
.side-menu {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 1000;
}

.side-menu a {
  padding: 10px 30px;
  text-decoration: none;
  font-size: 18px;
  color: #ddd;
  display: block;
  transition: 0.3s;
}

.side-menu a:hover {
  background-color: #333;
  color: #fff;
}

/* Estado abierto: animación de hamburguesa a X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}




.footer {
  /*background-color: #111;*/
  color: #ddd;
  padding: 40px 20px 20px;
  font-family: 'Open Sans', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-links,
.footer-contact {
  flex: 1;
  min-width: 200px;
  margin: 20px 0;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 10px;
}

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

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

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: filter 0.3s;
}

.footer-social img:hover {
  filter: invert(0.7);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
}





.navbar {
  background: linear-gradient(to bottom, #333, #444);
  padding: 10px 20px;
  border-top: 3px solid #aaa;
  border-bottom: 3px solid #aaa;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.navbar-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.navbar-toggle {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  display: none;
}

.navbar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}


/* Responsive: ocultar filtros y mostrar toggle en móvil */
@media screen and (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }

  .navbar-filters {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
  }

  .navbar-filters.show {
    display: flex;
  }
}


.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination a {
  display: inline-block;
  padding: 10px 16px;
  background: #1f1f2e;
  color: #ddd;
  text-decoration: none;
  border-radius: 30px;
  border: 1px solid #444;
  transition: all 0.3s ease;
  font-size: 14px;
  min-width: 44px;
  text-align: center;
}

.pagination a:hover {
  background: #007bff;
  color: white;
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

.pagination a.active {
  background: #007bff;
  color: #fff;
  font-weight: bold;
  border: 1px solid #0056b3;
}



/* 1 columna para smartphones */
breakpoint {
  max-width: 100%;
  display: inline-block;
}

/* 2 columnas para tablets */
@media (min-width: 420px) {
  breakpoint {
    max-width: 48%;
  }
}

/* 4 columnas para grandes dispositivos*/
@media (min-width: 760px) {
  breakpoint {
    max-width: 24%;
  }
}

.boton-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fbfafa;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 20px 12px 16px;
  font-size: 16px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.boton-flotantew:hover {
  background-color: #f40b0b;
}

.boton-flotante i {
  margin-right: 10px;
  font-size: 18px;
}

.boton-flotante .icono-compuesto {
  position: relative;
  display: inline-block;
}

.boton-flotante .bi-plus {
  position: absolute;
  bottom: -6px;
  right: -6px;
  font-size: 10px;
  background: white;
  color: #f40b0b;
  border-radius: 50%;
  padding: 2px;
}



.registro-pasos-swiper {
  padding: 30px 15px;
  background: linear-gradient(to bottom, #f1f1f1, #e0e0e0);
  text-align: center;
}

.registro-pasos-swiper h2 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #333;
}

.swiper {
  padding: 20px 10px;
  
}

.swiper-slide {
  max-width: 320px;
  margin: 0 auto;
}

.paso {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
}

.paso-numero {
  background: #007bff;
  color: white;
  font-size: 20px;
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paso h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #222;
}

.paso p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.3;
}

/* Tamaño adaptable */
@media (min-width: 768px) {
  .swiper {
    width: 70%;
  }
}





































.boton-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
 

.icono-compuesto i {
  margin-right: 5px;
}

.submenu-flotante {
  background: white;
  border: 1px solid white;
  border-radius: 10px;
  position: absolute;
  bottom: 60px;
  right: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 10px;
  min-width: 160px;
}

.submenu-link {
  display: block;
  padding: 8px 10px;
  color: #25D366;
  text-decoration: none;
  font-weight: bold;
}

.submenu-link:hover {
  background-color: white;
  border-radius: 6px;
}
