/* ===========================
   RAMOS (solo páginas de ramos)
   No toca header/nav global
=========================== */

.ramosPage{
  padding: 28px 0 70px;
}

.ramosHero{
  margin: 14px 0 18px;
}

.ramosHero--row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.ramosTitle{
  margin: 0 0 6px;
  font-size: 44px;
  letter-spacing: -0.5px;
}

.ramosSubtitle{
  margin: 0;
  font-size: 18px;
  color: rgba(15,23,42,.70);
}

.ramosBackLink{
  text-decoration:none;
  font-weight:900;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
}
.ramosBackLink:hover{ background: rgba(0,0,0,.03); }

/* Selector (ramos.html) */
.ramosChooser{
  margin-top: 24px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

.ramosChoiceBtn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 82px;
  border-radius: 18px;
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 40px rgba(2,6,23,.08);
  font-weight: 900;
  font-size: 18px;
  text-decoration:none;
  color: rgba(15,23,42,.92);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ramosChoiceBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(2,6,23,.12);
}

/* Catálogo (ramos-suelo / ramos-colgar) */
.ramosGrid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ramosCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 16px 40px rgba(2,6,23,.08);
}

.ramosCard__img{
  width:100%;
  height: 260px;
  object-fit: cover;
  display:block;
}

.ramosCard__body{
  padding: 14px 14px 16px;
  display:grid;
  gap:6px;
}

.ramosCard__name{
  font-weight: 950;
  font-size: 18px;
}

.ramosCard__meta{
  color: rgba(15,23,42,.70);
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 980px){
  .ramosGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .ramosTitle{ font-size: 34px; }
  .ramosChooser{ grid-template-columns: 1fr; }
  .ramosGrid{ grid-template-columns: 1fr; }
  .ramosCard__img{ height: 300px; }
}