.custom-heading{
    font-family: 'Poppins', sans-serif;
}

.custom-roboto {
    font-family: 'Roboto', sans-serif;
}

.custom-size{
    font-size: 3.5rem!important;
}

.custom-red{
    color: #FF0101;
}

.custom-buttom{
    background-color: #FF0101;
    font-size: 18px;
}

.video-fondo-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
}

.contenido {
  position: relative;
  z-index: 2;
  width: 100%;
  /*color: white;*/
  /*text-align: center;*/
  /*padding: 2rem;*/
}

.custom-gray {
    color: #999999;
}

.custom-border {
    border-color: #484848;
}

.custom-border-red {
    border-color: #FF0101;
}

.background-gray{
    background-color: #121212;
}

    .comparison-container {
      position: relative;
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 5rem;
    }

    .comparison-card {
      /*background-color: white;
      padding: 2rem;
      border-radius: 1rem;
      /*box-shadow: 0 0 30px rgba(0,0,0,0.05);*/
      text-align: center;
      flex: 1 1 300px;
      max-width: 500px;
    }

    .comparison-card img {
        position: relative;
        margin-top: -20%;
        z-index: 1;
    }

    .comparison-card ul,
    .comparison-card h2 {
    position: relative;
    z-index: 2;
    }

    .vs-circle {
      position: absolute;
      top: 200px;
      left: 50%;
      transform: translateX(-50%);
      background-color: black;
      color: white;
      padding: 1rem 1.2rem;
      border-radius: 50%;
      z-index: 2;
    }

    @media (max-width: 768px) {
      .comparison-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
      }

      .vs-circle {
        top: 47%;
      }
    }

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  margin-left: 2rem;
  padding-top: 0.45rem; 
  padding-bottom: 0.45rem; 
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 0.12rem;
  top: 1rem; 
  height: calc(87% - 1.2rem); 
  width: 3.7px;
  background-color: #FF0101;
}

.timeline-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.timeline-list li::before {
  content: '';
  position: absolute;
  left: -0.20rem;
  top: 0.3rem;
  width: 15px;
  height: 15px;
  background-color: #FF0101;
  border-radius: 50%;
}

/*Cards*/


/*v2*/

.custom-card-wrapper {
  position: relative;
  /*padding-top: 2.5rem;*/
  overflow: visible;
  margin: .5rem;
}

.custom-card {
  position: relative;
  background: white;
  text-align: center;
  border-radius: 0.5rem;
  padding: 2rem 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: visible
}

.custom-card-bottom {
  position: relative;
  background: white;
  text-align: center;
  border-radius: 0.5rem;
  padding: 2rem 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: visible
}


.custom-card::before,
.custom-card::after {
    content: '';
    position: absolute;
    width: 10px;
    background-color: #FF0101;
    height: 50%;
    top: 0;
    z-index: 1;
}

.custom-card-bottom::before,
.custom-card-bottom::after {
    content: '';
    position: absolute;
    width: 10px;
    background-color: #FF0101;
    height: 50%;
    bottom: 0;
    z-index: 1;
}

.custom-card::before {
    left: 0;
    transform: translateX(-100%);
    border-bottom-left-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
}

.custom-card::after {
    right: 0;
    transform: translateX(100%);
    border-bottom-right-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.custom-card-bottom::before {
    left: 0;
    transform: translateX(-100%);
    border-bottom-left-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
}

.custom-card-bottom::after {
    right: 0;
    transform: translateX(100%);
    border-bottom-right-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.custom-card-bottom-border {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: 100%;
  background-color: #FF0101;
  /*border-radius: 0 0 0.5rem 0.5rem;*/
  z-index: 1;
}

.custom-card-bottom-border-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  background-color: #FF0101;
  /*border-radius: 0 0 0.5rem 0.5rem;*/
  z-index: 1;
}

.step-circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FF0101;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 2;
}

.step-circle-bottom {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FF0101;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 2;
}

.circle-icon {
    width: 100px;
    height: 100px;
    background-color: #ff0101;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto 1rem auto;
}

.exp-years-box {
    background-color: #ff0101;
    /*text-align: center;*/
    border-radius: 0.5rem;
}

@media (max-width: 768px) {
    .exp-connector-line {
      display: none;
    }
}

.line {
  position: absolute;
  bottom: 20%;
  left: 15%;
  height: .9rem;
  width: 70%;
  background-color: #FF0101;
  z-index: 0;
  border-radius: 10px;
}

.card-custom {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-box {
    background-color: red;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 1.5rem;
}

.experience-card {
    border: 2px solid red;
    padding: 20px;
    background-color: #000;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: red;
}

img.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .highlight-box {
        font-size: 1.2rem;
        padding: 0.75rem;
    }
}

.responsive-heading {
    font-size: 3rem;
}

@media (max-width: 1280px) {
    .responsive-heading {
        font-size: 2rem;
    }
}

@media (max-width: 1020px) {
    .line {
        display: none;
    }
}

@media (max-width: 768px) {
    .responsive-heading {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .responsive-heading {
        font-size: 1.5rem; 
    }
}

.circle-years {
    width: 80px;
    height: 80px;
    background-color: #ff0101;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto 1rem auto;
}

.pricing {
    border-width: 10px;
    border-color: #EEEEEE;
}

.custom-btn {
  background-color: #FF0101;
  color: white;
  border: none;
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  /*font-weight: 500;*/
  box-shadow: none;
  text-decoration: none;
}

.custom-btn:hover {
  box-shadow: 0 0 12px rgba(255, 1, 1, 0.685);
  color: white;
}

.custom-btn:active {
  background-color: #f30000;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
  color: white;
}

.video-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .video-section video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .content-overlay {
      position: relative;
      z-index: 1;
      height: 100%;
      padding-bottom: 120px; /* espacio para la imagen fija */
      display: flex;
      flex-direction: column;
    }

    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 2rem;
    }

    .header img {
      max-width: 200px;
    }

    .nav-menu a {
      color: #fff;
      margin-left: 1.5rem;
      text-decoration: none;
      font-weight: 500;
    }

    .nav-menu a:hover {
      text-decoration: underline;
    }

    .hero-text {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 1rem;
    }

    /* Imagen fija al fondo de la sección */
    .bottom-image-wrapper {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 0;
    }

    .bottom-image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Asegura que no se solape con el video ni se corte */
    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 2rem;
      }

      .hero-text p {
        font-size: 1rem;
      }

      .header {
        flex-direction: column;
        text-align: center;
      }

      .nav-menu {
        margin-top: 1rem;
      }
    }

@media (min-width: 770px) {
  .show-mobile {
    display: none !important;
  }
}

@media (max-width: 769px) {
  .show-desktop {
    display: none !important;
  }
}

.data-img {
  max-width: 4rem;
}

@media (max-width: 1080px) {
  .show-title {
    display: none !important;
  }
}

@media (min-width: 1080px) {
  .show-title-mobile {
    display: none !important;
  }
}