/* Landing — equilibrio entre orientación y detalle */

/* ── Acciones principales ── */
.rhino-landing-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.rhino-landing-action {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--rhino-border);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.rhino-landing-action:hover {
  border-color: rgba(196, 165, 116, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  color: inherit;
}

.rhino-landing-action--primary {
  border-color: rgba(232, 93, 4, 0.45);
  background: linear-gradient(145deg, rgba(232, 93, 4, 0.12), rgba(0, 0, 0, 0.2));
}

.rhino-landing-action-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rhino-muted);
}

.rhino-landing-action-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--rhino-text);
}

.rhino-landing-action-desc {
  font-size: 0.88rem;
  color: var(--rhino-muted);
  line-height: 1.35;
}

/* ── Orientación primera visita ── */
.rhino-landing-orientacion {
  margin-bottom: 1.75rem;
  padding: 0.95rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(61, 90, 58, 0.35);
  background: linear-gradient(135deg, rgba(61, 90, 58, 0.14), rgba(0, 0, 0, 0.18));
}

.rhino-landing-orientacion-lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--rhino-muted);
}

.rhino-landing-orientacion-lead strong {
  color: var(--rhino-text);
  font-weight: 700;
}

.rhino-landing-orientacion-lead em {
  color: var(--rhino-tan);
  font-style: normal;
  font-weight: 600;
}

/* ── Aviso sin arriendo (primera visita) ── */
.rhino-landing-sin-arriendo {
  margin-bottom: 1.75rem;
  padding: 0.95rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(232, 93, 4, 0.45);
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.14), rgba(0, 0, 0, 0.2));
}

.rhino-landing-sin-arriendo-texto {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--rhino-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.rhino-landing-sin-arriendo-icono,
.rhino-landing-aviso-icono,
.rhino-visita-aviso-icono,
.rhino-reglas-info-icono {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  color: var(--rhino-orange);
  background: rgba(232, 93, 4, 0.14);
  font-size: 1.05rem;
}

.rhino-landing-sin-arriendo-contenido strong {
  color: var(--rhino-orange);
  font-weight: 700;
}

.rhino-landing-sin-arriendo-contenido em {
  color: var(--rhino-text);
  font-style: normal;
  font-weight: 600;
}

.rhino-landing-sin-arriendo-contenido a {
  font-weight: 600;
  white-space: nowrap;
}

.rhino-landing-preparacion-sin-rental {
  margin: 0 0 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--rhino-muted);
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.28);
}

.rhino-landing-preparacion-sin-rental strong {
  color: var(--rhino-orange);
}

/* ── Lo esencial ── */
.rhino-landing-essentials {
  margin-bottom: 2rem;
}

.rhino-landing-essentials-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.85rem;
}

.rhino-landing-essentials-header h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
}

.rhino-landing-essentials-link {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.rhino-landing-essentials-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rhino-landing-essential {
  padding: 1rem 1.05rem;
  border: 1px solid var(--rhino-border);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}

.rhino-landing-essential-icon {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.rhino-landing-essential-titulo {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rhino-muted);
}

.rhino-landing-essential-valor {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--rhino-text);
}

.rhino-landing-essential-valor span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--rhino-muted);
}

.rhino-landing-essential-detalle {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--rhino-muted);
}

.rhino-landing-essential-detalle strong {
  color: var(--rhino-tan);
}

/* ── Partidas ── */
.rhino-landing-partidas {
  margin-bottom: 2rem;
}

.rhino-landing-partidas .rhino-grid {
  gap: 0.85rem;
}

.rhino-landing-partidas .rhino-card {
  padding: 1rem;
}

.rhino-landing-partidas .rhino-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.rhino-landing-partidas .rhino-card--agotada {
  opacity: 0.9;
  border-color: rgba(201, 125, 58, 0.4);
  background: rgba(201, 125, 58, 0.06);
}

.rhino-badge--muted {
  background: rgba(201, 125, 58, 0.16);
  color: var(--rhino-tan);
  border-color: rgba(201, 125, 58, 0.45);
}

