
    /* Contenedor principal */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      background: #111;
      text-align: center;
    }


    /* Texto gigante */
    .hero h1 {
      font-size: 8vw;
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
      margin: 0;
      font-size: 5rem;
      font-weight: bold;
      color: transparent;
      -webkit-text-stroke: 2px white;
      text-transform: uppercase;
      letter-spacing: 4px;
      margin: 0;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .hero h1:hover {
      color: white;
      transform: translateY(-10px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 14vw;
      }
    }

    /* ==================================== */
    .gif-hover {
      transition: transform 0.3s ease;
    }

    .gif-hover:hover {
      transform: translateY(-5px);
    }


     /* ==================================== */
    .section-label {
      display: inline-block;
      padding: 2px 8px;
      font-size: 0.75rem;
      font-weight: bold;
      border: 1px solid #ffc55a;
      /* Azul */
      border-radius: 999px;
      color: #fff;
    }

    .main-text {
      font-size: 2rem;
      font-weight: bold;
      color: #fff;
    }

    @media (min-width: 768px) {
      .main-text {
        font-size: 3rem;
      }
    }

    .border-md-start {
      border-left: 1px solid #ffc55a;
      padding-left: 1.5rem;
    }


    .extra-text {
      color: #fff;
      font-size: 1.5rem;
      line-height: 1.2;
    }

    .list-text {
      color: #000;

    }

    @media (min-width: 768px) {
      .extra-text {
        font-size: 2rem;
      }
    }

 /* ==================================== */

    .why-blkprnt {
      background-color: #d99b28;
      /* azul intenso */
      color: #000;
      padding: 60px 20px;
    }

    .why-blkprnt .container {
      max-width: 1100px;
      margin: auto;
    }

    .why-blkprnt .badge {
      font-size: 12px;
      font-weight: bold;
      padding: 4px 12px;
       display: inline-block;
      font-size: 0.75rem;
      font-weight: bold;
      border: 1px solid #fff;
      border-radius: 999px;
      color: #fff;
    }


    .why-blkprnt .title {
      font-size: 6rem;
      font-weight: 900;
      margin: 0 0 20px;
      line-height: 1;
      color: white;
    }

    .why-blkprnt .subtitle {
      font-size: 1rem;
      margin-bottom: 50px;
    }

    .why-blkprnt .highlight {
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.3;
    }

    @media (max-width: 768px) {
      .why-blkprnt .title {
        font-size: 3rem;
      }

      .why-blkprnt .highlight {
        font-size: 1.2rem;
      }
    }

 /* ==================================== */
 
    .testimonial-slider {
      padding: 100px 20px;
      background: #fff;
    }

    .testimonial-slider .quote {
      font-size: 2.2rem;
      /* font-weight: 800; */
      color: #000;
      /* azul intenso */
      max-width: 900px;
      margin: 0 auto 20px;
    }

    .testimonial-slider .author {
      font-size: 0.9rem;
      color: #000;
      font-weight: 400;
    }

    .testimonial-slider .carousel-indicators {
      position: static;
      margin-top: 40px;
    }

    .testimonial-slider .carousel-indicators button {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: none;
      border: 2px solid #000;
      color: #000;
      font-weight: bold;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .testimonial-slider .carousel-indicators button.active {
      background: #000;
      color: #fff;

    }

    .carousel-item.testimonial {
      height: auto !important;
      min-height: unset !important;
    }

    .carousel-height {
      height: auto !important;
      min-height: unset !important;
    }

 /* ==================================== */
 
    .sponsor-carousel {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .sponsor-track {
      display: flex;
      animation: scroll-left 20s linear infinite;
    }

    .sponsor-track img {
      height: 200px;
      /* Ajusta tamaño de logos */
      margin: 0 5px;
      flex-shrink: 0;
      object-fit: cover;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }