@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #111111;
  background: #ffffff;
  padding-top: 104px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  color-scheme: light;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

nav ul,
.menu,
.redes,
.contact-us,
.filtros,
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

@media (max-width: 900px) {
  .grid-servicios {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .contacto-container {
    grid-template-columns: 1fr;
  }
  .pasos-grid {
    flex-direction: column;
    align-items: center;
  }
  .paso-flecha {
    display: none;
  }
  .-inner {
    flex-direction: column;
    text-align: center;
  }
  .testimonios-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .ubicacion-inner {
    grid-template-columns: 1fr !important;
  }
  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .form-reserva {
    padding: 20px;
  }
  .form-reserva .grid {
    grid-template-columns: 1fr;
  }
  .producto img {
    height: 160px;
  }
  .fechas-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .grid-servicios {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .producto img {
    height: 160px;
  }
  .producto h3 {
    font-size: 16px;
  }
  .marcas-logos {
    gap: 20px;
  }
  .marca-nombre {
    font-size: 15px !important;
  }
  .whatsapp-flotante {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}
.barra-descuento {
  background: #1b35c4;
  color: #ffffff;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  overflow: hidden;
}
.barra-descuento .barra-track {
  display: flex;
  width: max-content;
  animation: scrollBarra 28s linear infinite;
}
.barra-descuento .barra-track:hover {
  animation-play-state: paused;
}
.barra-descuento .barra-track span {
  font-size: 13px;
  color: #ffffff;
  white-space: nowrap;
  padding: 0 20px;
}
.barra-descuento .barra-track span strong {
  font-size: 14px;
  letter-spacing: 0.5px;
}

@keyframes scrollBarra {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.header {
  position: fixed;
  top: 34px;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

.logo img {
  display: block;
  height: 65px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.menu li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  color: #111111;
}
.menu li a:hover {
  background: #1b35c4;
  color: #ffffff;
}

.hamburguesa {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.hamburguesa span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: all 0.3s;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.overlay.active {
  display: block;
}

@media (max-width: 900px) {
  .hamburguesa {
    display: flex;
  }
  .menu {
    position: fixed;
    top: 104px;
    right: -100%;
    flex-direction: column;
    background: #ffffff;
    width: 260px;
    height: calc(100vh - 104px);
    padding: 24px 16px;
    gap: 4px;
    transition: right 0.3s ease;
    z-index: 1000;
    margin-left: 0;
  }
  .menu.active {
    right: 0;
  }
  .menu li a {
    display: block;
    font-size: 15px;
    padding: 12px 16px;
    color: #111111 !important;
  }
  .menu li a:hover {
    background: #1b35c4;
    color: #ffffff;
  }
}
.footer {
  background: #111111;
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: 60px;
}
.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.footer h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer ul li {
  margin-bottom: 8px;
  font-size: 14px;
}
.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}
.footer a:hover {
  color: #0077ff;
}
.footer-copy, .footer-credit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.footer .redes {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .redes li {
  margin: 0;
}
.footer .redes a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.footer .redes a:hover {
  color: #ffffff;
}
.footer .redes a svg {
  flex-shrink: 0;
}
.footer .contact-us li {
  margin-bottom: 12px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
  padding: 0 40px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 20px 0;
  }
  .footer-bottom .redes {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer .redes {
    justify-content: center;
    margin-top: 12px;
  }
  .footer-copy, .footer-credit {
    text-align: center;
  }
}

.carrito-nav {
  position: relative;
  flex-shrink: 0;
}

.carrito-icono {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
}
.carrito-icono:hover {
  background: rgba(255, 255, 255, 0.25);
}
.carrito-icono.shake {
  animation: shakePop 0.3s ease;
}

#contadorCarrito {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0077ff;
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  line-height: 1;
}

@keyframes shakePop {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.25);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1100;
}
.overlay.active {
  display: block;
}

.carrito-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 100vw;
  height: 100%;
  background: #ffffff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.carrito-panel.active {
  transform: translateX(0);
}

.carrito-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}
.carrito-header h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
  color: #111111;
  text-transform: uppercase;
}
.carrito-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #555555;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
  line-height: 1;
}
.carrito-header button:hover {
  background: #f5f7fa;
  color: #111111;
}

#listaCarrito {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.carrito-footer {
  padding: 16px 24px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.total-carrito {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #111111;
}
.total-carrito span {
  color: #0077ff;
  font-size: 18px;
}

.btn-vaciar {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: #555555;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  transition: all 0.2s ease;
}
.btn-vaciar:hover {
  background: #e0e0e0;
  color: #111111;
}