/* ── Preparación / seguridad ── */
.rhino-landing-preparacion {
  margin-bottom: 2rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--rhino-border);
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(61, 90, 58, 0.1), rgba(0, 0, 0, 0.22));
}

.rhino-landing-preparacion-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.rhino-landing-preparacion-header h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
}

.rhino-landing-preparacion-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rhino-landing-preparacion-card {
  padding: 1rem;
  border: 1px solid var(--rhino-border);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.rhino-landing-preparacion-card--potencia {
  border-color: rgba(232, 93, 4, 0.4);
}

.rhino-landing-preparacion-card--alerta {
  border-color: rgba(193, 18, 31, 0.3);
}

.rhino-landing-preparacion-card-titulo {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rhino-tan);
}

.rhino-landing-preparacion-crono {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.rhino-landing-preparacion-crono > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.rhino-landing-preparacion-crono dt {
  margin: 0;
  color: var(--rhino-muted);
  font-weight: 500;
}

.rhino-landing-preparacion-crono dd {
  margin: 0;
  color: var(--rhino-text);
}

.rhino-landing-preparacion-crono dd strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--rhino-orange);
}

.rhino-landing-preparacion-unidad {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--rhino-muted);
}

.rhino-landing-preparacion-nota {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--rhino-muted);
}

.rhino-landing-preparacion-lista {
  margin: 0;
  padding: 0 0 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--rhino-text);
}

.rhino-landing-preparacion-lista li + li {
  margin-top: 0.35rem;
}

.rhino-landing-preparacion-lista--alerta li::marker {
  color: var(--rhino-danger);
}

.rhino-landing-preparacion-mas {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
}

/* ── Avisos ── */
.rhino-landing-avisos {
  margin-bottom: 1.5rem;
}

.rhino-landing-avisos-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.rhino-landing-avisos-header h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
}

.rhino-landing-avisos-link {
  font-size: 0.88rem;
  font-weight: 600;
}

.rhino-landing-avisos-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.rhino-landing-aviso {
  padding: 0.95rem 1.1rem;
  border-left: 3px solid var(--rhino-orange);
  border-radius: 0 8px 8px 0;
  background: rgba(0, 0, 0, 0.2);
}

.rhino-landing-aviso-titulo {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rhino-text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.rhino-visita-card-titulo,
.rhino-reglas-info-titulo {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0;
}

.rhino-landing-aviso-texto {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--rhino-muted);
}

/* ── Página visita ── */
.rhino-visita-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.rhino-visita-card h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

.rhino-visita-card p {
  margin: 0.35rem 0 0;
}

.rhino-visita-card p + p {
  margin-top: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .rhino-landing-essentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rhino-landing-preparacion-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rhino-landing-actions {
    grid-template-columns: 1fr;
    margin-top: 0.25rem;
  }

  .rhino-landing-essentials-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .rhino-landing-action {
    animation: rhino-landing-in 0.5s ease backwards;
  }

  .rhino-landing-action:nth-child(1) { animation-delay: 0.05s; }
  .rhino-landing-action:nth-child(2) { animation-delay: 0.12s; }
  .rhino-landing-action:nth-child(3) { animation-delay: 0.19s; }

  @keyframes rhino-landing-in {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
  }
}

/* ── Teaser fotos del campo (home) ── */
.rhino-landing-fotos-teaser {
  margin-bottom: 2rem;
}

.rhino-landing-fotos-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.rhino-landing-fotos-teaser-link {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--rhino-border);
  background: rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}

.rhino-landing-fotos-teaser-link:hover {
  border-color: var(--rhino-orange);
  transform: translateY(-2px);
}

.rhino-landing-fotos-teaser-link img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rhino-landing-fotos-teaser-pie {
  display: block;
  padding: 0.45rem 0.55rem;
  font-size: 0.82rem;
  color: var(--rhino-muted);
  background: rgba(0, 0, 0, 0.45);
}

