.cvt-contenedor,
.cvt-detalle {
  width: 100%;
  margin: 0 auto;
}

.cvt-titulo {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 1.2;
}

.cvt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cvt-tarjeta {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cvt-tarjeta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
}

.cvt-imagen-contenedor {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cvt-imagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cvt-enlace-imagen {
  display: block;
  width: 100%;
  height: 100%;
}

.cvt-sin-imagen {
  color: #666;
  font-size: 14px;
}

.cvt-contenido {
  padding: 20px;
}

.cvt-nombre {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.cvt-enlace-titulo {
  color: inherit;
  text-decoration: none;
}

.cvt-enlace-titulo:hover {
  text-decoration: underline;
}

.cvt-categoria,
.cvt-detalle-categoria {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.cvt-tarifas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.cvt-tarifa-linea {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.cvt-stock {
  margin: 0 0 10px;
  font-size: 14px;
}

.cvt-disponibilidad {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.cvt-disponible {
  color: #0f7b32;
}

.cvt-no-disponible {
  color: #b42318;
}

.cvt-acciones {
  margin-top: 18px;
}

.cvt-boton {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.cvt-boton:hover {
  color: #ffffff;
  opacity: 0.94;
}

.cvt-boton-reservar {
  background: #dc2626;
}

.cvt-mensaje {
  padding: 16px;
  border-radius: 12px;
  margin: 16px 0;
}

.cvt-error {
  background: #fdecec;
  color: #8a1f11;
  border: 1px solid #f5c2c0;
}

.cvt-vacio {
  background: #f7f7f7;
  color: #444;
  border: 1px solid #e2e2e2;
}

.cvt-detalle-heroe {
  margin-bottom: 28px;
}

.cvt-detalle-superior {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}

.cvt-detalle-imagen-marco,
.cvt-caja,
.cvt-bloque {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cvt-detalle-imagen-marco {
  overflow: hidden;
  background: #f5f5f5;
}

.cvt-detalle-imagen {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cvt-detalle-titulo {
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.1;
}

.cvt-detalle-subtitulo {
  margin: 0 0 12px;
  font-size: 18px;
  color: #374151;
}

.cvt-etiqueta {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 13px;
  font-weight: 700;
}

.cvt-detalle-descripcion {
  margin-bottom: 18px;
  color: #374151;
  font-size: 16px;
  line-height: 1.7;
}

.cvt-detalle-descripcion p {
  margin-bottom: 14px;
}

.cvt-detalle-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: #111827;
}

.cvt-caja {
  padding: 22px;
  margin-bottom: 24px;
}

.cvt-caja-destacada {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.cvt-caja h2,
.cvt-caja h3 {
  margin-top: 0;
}

.cvt-lista-bloques {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cvt-bloque {
  padding: 18px;
}

.cvt-bloque h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.cvt-bloque p:last-child {
  margin-bottom: 0;
}

.cvt-galeria {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cvt-galeria-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.cvt-galeria-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.cvt-cta {
  margin-top: 16px;
}

.cvt-faq-lista {
  display: grid;
  gap: 14px;
}

.cvt-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
}

.cvt-faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.cvt-faq-respuesta {
  margin-top: 12px;
  color: #374151;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .cvt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cvt-detalle-superior {
    grid-template-columns: 1fr;
  }

  .cvt-lista-bloques {
    grid-template-columns: 1fr;
  }

  .cvt-galeria {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cvt-grid {
    grid-template-columns: 1fr;
  }

  .cvt-detalle-titulo {
    font-size: 30px;
  }

  .cvt-galeria {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