.btn-finalizar {
  display: block;
  width: 100%;
  padding: 14px;
  background: #0077ff;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn-finalizar:hover {
  background: rgb(0, 95.2, 204);
  transform: translateY(-1px);
  color: #ffffff;
}
.btn-finalizar.disabled {
  background: #e0e0e0;
  color: #555555;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.item-carrito {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f7fa;
  font-size: 13px;
}
.item-carrito .item-info {
  flex: 1;
  min-width: 0;
}
.item-carrito .item-info strong {
  display: block;
  font-size: 14px;
  color: #111111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item-carrito .item-info small {
  color: #555555;
  font-size: 12px;
}
.item-carrito .item-controles {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.item-carrito .item-controles button {
  width: 26px;
  height: 26px;
  padding: 0;
  background: #f5f7fa;
  color: #111111;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1;
  transition: background 0.2s ease;
}
.item-carrito .item-controles button:hover {
  background: #e0e0e0;
}
.item-carrito .item-controles span {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
.item-carrito .item-precio {
  font-weight: 700;
  white-space: nowrap;
  font-size: 13px;
  color: #111111;
  flex-shrink: 0;
}
.item-carrito .eliminar {
  background: none;
  border: none;
  color: #e74c3c;
  font-size: 16px;
  padding: 0 4px;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.item-carrito .eliminar:hover {
  color: rgb(213.698630137, 43.8356164384, 26.301369863);
}

@media (max-width: 480px) {
  .carrito-panel {
    width: 100vw;
  }
}
.productos {
  padding: 60px 16px;
  background: #f5f7fa;
  text-align: center;
}
.productos h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111111;
}

.grid-productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 20px;
  background-image: url("../img/cerro-bayo.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 14px;
}

.producto {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.producto:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.producto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.producto h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 12px 4px;
  color: #111111;
}
.producto p {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin: 0 12px 10px;
}
.producto select {
  width: calc(100% - 24px);
  margin: 0 12px 10px;
  padding: 8px 10px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.producto select:hover {
  border-color: #999;
}
.producto select:focus {
  outline: none;
  border-color: #0077ff;
  box-shadow: 0 0 0 2px rgba(0, 119, 255, 0.15);
}
.producto .btn-agregar,
.producto > button {
  margin: auto 12px 12px;
  padding: 10px;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.producto .btn-agregar:hover,
.producto > button:hover {
  background: #0077ff;
  color: #ffffff;
}
.producto .producto-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.productos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 13px;
  color: #555555;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}
.breadcrumb a {
  color: #0077ff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.breadcrumb a:hover {
  opacity: 0.75;
}
.breadcrumb span {
  color: #555555;
}
.breadcrumb .breadcrumb-sep {
  color: #e0e0e0;
  font-size: 12px;
}
.breadcrumb .breadcrumb-actual {
  color: #111111;
  font-weight: 500;
}
@media (max-width: 480px) {
  .breadcrumb {
    padding: 12px 20px;
  }
}

.campo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.campo label {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
}
.campo input,
.campo select,
.campo textarea {
  padding: 10px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  color: #111111;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.campo input:focus,
.campo select:focus,
.campo textarea:focus {
  outline: none;
  border-color: #0077ff;
  box-shadow: 0 0 0 2px rgba(0, 119, 255, 0.15);
}
.campo input::placeholder,
.campo select::placeholder,
.campo textarea::placeholder {
  color: #aaa;
}
.campo textarea {
  resize: vertical;
  min-height: 120px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.btn {
  display: inline-block;
  background: #0077ff;
  color: #ffffff;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.1s ease;
  text-decoration: none;
  text-align: center;
}
.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #ffffff;
}
.btn:active {
  transform: translateY(0);
}

.form-reserva {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.form-reserva .btn {
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
  padding: 14px;
}

.hts-privacy-agree {
  margin-bottom: 16px;
  font-size: 13px;
  color: #555555;
}
.hts-privacy-agree label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
}
.hts-privacy-agree input[type=checkbox] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #0077ff;
}
.hts-privacy-agree a {
  color: #0077ff;
  text-decoration: underline;
}
.hts-privacy-agree a:hover {
  opacity: 0.8;
}

.validate-message {
  font-size: 13px;
  color: #e74c3c;
  margin-bottom: 10px;
  min-height: 18px;
}

.tabla-precios-equipos,
.tabla-precios-indumentaria {
  padding: 32px 16px;
  max-width: 860px;
  margin: 0 auto;
  min-width: 0;
  overflow: visible;
}
.tabla-precios-equipos h2,
.tabla-precios-indumentaria h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111111;
}
.tabla-precios-equipos p,
.tabla-precios-indumentaria p {
  text-align: center;
  color: #555555;
  margin-bottom: 16px;
  font-size: 14px;
}

.tabla-wrapper {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tabla {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.tabla thead {
  background: #111111;
  color: #ffffff;
}
.tabla thead th {
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}
.tabla th,
.tabla td {
  border: 1px solid #e0e0e0;
  text-align: center;
  padding: 7px 10px;
  font-size: 13px;
}
.tabla tbody tr {
  transition: background 0.15s ease;
}
.tabla tbody tr:nth-child(even) {
  background: #f9f9f9;
}
.tabla tbody tr:hover {
  background: #f0f4ff;
}
.tabla tbody td:first-child {
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
  color: #111111;
}
.tabla .precio {
  font-weight: 600;
  color: #111111;
}
.tabla .precio:hover {
  background: #e8f0fe;
  color: #0077ff;
}
.tabla .fila-descuento {
  background: #1b35c4 !important;
}
.tabla .fila-descuento td {
  color: #ffffff !important;
  font-weight: 600;
  text-align: center;
  font-style: italic;
}
.tabla .fila-descuento td:first-child {
  color: #ffffff !important;
  font-style: normal;
  font-weight: 700;
}
.tabla .fila-descuento:hover {
  background: rgb(23.9125560538, 46.9394618834, 173.5874439462) !important;
}
@media (max-width: 768px) {
  .tabla th,
  .tabla td {
    font-size: 11px;
    padding: 6px 8px;
  }
}

.tabla td:first-child,
.tabla th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #ffffff;
}
.tabla thead th:first-child {
  background: #111111;
}
.tabla tbody tr:nth-child(even) td:first-child {
  background: #f9f9f9;
}
.tabla tbody tr:hover td:first-child {
  background: #f0f4ff;
}
.tabla .fila-descuento td:first-child {
  background: #1b35c4;
}

#toast-contenedor {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  width: calc(100vw - 48px);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  pointer-events: all;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast.toast-visible {
  opacity: 1;
  transform: translateY(0);
}
.toast.toast-success {
  background: #eaf3de;
  border-left: 4px solid #3b6d11;
  color: #27500a;
}
.toast.toast-error {
  background: #fcebeb;
  border-left: 4px solid rgb(213.698630137, 43.8356164384, 26.301369863);
  color: rgb(145.5821917808, 29.8630136986, 17.9178082192);
}
.toast.toast-warning {
  background: #faeeda;
  border-left: 4px solid #854f0b;
  color: #633806;
}
.toast.toast-info {
  background: #e6f1fb;
  border-left: 4px solid #1b35c4;
  color: rgb(20.8251121076, 40.8789237668, 151.1748878924);
}

.toast-icono {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.toast-mensaje {
  flex: 1;
}

.toast-cerrar {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  opacity: 0.5;
  padding: 0;
  flex-shrink: 0;
  line-height: 1;
  color: inherit;
  transition: opacity 0.15s;
}
.toast-cerrar:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  #toast-contenedor {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }
}
.hero {
  position: relative;
  text-align: center;
}
.hero img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
}
.hero-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  background: transparent;
  padding: 0;
  width: auto;
  text-align: left;
  max-width: 560px;
}
.hero-content h1 {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: -0.5px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-content .hero-sub {
  display: block;
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-content .hero-bajada {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.hero .btn-hero {
  display: inline-block;
  background: #1b35c4;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}
.hero .btn-hero:hover {
  background: rgb(22.0600896861, 43.3031390135, 160.1399103139);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .hero img {
    max-height: 480px;
  }
  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 30px;
  }
  .hero-content h1, .hero-content .hero-sub {
    font-size: 30px;
  }
  .hero-content .hero-bajada {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .hero-content h1, .hero-content .hero-sub {
    font-size: 24px;
  }
}

.selector-fechas {
  background: #f5f7fa;
  padding: 40px 24px;
}
.selector-fechas-inner {
  max-width: 900px;
  margin: 0 auto;
}
.selector-fechas-inner h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
}

.fechas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .fechas-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .fechas-grid {
    grid-template-columns: 1fr;
  }
}

.fecha-campo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fecha-campo label {
  font-size: 13px;
  font-weight: 600;
  color: #555555;
}
.fecha-campo input[type=date],
.fecha-campo select {
  padding: 10px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: #111111;
  background: #ffffff;
  transition: border-color 0.2s;
}
.fecha-campo input[type=date]:focus,
.fecha-campo select:focus {
  outline: none;
  border-color: #1b35c4;
}

.btn-buscar {
  display: inline-block;
  background: #1b35c4;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}
.btn-buscar:hover {
  background: rgb(22.0600896861, 43.3031390135, 160.1399103139);
  transform: translateY(-1px);
}

.fechas-nota {
  text-align: center;
  font-size: 13px;
  color: #22c55e;
  margin-top: 12px;
  font-weight: 500;
}

.trust-section {
  padding: 60px 24px;
  background: #ffffff;
}
.trust-section .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .trust-section .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .trust-section .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 14px;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.2s;
}
.trust-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.trust-item .trust-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}
.trust-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}
.trust-item p {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
}

.como-funciona {
  background: #111111;
  padding: 60px 24px;
  color: #ffffff;
}
.como-funciona-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.como-funciona-inner h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}
.como-funciona-inner .como-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 40px;
}