/* ── Galería completa (/visita) ── */
.rhino-visita-galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rhino-visita-galeria-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--rhino-border);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rhino-visita-galeria-item:hover {
  border-color: var(--rhino-orange);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.rhino-visita-galeria-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rhino-visita-galeria-pie {
  display: block;
  padding: 0.5rem 0.65rem;
  font-size: 0.88rem;
  color: var(--rhino-muted);
}

.rhino-galeria-lightbox {
  padding: 0;
  border: 1px solid var(--rhino-border);
  border-radius: 12px;
  background: rgba(13, 18, 16, 0.96);
  color: var(--rhino-text);
  max-width: min(92vw, 960px);
  width: 100%;
}

.rhino-galeria-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.rhino-galeria-lightbox-cerrar {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--rhino-text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.rhino-galeria-lightbox-fig {
  margin: 0;
}

.rhino-galeria-lightbox-fig img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #000;
}

.rhino-galeria-lightbox-fig figcaption {
  padding: 0.75rem 1rem;
  color: var(--rhino-muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .rhino-landing-fotos-teaser-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rhino-visita-galeria-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .rhino-visita-galeria-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── Comunidad y redes ── */
.rhino-landing-comunidad {
  margin: 2rem 0 0.5rem;
  padding: 1.35rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(196, 165, 116, 0.28);
  background:
    linear-gradient(135deg, rgba(232, 93, 4, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.12));
}

.rhino-landing-comunidad-inner {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.rhino-landing-comunidad-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rhino-tan);
}

.rhino-landing-comunidad-copy h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--rhino-text);
}

.rhino-landing-comunidad-lead {
  margin: 0;
  max-width: 36rem;
  color: var(--rhino-muted);
  line-height: 1.5;
}

.rhino-landing-comunidad-acciones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}

.rhino-landing-comunidad-cta {
  min-height: 2.75rem;
}

.rhino-landing-comunidad-redes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.rhino-landing-comunidad-red {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  color: var(--rhino-text);
  text-decoration: none;
  font-size: 0.92rem;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.rhino-landing-comunidad-red:hover {
  border-color: rgba(196, 165, 116, 0.55);
  background: rgba(196, 165, 116, 0.12);
  color: var(--rhino-text);
  transform: translateY(-1px);
}

.rhino-landing-comunidad-red .bi {
  font-size: 1.15rem;
  color: var(--rhino-tan);
}

@media (min-width: 768px) {
  .rhino-landing-comunidad {
    padding: 1.6rem 1.75rem;
  }

  .rhino-landing-comunidad-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .rhino-landing-comunidad-acciones {
    justify-content: flex-end;
  }
}

/* ── Scroll reveal ── */
[data-landing-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-landing-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

[data-landing-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s,
    box-shadow 0.2s;
}

[data-landing-reveal].is-revealed [data-landing-reveal-stagger] > * {
  opacity: 1;
  transform: none;
}

[data-landing-reveal].is-revealed [data-landing-reveal-stagger] > *:nth-child(1) { transition-delay: 0.05s; }
[data-landing-reveal].is-revealed [data-landing-reveal-stagger] > *:nth-child(2) { transition-delay: 0.12s; }
[data-landing-reveal].is-revealed [data-landing-reveal-stagger] > *:nth-child(3) { transition-delay: 0.19s; }
[data-landing-reveal].is-revealed [data-landing-reveal-stagger] > *:nth-child(4) { transition-delay: 0.26s; }

@media (prefers-reduced-motion: reduce) {
  [data-landing-reveal],
  [data-landing-reveal-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Section headers con acento ── */
.rhino-landing-partidas .rhino-section-header h2,
.rhino-landing-reservas .rhino-section-header h2,
.rhino-landing-fotos-teaser .rhino-section-header h2,
.rhino-landing-essentials-header h2,
.rhino-landing-preparacion-header h2,
.rhino-landing-avisos-header h2 {
  position: relative;
  padding-left: 0.85rem;
}

.rhino-landing-partidas .rhino-section-header h2::before,
.rhino-landing-reservas .rhino-section-header h2::before,
.rhino-landing-fotos-teaser .rhino-section-header h2::before,
.rhino-landing-essentials-header h2::before,
.rhino-landing-preparacion-header h2::before,
.rhino-landing-avisos-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--rhino-orange), var(--rhino-olive));
}

/* ── Acciones: más profundidad ── */
.rhino-landing-action {
  position: relative;
  overflow: hidden;
}

.rhino-landing-action::after {
  content: "→";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 1.1rem;
  color: var(--rhino-muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s, color 0.25s;
}

.rhino-landing-action:hover::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--rhino-orange);
}

