/* ========================================================= */
/*  OTROS PROYECTOS — PÁGINA INTERNA                         */
/* ========================================================= */

.op-wrapper {
  padding: 40px 20px;
  background: transparent; /* deja ver el fondo claro de interiores.css */
}

.op-container {
  max-width: 1100px;
  margin: auto;
}

.op-title {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 800;
  color: inherit;
  text-align: center;
}

/* ========================================================= */
/*  GRID 2×2 EN PC                                            */
/* ========================================================= */

.op-grid {
  display: grid;
  gap: 30px;
}

@media (min-width: 900px) {
  .op-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================================= */
/*  TARJETAS DE PROYECTO                                      */
/* ========================================================= */

.op-card {
  background: inherit;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.25s ease;
  border: 1px solid rgba(0,0,0,0.05);

  /* Para reordenar título, imagen y contenido */
  display: flex;
  flex-direction: column;
}

.op-card:hover {
  transform: translateY(-4px);
}

/* ========================================================= */
/*  TÍTULO ENCIMA DE LA TARJETA                              */
/* ========================================================= */

.op-card-title {
  order: 1;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
  display: block;
  width: 100%;
  background: transparent;
  padding: 0;
}

/* ========================================================= */
/*  IMÁGENES (CUADRADAS O HORIZONTALES)                       */
/* ========================================================= */

.op-card img {
  order: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* ========================================================= */
/*  CONTENIDO DE LA TARJETA                                   */
/* ========================================================= */

.op-card-content {
  order: 3;
  padding: 1.2rem 1.4rem;
  color: inherit;
  text-align: center;
}

.op-card-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* ========================================================= */
/*  BOTÓN                                                     */
/* ========================================================= */

.op-btn {
  display: inline-block;
  background: var(--azul-principal);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
  margin: 0 auto;
}

.op-btn:hover {
  background: var(--azul-secundario);
  transform: translateY(-3px);
}
