.bg-azul-primario {
  background-color: #396390;
}

.text-azul-primario {
  color: #396390;
}

.bg-azul-navy {
  background-color: #0369ce;
}

.text-azul-navy {
  color: #0369ce;
}

.bg-azul-oscuro {
  background-color: #0362c7;
}

.text-azul-oscuro {
  color: #0362c7;
}

.bg-marron-hover {
  background-color: #7b290c;
}

.text-marron-hover {
  color: #7b290c;
}

.bg-rojo-error {
  background-color: #dc3545;
}

.text-rojo-error {
  color: #dc3545;
}

.bg-verde-exito {
  background-color: #198754;
}

.text-verde-exito {
  color: #198754;
}

/* -------------------- MIXINS GENERALES -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  word-break: break-word;
}

/* --------------------- ANIMACIONES GLOBALES --------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.btn-flotante {
  animation: pulse 2s ease-in-out infinite;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 1001;
  background-color: #0362c7;
  color: #ffffff;
  padding: 12px 50px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-flotante:hover {
  background-color: #0369ce;
  color: #ffffff;
}

.button-oscuro {
  background-color: #396390;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button-oscuro:hover {
  transform: scale(1.05);
  background-color: #5676a5;
  color: #ffffff;
}

.button-gris {
  background-color: #555555;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button-gris:hover {
  transform: scale(1.05);
  background-color: #707070;
  color: #ffffff;
}

.motoCard,
.financiacion-card,
.nosotros-card,
.contacto-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  gap: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  transition: transform 0.3s ease;
}
.motoCard:hover,
.financiacion-card:hover,
.nosotros-card:hover,
.contacto-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.motoCard {
  display: flex;
  flex-direction: row;
}
.motoCard img {
  width: 300px;
  height: auto;
  object-fit: cover;
}
.motoCard .motoText {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.motoCard .motoText h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #396390;
}
.motoCard .motoText p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}
@media (max-width: 576px) {
  .motoCard {
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
  }
  .motoCard img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .motoCard .motoText {
    padding: 10px;
    text-align: center;
  }
}

.motos__grid {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 769px) and (max-width: 992px) {
  .motos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .motos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .motos__grid {
    grid-template-columns: 1fr;
  }
}
.motos__grid .card {
  animation: slideUp 1.5s ease-in-out;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.motos__grid .card:hover, .motos__grid .card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.motos__grid .card .card-img-top {
  height: 160px;
  object-fit: cover;
  object-position: center;
}
.motos__grid .card .card-body {
  background-color: #ffffff;
  padding: 1rem;
  text-align: center;
}
.motos__grid .card .card-body h5 {
  font-size: 15px;
  color: #396390;
  margin: 0;
}

.motos__carousel {
  margin: 0 auto;
  width: 100%;
  max-width: 850px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.layout {
  min-height: 100vh;
  background-color: #f8f8f8;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #333333;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(3, auto);
  grid-template-areas: "header header header" "main main main" "footer footer footer";
}
@media (min-width: 577px) and (max-width: 768px) {
  .layout {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "main" "footer";
  }
}
@media (max-width: 576px) {
  .layout {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "main" "footer";
  }
}

.layout__header {
  grid-area: header;
  text-align: center;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  top: 0;
  z-index: 1000;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dddddd;
}

.navbar__logo {
  width: 90px;
  height: auto;
  transition: all 0.3s ease;
}
.navbar__logo:hover {
  transform: scale(1.05);
}
@media (max-width: 576px) {
  .navbar__logo {
    width: 60px;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .navbar__logo {
    width: 70px;
  }
}

.layout__footer {
  grid-area: footer;
  text-align: center;
  padding: 20px 10px;
  border-top: 2px solid #eaeaea;
}

.footer__redes {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .footer__redes {
    flex-direction: row;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .footer__redes {
    flex-direction: row;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer__redes a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333333;
  transition: all 0.3s ease;
}
.footer__redes a:hover {
  transform: scale(1.1);
  color: #7b290c;
}
.footer__redes img {
  width: 22px;
  height: 22px;
}

.footer__facebook {
  background-image: url(../assets/icons/facebook.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.footer__instagram {
  background-image: url(../assets/icons/Instagram.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.footer__twitter {
  background-image: url(../assets/icons/twitter.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.layout__main {
  grid-area: main;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  margin-bottom: 10px;
}

.motos__contenedor {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.motos__titulo {
  font-size: 28px;
}
@media (max-width: 576px) {
  .motos__titulo {
    font-size: 22px;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .motos__titulo {
    font-size: 24px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .motos__titulo {
    font-size: 26px;
  }
}

/*# sourceMappingURL=style.css.map */
