:root {
  --prolift-red: #b91d26;
  --prolift-black: #000000;
  --prolift-dark-grey: #333333;
  --prolift-light-grey: #f4f4f4;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--prolift-black);
}

h4 {
  font-weight: 400;
}

.text-muted {
  color: #000 !important;
}

.whatsapp {
  background-color: #4BAE4F;
  border-radius: 50px 0px 0px 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0px 15px 0px 0px;
  position: fixed;
  bottom: 20px;
  right: 0px;
  z-index: 999;
}

.whatsapp img {
  width: 50px;
}

.whatsapp a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.card-red-overlay {
  background-color: #b91d26d4;
  color: white;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  padding: 55px 40px !important;
  text-align: center;
  height: 100%;
}

.card-red-overlay .card-body {
  z-index: 2;
  position: relative;
}

/* Navbar */
.navbar {
  background-color: transparent;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.nav-link.active {
  font-weight: 800 !important;
}

.navbar-brand img {
  width: 200px;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-left: 1rem;
}

.navbar-nav .nav-link:hover {
  opacity: 0.8;
}

/* Buttons */
.btn {
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: var(--prolift-red);
  border-color: var(--prolift-red);
}

.btn-whatsapp {
  background-color: #4BAE4F;
  border-color: #4BAE4F;
  color: #fff;
}

.btn-primary:hover {
  background-color: #90161d;
  border-color: #90161d;
}

.btn-outline-light {
  border-width: 2px;
  font-weight: 600;
}

.red-bg {
  background-color: #9F1D21;
  position: relative;
}

/* Footer */
footer {
  background-color: black;
  color: white;
  padding: 3rem 0;
}

footer a {
  color: white;
  text-decoration: none;
}

footer h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

footer img {
  width: 18px;
}

/* Utilities */
.text-red {
  color: var(--prolift-red);
}

.bg-red {
  background-color: var(--prolift-red);
}

.fw-bolder {
  font-weight: 800 !important;
}

.section-title {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-section {
  background: url(../img/herobg.jpg) no-repeat center center;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-content h1 {
  background: url(../img/line.svg) no-repeat center bottom;
  font-weight: 900;
  font-size: 45px;
  text-transform: uppercase;
  line-height: 1.1;
  padding-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.bolder {
  font-weight: 900;
}

.slide-vertical {
  position: absolute;
  bottom: 0;
  right: 45px;
  z-index: 3;
  height: 75vh;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100%;
}

.grua-z-index {
  position: absolute;
  z-index: 4;
  left: 8px;
  bottom: 0;
  width: 908px;
}

.gap-15 {
  gap: 15px;
}

.history-section {
  background: url(../img/nosotros_prolift.jpg) no-repeat bottom center;
  background-size: cover;
  color: white;
  padding: 100px 0;
  border-radius: 20px;
  height: 660px;
}

.circled-red {
  position: relative;
}

.circled {
  padding: 35px;
  position: relative;
  width: fit-content;
  text-align: center;
}

.circled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 100px;
  background: url(../img/ciruclo.svg) no-repeat center center;
  background-size: 100%;
}

.circled-red::before {
  content: "";
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 100px;
  background: url(../img/ciruclo-rojo.svg) no-repeat center center;
  background-size: 100%;
}

.diff-card {
  background-color: #a01a22;
  color: white;
  padding: 45px 40px;
  border-radius: 10px;
  height: 100%;
  transition: transform 0.3s;
}

.diff-card:hover {
  transform: translateY(-5px);
}

/* Marquee Animation */
.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  gap: 2rem;
  animation: scroll 25s linear infinite;
  padding-right: 2rem;
}

.ofrecemos {
  background: url(../img/ofrecemos01_prolift.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  align-items: end;
  height: 660px;
  padding-bottom: 45px;
}

.valor {
  background: url(../img/valor01_prolift.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  align-items: end;
  height: 660px;
  padding: 0 20px;
}

.valor-02 {
  background: url(../img/valor02_prolift.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  align-items: end;
  height: 660px;
  padding: 0 20px;
}

.valor-03 {
  background: url(../img/valor03_prolift.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  align-items: end;
  height: 660px;
  padding: 0 20px;
}

.valor04 {
  background: url(../img/monta02.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  align-items: end;
  height: 660px;
  padding: 0 20px;
}

.valor04 .col-md-5,
.valor-03 .col-md-6,
.valor-02 .col-md-6,
.valor .col-md-5 {
  background-color: #ff0816d4;
  border-radius: 20px 20px 0px 0px;
  padding: 45px 20px 60px 20px;
}

.valor li {
  margin-bottom: 15px;
}

iframe {
  width: 100%;
}

.nav-link-button {
  background-color: #1fc834;
  color: white;
  padding: 8px 28px;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
  bottom: -5px;
  margin-left: 15px;
}

.service-card {
  background-color: #a01a22;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.value-added-section {
  background: linear-gradient(90deg, #ffffff 30%, #e60000 30%);
  border-radius: 20px;
  overflow: hidden;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.hero-section form {
  background-color: #ffffffba;
  backdrop-filter: blur(6px);
  padding: 15px;
  border-radius: 10px;

}

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.Mobile {
  display: none;
}

@media (max-width: 1399px) {
  .grua-z-index {
    position: absolute;
    z-index: 4;
    left: 8px;
    bottom: 0;
    width: 783px;
  }
}

@media (max-width: 1199px) {
  .grua-z-index {
    position: absolute;
    z-index: 4;
    left: 8px;
    bottom: 0;
    width: 658px;
  }
}

@media (max-width: 992px) {
  .navbar-nav {
    background-color: #9F1D21;
    text-align: center;
    padding: 40px 20px;
  }

  .grua-z-index {
    display: none;
  }
}

@media (max-width: 768px) {
  .slide-vertical {
    height: auto;
    position: unset;
    margin-top: -45px;
    margin-left: 0px;
  }

  .circled::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    width: 290px;
    height: 100px;
    background: url(../img/ciruclo.svg) no-repeat center center;
    background-size: 100%;
  }

  h1 {
    font-size: 2em !important;
  }

  .Mobile {
    display: flex;
    text-align: center;
    justify-content: center;
  }

  .Desktop {
    display: none;
  }

  .d-flex.gap-3.mt-4.justify-content-center.button-group {
    display: flex;
    flex-direction: column;
  }

  form {
    margin-top: 15px;
  }
}