:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-83f7c99 */.tarifas-motos {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.tarifas-motos h2 {
  color: #2e7d32;
  margin-bottom: 1rem;
}

.tarifas-motos p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* GRID DE TARJETAS */
.grid-tarifas {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-tarifas {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* TARJETAS DE TARIFAS */
.tarjeta-tarifa {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.tarjeta-tarifa:hover {
  transform: translateY(-4px);
}

.tarjeta-tarifa h3 {
  color: #2e7d32;
  margin-bottom: 0.8rem;
}

.galeria-motos {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Las últimas 2 imágenes centradas */
.galeria-motos .moto-item:nth-last-child(1),
.galeria-motos .moto-item:nth-last-child(2) {
  grid-column: span 2;
}

/* Contenedor de cada moto */
.moto-item {
  text-align: center;
}

/* Imágenes uniformes */
.moto-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.moto-item img:hover {
  transform: scale(1.05);
}

/* BOTÓN OUTLINE INSTITUCIONAL */
.btn-outline {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.6rem 1.2rem;
  background-color: #ffffff;
  color: #2e7d32;
  border: 2px solid #2e7d32;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-outline:hover {
  background-color: #ffffff !important;
  color: #2e7d32 !important;
  border: 2px solid #2e7d32 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46,125,50,0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .galeria-motos {
    grid-template-columns: repeat(2, 1fr);
  }

  .moto-item img {
    height: 180px;
  }

  .galeria-motos .moto-item:nth-last-child(1),
  .galeria-motos .moto-item:nth-last-child(2) {
    grid-column: span 1;
  }
  
}
.galeria-motos img {
  width: 100%;
  height: 220px; /* todas iguales */
  object-fit: contain; /* muestra la moto completa sin recortar */
  background-color: #fff; /* fondo uniforme */
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

@media (max-width: 768px) {
  .tarjeta-tarifa p {
    display: flex;
    flex-direction: column;
    align-items: flex-center;
  }
}/* End custom CSS */