.pasos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.paso {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 20px;
}
.paso-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1b35c4;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.paso h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.paso p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.paso-flecha {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .paso-flecha {
    display: none;
  }
}

.packs {
  padding: 60px 24px;
  background: #f5f7fa;
  text-align: center;
}
.packs h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 8px;
}
.packs-subtitulo {
  font-size: 16px;
  color: #555555;
  margin-bottom: 36px;
}
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .packs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}
.packs-cta-extra {
  margin-top: 28px;
}

.link-ver-todos {
  font-size: 15px;
  font-weight: 600;
  color: #1b35c4;
}
.link-ver-todos:hover {
  text-decoration: underline;
}

.pack-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 0 0 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  text-align: left;
}
.pack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.pack-card--destacado {
  border: 2px solid #1b35c4;
}

.pack-badge-popular {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1b35c4;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
}

.pack-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.pack-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin: 16px 20px 8px;
}

.pack-items {
  list-style: none;
  padding: 0 20px;
  margin-bottom: 8px;
}
.pack-items li {
  font-size: 14px;
  color: #555555;
  padding: 3px 0;
}

.pack-marcas {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1b35c4;
  text-transform: uppercase;
  padding: 0 20px;
  margin-bottom: 12px;
}

.pack-precio {
  padding: 0 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pack-precio-desde {
  font-size: 12px;
  color: #555555;
}
.pack-precio-num {
  font-size: 28px;
  font-weight: 800;
  color: #111111;
}
.pack-precio-dia {
  font-size: 13px;
  color: #555555;
}

.pack-btn {
  display: block;
  margin: 0 20px;
  background: #1b35c4;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s;
}
.pack-btn:hover {
  background: rgb(22.0600896861, 43.3031390135, 160.1399103139);
}

.testimonios {
  background: #ffffff;
  padding: 60px 24px;
}
.testimonios-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.testimonios-inner h2 {
  font-size: 30px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 36px;
}
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .testimonios-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .testimonios-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.testimonio-card {
  background: #f5f7fa;
  border-radius: 14px;
  padding: 24px;
  text-align: left;
}
.testimonio-card .estrellas {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonio-card p {
  font-size: 14px;
  color: #555555;
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonio-card-autor {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
}

.marcas-section {
  padding: 32px 16px;
  text-align: center;
}
.marcas-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111111;
}

.marcas-track-wrapper {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marcas-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollMarcas 30s linear infinite;
}
.marcas-track:hover {
  animation-play-state: paused;
}

.marca-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  padding: 0 32px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.marca-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scrollMarcas {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ubicacion-section {
  background: #f5f7fa;
  padding: 60px 24px;
}
.ubicacion-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .ubicacion-section-inner {
    grid-template-columns: 1fr;
  }
}
.ubicacion-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
}
.ubicacion-section .ubicacion-dir {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 16px;
}
.ubicacion-section .ubicacion-datos {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.ubicacion-section .ubicacion-datos li {
  font-size: 15px;
  color: #555555;
  margin-bottom: 8px;
}
.ubicacion-section .ubicacion-datos li a {
  color: #1b35c4;
}
.ubicacion-section .ubicacion-datos li a:hover {
  text-decoration: underline;
}

.btn-wa {
  display: inline-block;
  background: #25d366;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s;
}
.btn-wa:hover {
  background: rgb(30.9129032258, 176.2870967742, 85.2193548387);
}

.faq-section {
  background: #ffffff;
  padding: 60px 24px;
}
.faq-section-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-section-inner h2 {
  font-size: 30px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 32px;
  text-align: center;
}
.faq-section .faq-lista {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: #1b35c4;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #555555;
  line-height: 1.65;
}

.cta-reserva {
  background: #1b35c4;
  padding: 48px 24px;
}
.cta-reserva-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-reserva-texto h2 {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}
.cta-reserva-texto p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.cta-reserva-btn {
  background: #ffffff;
  color: #1b35c4;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-reserva-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  background-color: #22c55e;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cta-reserva-inner {
    flex-direction: column;
    text-align: center;
  }
}

.whatsapp-flotante {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-flotante svg {
  width: 28px;
  height: 28px;
}
.whatsapp-flotante:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.whatsapp-flotante:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(-104%);
}
.whatsapp-flotante .wa-tooltip {
  position: absolute;
  right: 68px;
  background: #111111;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-96%);
  transition: opacity 0.2s, transform 0.2s;
}
.whatsapp-flotante .wa-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #111111;
}

.hero-tienda {
  position: relative;
  min-height: 400px;
  background-image: url("../../img/snow/fotosnow1.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.tienda-portada-texto {
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  padding: 30px;
  z-index: 1;
}
.tienda-portada-texto h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tienda-portada-texto p {
  font-size: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.lista-productos-tienda {
  padding: 60px 32px;
}
.lista-productos-tienda h1 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111111;
}

.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.filtros button {
  padding: 8px 20px;
  border: 1.5px solid #e0e0e0;
  border-radius: 20px;
  background: transparent;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.filtros button:hover, .filtros button.activo {
  background: #1b35c4;
  color: #ffffff;
  border-color: #1b35c4;
}

.menu-tienda {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.detalle-producto {
  padding: 60px 32px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.detalle-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.detalle-card--reverse {
  direction: rtl;
}
.detalle-card--reverse > * {
  direction: ltr;
}
@media (max-width: 768px) {
  .detalle-card {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.detalle-galeria img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.detalle-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detalle-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.detalle-precio {
  font-size: 24px;
  font-weight: 700;
  color: #0077ff;
  margin: 0;
}

.detalle-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.detalle-select {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detalle-select label {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
}
.detalle-select select {
  padding: 10px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.detalle-select select:focus {
  outline: none;
  border-color: #0077ff;
}

.guia-tallas {
  margin-top: 8px;
}
.guia-tallas h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111111;
}

.tabla-tallas {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tabla-tallas th {
  background: #111111;
  color: #ffffff;
  padding: 8px 12px;
  text-align: left;
  font-weight: 500;
}
.tabla-tallas td {
  padding: 8px 12px;
  border-bottom: 1px solid #e0e0e0;
  color: #111111;
}
.tabla-tallas tr:nth-child(even) td {
  background: #f5f7fa;
}

.productos-relacionados {
  padding: 60px 32px;
  background: #f5f7fa;
}
.productos-relacionados h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111111;
}

.aviso-proximamente {
  max-width: 700px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 2px dashed #0077ff;
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.aviso-proximamente .aviso-icono {
  font-size: 48px;
}
.aviso-proximamente p {
  font-size: 16px;
  color: #555555;
  margin: 0;
  line-height: 1.6;
}
.aviso-proximamente p strong {
  font-size: 20px;
  color: #1b35c4;
  display: block;
  margin-bottom: 6px;
}
.aviso-proximamente .aviso-btn {
  background: #0077ff;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.aviso-proximamente .aviso-btn:hover {
  background: #1b35c4;
  color: #ffffff;
}
@media (max-width: 768px) {
  .aviso-proximamente {
    margin: 24px 20px;
    padding: 28px 20px;
  }
}

.aviso-proximamente {
  max-width: 700px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #1b35c4, #0077ff);
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.aviso-proximamente .aviso-icono {
  font-size: 48px;
}
.aviso-proximamente p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}
.aviso-proximamente p strong {
  font-size: 22px;
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}
.aviso-proximamente .aviso-btn {
  background: #ffffff;
  color: #1b35c4;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.aviso-proximamente .aviso-btn:hover {
  background: #f5f7fa;
  color: #1b35c4;
}
@media (max-width: 768px) {
  .aviso-proximamente {
    margin: 24px 20px;
    padding: 28px 20px;
  }
}

.contacto {
  padding: 60px 32px;
}
.contacto-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contacto-container {
    grid-template-columns: 1fr;
  }
}
.contacto-info h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111111;
}
.contacto-info p {
  color: #555555;
  margin-bottom: 20px;
  font-size: 15px;
}
.contacto-info ul {
  margin-bottom: 24px;
}
.contacto-info ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #111111;
}
.contacto-info iframe {
  border-radius: 10px;
  margin-top: 10px;
  width: 100%;
}
.contacto-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.contacto-form h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111111;
}
.contacto-form .btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 16px;
}

@media (max-width: 480px) {
  .contacto {
    padding: 60px 16px;
  }
  .contacto-form {
    padding: 20px;
  }
}
.privacidad {
  padding: 60px 32px;
  background: #f5f7fa;
  min-height: 60vh;
}
.privacidad-container {
  max-width: 800px;
  margin: 0 auto;
}
.privacidad-container > h1 {
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
  padding-bottom: 16px;
  border-bottom: 3px solid #0077ff;
}
.privacidad-fecha {
  color: #555555;
  font-size: 13px;
  margin-bottom: 32px;
  display: block;
}
.privacidad-bloque {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.privacidad-bloque h2 {
  font-size: 17px;
  font-weight: 600;
  color: #1b35c4;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.privacidad-bloque h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background: #0077ff;
  border-radius: 2px;
  flex-shrink: 0;
}
.privacidad-bloque p {
  font-size: 14px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 8px;
}
.privacidad-bloque p:last-child {
  margin-bottom: 0;
}
.privacidad-bloque ul {
  padding-left: 0;
  list-style: none;
  margin-top: 8px;
}
.privacidad-bloque ul li {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid #f5f7fa;
}
.privacidad-bloque ul li:last-child {
  border-bottom: none;
}
.privacidad-bloque ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0077ff;
  font-size: 13px;
}
.privacidad-bloque a {
  color: #0077ff;
  text-decoration: underline;
}
.privacidad-bloque a:hover {
  opacity: 0.8;
}
.privacidad-volver {
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .privacidad {
    padding: 32px 16px;
  }
}
@media (max-width: 480px) {
  .privacidad {
    padding: 16px;
  }
  .privacidad-bloque {
    padding: 18px;
  }
}

.contacto-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  margin: 16px 0;
  transition: background 0.2s, transform 0.15s;
  width: fit-content;
}
.contacto-wa-btn:hover {
  background: #1da851;
  transform: translateY(-1px);
}

.hero-alquiler {
  position: relative;
  min-height: 220px;
  background-image: url("../../img/snow/1.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.reservas {
  padding: 60px 16px;
  background: #f5f7fa;
}
.reservas h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111111;
}
.reservas p {
  text-align: center;
  color: #555555;
  margin-bottom: 24px;
  font-size: 15px;
}

.tienda-portada-texto {
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  padding: 30px;
  z-index: 1;
}
.tienda-portada-texto h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tienda-portada-texto p {
  font-size: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.banner-compact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1b35c4;
  border-radius: 10px;
  padding: 10px 18px;
  margin-bottom: 8px;
  margin-top: 0;
}
.banner-compact-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  line-height: 1;
}
.banner-compact-texto {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.banner-compact-titulo {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}
.banner-compact-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.banners-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .banners-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.banner-temp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111111;
  border-radius: 10px;
  padding: 10px 18px;
}
.banner-temp-badge {
  background: #0077ff;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  line-height: 1;
  white-space: nowrap;
}
.banner-temp-texto {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.banner-temp-titulo {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}
.banner-temp-fechas {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.equipos-ref {
  padding: 32px 16px;
  background: #f5f7fa;
}

.equipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .equipos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .equipos-grid {
    grid-template-columns: 1fr;
  }
}

.equipo-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  overflow: hidden;
}
.equipo-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.equipo-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.equipo-card-titulo {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
}
.equipo-card-desc {
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
}
.equipo-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: #f5f7fa;
  color: #555555;
  border: 1px solid #e0e0e0;
}
.tag-blue {
  background: #e8f0fe;
  color: #1b35c4;
  border-color: #1b35c4;
}

.equipos-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px;
}

.equipos-page-header {
  text-align: center;
  margin-bottom: 60px;
}
.equipos-page-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}
.equipos-page-header p {
  font-size: 16px;
  color: #555555;
}

.equipo-detalle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e0e0e0;
}
.equipo-detalle:last-child {
  border-bottom: none;
}
.equipo-detalle--reverse {
  direction: rtl;
}
.equipo-detalle--reverse .equipo-detalle-info {
  direction: ltr;
}
.equipo-detalle--reverse .equipo-detalle-img {
  direction: ltr;
}
@media (max-width: 900px) {
  .equipo-detalle {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
}

.equipo-detalle-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.equipo-detalle-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.equipo-detalle-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #1b35c4;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.equipo-detalle-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.equipo-detalle-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}
.equipo-detalle-info p {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.equipo-detalle-ideal {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1b35c4 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.equipo-detalle-incluye h3 {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 8px;
}
.equipo-detalle-incluye ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.equipo-detalle-incluye ul li {
  font-size: 14px;
  color: #555555;
}

.equipo-detalle-marcas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.equipo-detalle-disclaimer {
  font-size: 12px !important;
  color: #111111 !important;
  font-style: italic;
}

.equipos-filtros {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center;
  justify-content: center;
}

.filtro-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 2px solid #e0e0e0;
  background: transparent;
  color: #111111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filtro-btn:hover {
  border-color: #1b35c4;
  color: #1b35c4;
}
.filtro-btn.active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.filtro-dropdown {
  position: relative;
}
.filtro-dropdown.active .filtro-dropdown-toggle {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.filtro-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 100;
  min-width: 140px;
  overflow: hidden;
}
.filtro-dropdown-menu.open {
  display: flex;
  flex-direction: column;
}

.subfiltro-btn {
  padding: 10px 16px;
  border: none;
  background: transparent;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: #111111;
  cursor: pointer;
  transition: background 0.15s ease;
}
.subfiltro-btn:hover {
  background: #f5f7fa;
}
.subfiltro-btn.active {
  background: #f5f7fa;
  font-weight: bold;
  color: #1b35c4;
}

.equipo-card.v2 {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s ease;
}
.equipo-card.v2:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.equipo-card-v2-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 0;
  gap: 8px;
}

.equipo-card-v2-titulo {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
  letter-spacing: 0.3px;
}

.equipo-card-v2-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.equipo-card-v2-badge.badge-azul {
  background: #e8f0fe;
  color: #1b35c4;
}
.equipo-card-v2-badge.badge-verde {
  background: #e6f9ee;
  color: #16a34a;
}
.equipo-card-v2-badge.badge-gris {
  background: #f5f7fa;
  color: #555555;
  border: 1px solid #e0e0e0;
}

.equipo-card-v2-desc {
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
  padding: 10px 16px 0;
}

.equipo-card.v2 .equipo-card-tags {
  padding: 8px 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.equipo-card-v2-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin-top: 14px;
  background: #f5f7fa;
}

.equipo-card-v2-beneficios {
  list-style: none;
  padding: 12px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.equipo-card-v2-beneficios li {
  font-size: 12px;
  color: #16a34a;
  font-weight: 500;
}

.equipo-card-v2-precio {
  padding: 14px 16px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.equipo-card-v2-precio .precio-monto {
  font-size: 26px;
  font-weight: 800;
  color: #111111;
  line-height: 1;
}
.equipo-card-v2-precio .precio-dia {
  font-size: 13px;
  color: #555555;
}

.equipo-card-v2-btn {
  display: block;
  margin: 14px 16px 16px;
  padding: 13px;
  background: #1b35c4;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.equipo-card-v2-btn:hover {
  background: #0077ff;
  color: #ffffff;
}

.equipo-detalle-btn {
  align-self: flex-start;
  padding: 12px 28px;
  background: #1b35c4;
  color: #ffffff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.equipo-detalle-btn:hover {
  background: #0077ff;
  color: #ffffff;
}

.tablas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
.tablas-grid > * {
  min-width: 0;
}
@media (max-width: 1024px) {
  .tablas-grid {
    grid-template-columns: 1fr;
    padding: 0 16px 40px;
  }
}

.tarifas-hero {
  background: linear-gradient(135deg, #1b35c4 0%, #0d1f7a 100%);
  padding: 60px 20px 40px;
  text-align: center;
  color: #ffffff;
}
.tarifas-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.tarifas-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
}

.descuentos-section {
  max-width: 900px;
  margin: 0 auto 24px;
  padding: 0 20px;
}

.descuentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .descuentos-grid {
    grid-template-columns: 1fr;
  }
}

.descuento-card {
  border-left: 4px solid;
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
}
.descuento-card h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.descuento-card p {
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}
.descuento-card--efectivo {
  background: #f8faff;
  border-color: #1b35c4;
}
.descuento-card--efectivo h2 {
  color: #1b35c4;
}
.descuento-card--efectivo p {
  color: #444;
}
.descuento-card--temporada {
  background: #f0fff4;
  border-color: #16a34a;
}
.descuento-card--temporada h2 {
  color: #16a34a;
}
.descuento-card--temporada p {
  color: #444;
}
.descuento-card--piezasuelta {
  background: #fffbeb;
  border-color: #d97706;
}
.descuento-card--piezasuelta h2 {
  color: #92400e;
}
.descuento-card--piezasuelta p {
  color: #444;
}

.tablas-grid {
  display: block;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
@media (max-width: 1024px) {
  .tablas-grid {
    padding: 0 16px 40px;
  }
}

.tabla-precios-equipos,
.tabla-precios-indumentaria {
  overflow: visible;
  max-width: 100%;
  width: 100%;
  margin-bottom: 40px;
}
.tabla-precios-equipos h2,
.tabla-precios-indumentaria h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 14px;
}

.tabla-wrapper {
  overflow-x: auto;
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.tarifas-nota {
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 0 20px;
}
.tarifas-nota-inner {
  background: #f5f7fa;
  border-radius: 10px;
  padding: 24px;
  border: 1px solid #e0e0e0;
}
.tarifas-nota h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1b35c4;
  margin-bottom: 10px;
}
.tarifas-nota ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}
.tarifas-nota li {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.8;
}

.checkout-main {
  padding: 32px 16px;
  background: #f5f7fa;
  min-height: 70vh;
}

.checkout-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }
}

.checkout-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 24px;
  margin-bottom: 20px;
  border-top: 3px solid #1b35c4;
}

.checkout-sticky {
  position: sticky;
  top: calc(70px + 20px);
  border-top: 3px solid #0077ff;
}

.checkout-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid #e0e0e0;
}
.checkout-card-header h2 {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.checkout-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1b35c4;
  color: #ffffff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-dias {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 16px;
  background: #e8f0fe;
  border-radius: 6px;
  font-size: 14px;
  color: #1b35c4;
  font-weight: 500;
  border-left: 3px solid #1b35c4;
}
.checkout-dias strong {
  font-size: 20px;
  font-weight: 700;
}

.cantidad-esquiadores {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cant-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  background: #ffffff;
  color: #111111;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.cant-btn:hover {
  background: #1b35c4;
  color: #ffffff;
  border-color: #1b35c4;
}

.cant-num {
  font-size: 28px;
  font-weight: 700;
  color: #1b35c4;
  min-width: 32px;
  text-align: center;
}

.cant-hint {
  font-size: 13px;
  color: #555555;
}

.esquiador-card {
  background: #f5f7fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 3px solid #1b35c4;
}
.esquiador-card:last-child {
  margin-bottom: 0;
}

.esquiador-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.esquiador-header .esq-num {
  width: 28px;
  height: 28px;
  background: #1b35c4;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.esquiador-header .esq-titulo {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
}
.esquiador-header .esq-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: #e8f0fe;
  color: #1b35c4;
}

.esq-section {
  font-size: 11px;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 14px 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e0e0e0;
}

.nivel-section {
  font-size: 11px;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 14px 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e0e0e0;
}

.nivel-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.nivel-toggle .nivel-btn {
  flex: 1;
  padding: 10px 8px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  background: #ffffff;
  color: #555555;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.nivel-toggle .nivel-btn:hover {
  border-color: #1b35c4;
  color: #1b35c4;
}
.nivel-toggle .nivel-btn.activo {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.esq-recomendacion {
  background: #f5f7fa;
  border-left: 3px solid #1b35c4;
  border-radius: 0 6px 6px 0;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.esq-recomendacion-titulo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1b35c4;
  margin-bottom: 8px;
}
.esq-recomendacion-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: #e8f0fe;
  color: #1b35c4;
}
.esq-recomendacion-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.esq-recomendacion-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
}
.esq-recomendacion-label {
  color: #555555;
  min-width: 120px;
  flex-shrink: 0;
}
.esq-recomendacion-valor {
  font-weight: 600;
  color: #111111;
}
.esq-recomendacion-nota {
  font-size: 11px;
  color: #555555;
}

.tipo-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.tipo-toggle .tipo-btn {
  flex: 1;
  padding: 10px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  background: #ffffff;
  color: #555555;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.tipo-toggle .tipo-btn.activo {
  background: #1b35c4;
  color: #ffffff;
  border-color: #1b35c4;
}

.accesorio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.accesorio-row .acc-label {
  font-size: 13px;
  color: #111111;
  font-weight: 500;
  flex: 1;
  min-width: 100px;
}
.accesorio-row .acc-toggle {
  display: flex;
  gap: 4px;
}
.accesorio-row .acc-toggle button {
  padding: 5px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  background: #ffffff;
  color: #555555;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.accesorio-row .acc-toggle button.activo {
  background: #1b35c4;
  color: #ffffff;
  border-color: #1b35c4;
}
.accesorio-row select {
  padding: 6px 10px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
}

.checkout-lista {
  margin-bottom: 16px;
}

.resumen-grupo {
  margin-bottom: 12px;
}
.resumen-grupo .resumen-grupo-titulo {
  font-size: 12px;
  font-weight: 600;
  color: #1b35c4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e8f0fe;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 13px;
}
.checkout-item .checkout-item-info {
  color: #555555;
}
.checkout-item .checkout-item-precio {
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
}

.checkout-totales {
  border-top: 1.5px solid #e0e0e0;
  padding-top: 14px;
  margin-bottom: 16px;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555555;
  margin-bottom: 8px;
}

.checkout-total-final {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1.5px solid #e0e0e0;
}
.checkout-total-final span:last-child {
  color: #0077ff;
}

.checkout-btn-confirmar {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #1b35c4, #0077ff);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(27, 53, 196, 0.3);
  transition: all 0.2s ease;
}
.checkout-btn-confirmar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 53, 196, 0.4);
  color: #ffffff;
}
.checkout-btn-confirmar:active {
  transform: translateY(0);
}
.checkout-btn-confirmar:disabled {
  background: #e0e0e0;
  color: #555555;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.checkout-volver {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #555555;
  padding: 8px;
  transition: color 0.2s ease;
}
.checkout-volver:hover {
  color: #0077ff;
}

.checkout-exito {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.checkout-exito-inner {
  background: #ffffff;
  border-radius: 14px;
  padding: 48px 40px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  animation: exitoAppear 0.3s ease;
}
.checkout-exito-inner h2 {
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}
.checkout-exito-inner p {
  font-size: 15px;
  color: #555555;
  margin-bottom: 24px;
  line-height: 1.6;
}

@keyframes exitoAppear {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.checkout-exito-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

.checkout-exito-info {
  background: #f5f7fa;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 28px;
  font-size: 14px;
  color: #111111;
  text-align: left;
  line-height: 2;
  border-left: 3px solid #0077ff;
}

.hts-privacy-agree {
  margin-bottom: 16px;
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
}
.hts-privacy-agree label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.hts-privacy-agree input[type=checkbox] {
  margin-top: 3px;
  flex-shrink: 0;
}
.hts-privacy-agree a {
  color: #0077ff;
  text-decoration: underline;
}
.hts-privacy-agree a:hover {
  color: #1b35c4;
}

.confirmacion-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 16px 80px;
}

.confirmacion-hero {
  text-align: center;
  padding: 48px 20px 40px;
}
.confirmacion-hero h1 {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}
.confirmacion-hero p {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.confirmacion-check {
  width: 80px;
  height: 80px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: checkPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes checkPop {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.confirmacion-numero {
  display: inline-block;
  background: #f5f7fa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  color: #555555;
}
.confirmacion-numero strong {
  color: #1b35c4;
  font-size: 16px;
  margin-left: 4px;
}

.confirmacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .confirmacion-grid {
    grid-template-columns: 1fr;
  }
}

.confirmacion-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 28px;
}
.confirmacion-card h2 {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.conf-fila {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px solid #f5f7fa;
}
.conf-fila span {
  color: #555555;
}
.conf-fila strong {
  color: #111111;
  text-align: right;
  max-width: 60%;
}
.conf-fila--total {
  margin-top: 4px;
  padding-top: 14px;
  border-bottom: none;
}
.conf-fila--total span {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
}
.conf-fila--total strong {
  font-size: 20px;
  color: #1b35c4;
}

.conf-separador {
  height: 1px;
  background: #e0e0e0;
  margin: 8px 0;
}

.conf-pasos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.conf-pasos li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.conf-pasos li strong {
  display: block;
  font-size: 14px;
  color: #111111;
  margin-bottom: 3px;
}
.conf-pasos li p {
  font-size: 13px;
  color: #555555;
  margin: 0;
  line-height: 1.5;
}

.conf-paso-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #1b35c4;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.confirmacion-acciones {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-conf-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-conf-wa:hover {
  opacity: 0.88;
}

.btn-conf-inicio {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #e0e0e0;
  color: #111111;
  transition: border-color 0.2s;
}
.btn-conf-inicio:hover {
  border-color: #1b35c4;
  color: #1b35c4;
}

/*# sourceMappingURL=styles.css.map */
