.seccion-productos {
  width: 100%;
  padding: 80px 0;
}

.productos-header {
  text-align: center;
  margin-bottom: 80px;
}

.productos-header p {
  color: #0a84ff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.productos-header h1 {
  color: #002a55;
  font-size: 42px;
  margin-top: 10px;
}

.productos-contenedor {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* === ITEM PRODUCTO === */
.producto-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 0 100px;
}

.producto-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* === MOCKUP === */
.mockup-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.mockup-container {
  width: 500px;
  transform-style: preserve-3d;
}

.mockup-container img {
  width: 100%;
  border-radius: 20px;
  transition: box-shadow 0.4s ease;
}

.producto-info {
  flex: 1;
}

.producto-badge {
  background: #0a84ff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  display: inline-block;
}

.producto-titulo {
  color: #002a55;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.producto-linea {
  width: 50px;
  height: 4px;
  background: #0a84ff;
  border-radius: 2px;
  margin-bottom: 25px;
}

.producto-descripcion {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.producto-caracteristicas {
  /* background: #f9f9f9; */
  padding: 20px;
  border-left: 4px solid #002a55;
  border-right: 4px solid #002a55;
  border-radius: 10px;
  margin-bottom: 25px;
}

.producto-caracteristicas h4 {
  color: #002a55;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.producto-caracteristicas ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.producto-caracteristicas li {
  color: #666;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.producto-caracteristicas li::before {
  content: "*";
  color: #ff7a00;
  font-weight: bold;
  margin-right: 8px;
}

.producto-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: blue;
  color: #fff;
  /* box-shadow: 0 8px 20px rgba(255, 122, 0, 0.25); */
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background: transparent;
  color: #002a55;
  border: 2px solid #002a55;
}

.btn-secondary:hover {
  background: #ff7a00;
  color: white;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .producto-item {
    flex-direction: column !important;
    padding: 0 40px;
    text-align: center;
  }

  .mockup-container {
    width: 90%;
  }

  .producto-info {
    text-align: center;
  }

  .producto-caracteristicas ul {
    grid-template-columns: 1fr;
  }

  .producto-cta {
    justify-content: center;
  }
}