.rhino-landing-action--primary {
  box-shadow: 0 4px 28px rgba(232, 93, 4, 0.12);
}

.rhino-landing-action--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(232, 93, 4, 0.08) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: none;
}

.rhino-landing-action--primary:hover::before {
  animation: rhino-landing-shimmer 0.75s ease;
}

@keyframes rhino-landing-shimmer {
  to {
    transform: translateX(120%);
  }
}

/* ── Lo esencial: cards con hover ── */
.rhino-landing-essential {
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}

.rhino-landing-essential::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rhino-orange), var(--rhino-tan));
  opacity: 0;
  transition: opacity 0.25s;
}

.rhino-landing-essential:hover {
  border-color: rgba(196, 165, 116, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  background: rgba(0, 0, 0, 0.32);
}

.rhino-landing-essential:hover::before {
  opacity: 1;
}

.rhino-landing-essential-valor {
  transition: color 0.25s;
}

.rhino-landing-essential:hover .rhino-landing-essential-valor {
  color: var(--rhino-tan);
}

/* ── Callouts con pulso sutil ── */
.rhino-landing-orientacion,
.rhino-landing-sin-arriendo {
  position: relative;
}

.rhino-landing-sin-arriendo {
  box-shadow: 0 0 0 0 rgba(232, 93, 4, 0);
  animation: rhino-landing-pulse-border 4s ease-in-out infinite;
}

@keyframes rhino-landing-pulse-border {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(232, 93, 4, 0);
  }
  50% {
    box-shadow: 0 0 24px rgba(232, 93, 4, 0.12);
  }
}

/* ── Partidas / reservas cards ── */
.rhino-landing-partidas .rhino-card,
.rhino-landing-reservas .rhino-card {
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}

.rhino-landing-partidas .rhino-card:hover,
.rhino-landing-reservas .rhino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

/* ── Fotos teaser: zoom ── */
.rhino-landing-fotos-teaser-link img {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s;
}

.rhino-landing-fotos-teaser-link:hover img {
  transform: scale(1.06);
  filter: brightness(1.08) contrast(1.04);
}

.rhino-landing-fotos-teaser-link:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* ── Preparación cards ── */
.rhino-landing-preparacion {
  position: relative;
  overflow: hidden;
}

.rhino-landing-preparacion::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 90, 58, 0.18), transparent 70%);
  pointer-events: none;
}

.rhino-landing-preparacion-card {
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.rhino-landing-preparacion-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ── Avisos ── */
.rhino-landing-aviso {
  transition: transform 0.25s, border-left-width 0.25s, box-shadow 0.25s;
}

.rhino-landing-aviso:hover {
  transform: translateX(4px);
  border-left-width: 4px;
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.2);
}

/* ── Comunidad: brillo animado ── */
.rhino-landing-comunidad {
  position: relative;
  overflow: hidden;
}

.rhino-landing-comunidad::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(232, 93, 4, 0.06),
    transparent,
    rgba(196, 165, 116, 0.05),
    transparent
  );
  animation: rhino-landing-comunidad-glow 12s linear infinite;
  pointer-events: none;
}

.rhino-landing-comunidad-inner {
  position: relative;
  z-index: 1;
}

@keyframes rhino-landing-comunidad-glow {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rhino-landing-sin-arriendo {
    animation: none;
  }

  .rhino-landing-comunidad::after {
    animation: none;
    display: none;
  }

  .rhino-landing-action--primary:hover::before {
    animation: none;
  }
}

