.equipos-venta {
  padding: 88px 0;
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.equipos-venta-encabezado {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.equipos-venta-etiqueta {
  display: inline-block;
  margin-bottom: 10px;
  color: #ef8b00;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.equipos-venta-encabezado h2 {
  margin: 0 0 12px;
  color: #075b35;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.equipos-venta-encabezado p {
  margin: 0;
  color: #5e6964;
  font-size: 18px;
}

.equipos-venta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.equipo-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8e4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 91, 53, .09);
  transition: transform .25s ease, box-shadow .25s ease;
}

.equipo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(7, 91, 53, .15);
}

.equipo-imagen {
  position: relative;
  display: block;
  width: 100%;
  height: 295px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 5px solid #f3a000;
  background: #fff;
  cursor: pointer;
}

.equipo-imagen::before {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border-radius: 5px;
  color: #1d2500;
  background: #f7c600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
  content: "Disponible";
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.equipo-imagen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .35s ease;
}

.equipo-imagen span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 20px;
  color: #fff;
  background: rgba(0, 0, 0, .76);
  font-size: 12px;
  font-weight: 700;
}

.equipo-card:hover .equipo-imagen img {
  transform: scale(1.025);
}

.equipo-contenido {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.equipo-tipo {
  margin: 0 0 5px;
  color: #ef8b00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.equipo-contenido h3 {
  margin: 0 0 9px;
  color: #111;
  font-size: 25px;
  font-weight: 800;
}

.equipo-datos {
  min-height: 48px;
  margin-bottom: 16px;
  color: #5e6964;
  line-height: 1.55;
}

.equipo-precio {
  margin: auto 0 20px;
  color: #075b35;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.equipo-precio small {
  display: block;
  margin-bottom: 4px;
  color: #707a75;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.equipo-precio span {
  color: #ef8b00;
  font-size: 14px;
}

.equipo-acciones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.equipo-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.equipo-btn:hover,
.equipo-btn:focus {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.equipo-btn-ficha {
  color: #fff;
  background: #075b35;
}

.equipo-btn-ficha:hover,
.equipo-btn-ficha:focus {
  background: #034226;
}

.equipo-btn-whatsapp {
  gap: 6px;
  color: #fff;
  background: #ef8b00;
}

.equipo-btn-whatsapp:hover,
.equipo-btn-whatsapp:focus {
  background: #ce7400;
}

.equipo-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.equipo-modal.esta-abierto {
  display: flex;
}

.equipo-modal-fondo {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
}

.equipo-modal-dialogo {
  position: relative;
  display: flex;
  width: min(900px, 96vw);
  max-height: 94vh;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(0, 0, 0, .35);
}

.equipo-modal-cabecera {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: #fff;
  background: #075b35;
}

.equipo-modal-cabecera h2 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.equipo-modal-cerrar {
  padding: 0 4px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.equipo-modal-cuerpo {
  overflow: auto;
  background: #e9eeeb;
  text-align: center;
}

.equipo-modal-cuerpo img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

body.equipo-modal-abierto {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .equipos-venta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .equipos-venta {
    padding: 62px 0;
  }

  .equipos-venta-encabezado h2 {
    font-size: 31px;
  }

  .equipos-venta-encabezado p {
    font-size: 16px;
  }

  .equipos-venta-grid {
    grid-template-columns: 1fr;
  }

  .equipo-imagen {
    height: 330px;
  }

  .equipo-modal {
    padding: 10px;
  }

  .equipo-modal-dialogo {
    max-height: 97vh;
  }
}

@media (max-width: 380px) {
  .equipo-acciones {
    grid-template-columns: 1fr;
  }
}
