* {
  margin: 0;
}

body {
  margin: 0;
  background: url('/static/src/fondo1.png');
  background-repeat: repeat;
  background-size: 1000px 1600px;
  background-color: rgb(255 255 255 / 83%);
  background-blend-mode: lighten;
}

.welcome-info {
  color: white;
  background: linear-gradient(to top left, #df6b3a 50%, #135666 50%);
  background-size: cover;
  position: relative;
  font-family: MusticaPro-Light;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/static/src/fondo1.png');
  background-repeat: repeat;
  background-size: auto 1600px;
  opacity: 20%;
  z-index: 0;
  pointer-events: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  z-index: 5;
  position: relative;
}

.navbar-left img {
  height: 4rem;
  width: auto;
}

.navbar-right {
  display: flex;
  gap: 1rem;
}

.navbar-right a {
  display: flex;
  align-items: center;
}

.navbar-right img {
  height: 1.5rem;
  margin-right: 0.5rem;
  width: auto;
  filter: brightness(0) saturate(100%) invert(76%) sepia(66%) saturate(0%) hue-rotate(271deg) brightness(93%) contrast(96%);
}

.navbar nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.quienes-somos-section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 4rem;
  gap: 3rem;
}

.quienes-somos-section h1 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.quienes-somos-section p {
  text-align: justify;
  font-size: large;
}

.btn-ver-planes {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-azul);
  padding: 0.50rem 1rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  margin-top: 1rem;
  width: 200px;
}

.btn-ver-planes:hover {
  background-color: var(--color-azul-hover);
}

.imagen-camion {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imagen-camion img {
  width: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
}

.btn-ver-planes img {
  height: 1.5rem;
  margin-right: 0.5rem;
  width: auto;
  filter: brightness(0) saturate(100%) invert(76%) sepia(66%) saturate(0%) hue-rotate(271deg) brightness(93%) contrast(96%);
  border-radius: 0;
}

/* planes */

.plans-container {
  margin: 3rem 3rem 6rem 3rem;
}

.plans-container h1 {
  text-align: center;
  font-family: MusticaPro-Light;
  color: var(--color-azul);
  margin: 2rem;
}

.cards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.contact-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.contact-btn-wrapper a {
  background-color: var(--color-azul);
  color: white;
  text-decoration: none;
  border-radius: 10rem;
  padding: 0.7rem 3rem;
  font-family: MusticaPro-Light;
}

.contact-btn-wrapper a:hover {
  background-color: var(--color-azul-hover);
}

.cards-container a {
  display: block;
  text-decoration: none;
  color: black;
}

.cards-container a:hover {
  border-width: 3px;
}

.card-orange {
  border: 1px solid var(--color-azul);
  height: 20rem;
  width: 14rem;
  box-sizing: border-box;
  position: relative;
}

.card-orange .card-title {
  height: 5rem;
  padding: 0.5rem;
  background: linear-gradient(170deg, var(--color-naranja) 50%, white 50%);
  color: white;
  font-family: MusticaPro-SemiBold;
  font-size: x-large;
}

.card-orange .card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2rem;
  width: 100%;
  background: linear-gradient(175deg, white 50%, var(--color-azul) 50%);
}

.card-body {
  padding: 1rem;
  font-family: MusticaPro-Light;
  text-align: center;
  font-size: large;
}

.card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-blue {
  border: 1px solid var(--color-naranja);
  height: 20rem;
  width: 14rem;
  box-sizing: border-box;
  position: relative;
}

.card-blue .card-title {
  height: 5rem;
  padding: 0.5rem;
  background: linear-gradient(170deg, var(--color-azul) 50%, white 50%);
  color: white;
  font-family: MusticaPro-SemiBold;
  font-size: x-large;
}

.card-blue .card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2rem;
  width: 100%;
  background: linear-gradient(175deg, white 50%, var(--color-naranja) 50%);
}