/* ------------------ GLOBAL ------------------ */
body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  background-color: #f8f9fa;
  line-height: 1.6;
}

h2, h3 {
  color: #1a1a1a;
  font-weight: 700;
}


/* ------------------ HERO ------------------ */
.hero-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(
    180deg,
    #fce5e5 0%,
    #fdeff0 40%,
    #ffffff 100%
  );
}



.hero-section h1 {
  font-size: 2.1rem;
  color: #1a1a1a;
}

.hero-section p {
  max-width: 700px;
  margin: 0 auto;
  color: #444;
}

.hero-section-nav {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 400px;
  max-height: 850px;
  overflow: hidden;
  padding: 0;
}

/* Swiper ajustado a la altura */
.hero-section-nav .swiper,
.hero-section-nav .swiper-wrapper,
.hero-section-nav .swiper-slide {
  height: 100%;
}

/* Imagen */
.hero-section-nav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 👉 Quitamos el degradado que crea el espacio extra */
.hero-section-nav {
  background: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section-nav {
    height: 45vh;
    min-height: 280px;
  }
}
/***BLUEEE*/


.hero-section-blue {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, #d1efff 0%, #f1f1f1 40%, #ffffff 100%);
}



.hero-section-blue h1 {
  font-size: 2.1rem;
  color: #1a1a1a;
}

.hero-section-blue p {
  max-width: 700px;
  margin: 0 auto;
  color: #444;
}



/* ------------------ CARDS ------------------ */
.card {
  border: none;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform .25s, box-shadow .25s;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

.card-title {
  color: #1a1a1a;
  font-weight: 600;
}

.card-text {
  color: #444;
  font-size: 0.95rem;
}

/* Precio */
.price {
  font-size: 1.1rem;
  color: #1a1a1a !important;
  font-weight: 700;
}

/* Botón */
.btn-primary {
  background: linear-gradient(90deg, #000000 0%, #333333 100%);
  border: none;
  padding: 8px 20px;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #000000 0%, #222222 100%);
}

/* ------------------ INFO SECTION ------------------ */
.info-section {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f0f4f8 100%
  );
}

.info-section h2 {
  color: #1a1a1a;
}

.info-section p {
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }
}

/* Imagen de cada card */
.moto-img {
  height: 200px;
  object-fit: cover;
}

/* Card limpia premium */
.moto-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform .22s, box-shadow .22s;
}

.moto-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* precio */
.price {
  color: #1a1a1a;
  font-weight: 700;
}

/* botón negro premium */
.btn-dark {
  background: linear-gradient(90deg, #000 0%, #333 100%);
  border: none;
}

.btn-dark:hover {
  background: linear-gradient(90deg, #000 0%, #222 100%);
}
