.lightTipo{
  font-weight: 500;
}
section, footer{
  overflow: hidden;
}
    body {
      background: #000;
      color: #c0c0c0;
      font-family: 'Poppins', sans-serif;
    }
    h1,h2,h3,h4,h5,h6{
      font-weight: 800;
    }
    a{
      text-decoration: none;
    }
    h1{
      color:#f1f1f1; font-size:3rem;
    }
    /* Fondo fibra de carbono */
    .carbon-bg {
background: #000000;
background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(20, 20, 20, 1) 28%, rgba(20, 20, 20, 1) 74%, rgba(0, 0, 0, 1) 100%);
    }

    /* HEADER */
    header {
background: #202020;

    }
    .header-logo {
      width: 200px;
    }
    .nav-link {
      color: #c0c0c0 !important;
      font-weight: 700;
    }
    .nav-link:hover {
      color: #fff !important;
    }

    /* HERO */
.hero-section {
  position: relative;
  padding: 160px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* FILTRO OSCURO */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(1px);
  z-index: -1;
}

.hero-section h1 {
  font-size: 3rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.hero-section p {
  font-size: 1.2rem;
  opacity: .85;
}


    .btn-whatsapp {
      background: #25d366;
      color: #fff;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    /* QUIENES SOMOS */
    .qs-img {
      border-radius: 12px;
      border: 2px solid #333;
      box-shadow: 0 0 15px rgba(255,255,255,0.05);
    }

    /* TESTIMONIOS */
    .testimonio-card {
      background: #111;
      border: 1px solid #333;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0px 0px 15px rgba(255,255,255,0.07);
      text-align: center;
    }
    .testimonio-card img {
      border: 2px solid #555;
    }
    .beneficio-card{
      box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.377) !important;
    }
    /* AUTOS COMPRADOS */
    .ultimosAutos{
      background-image: url("../img/fondo1.jpg");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
    }
    .auto-card {
      background: #111;
      border: 1px solid #333;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 0 15px rgba(255,255,255,0.06);
    }
    .auto-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    /* FAQ */
    .accordion-button {
      background: #111 !important;
      color: #c0c0c0 !important;
      border: none;
    }
    .accordion-item {
      background: #0d0d0d;
      border: 1px solid #333;
    }
    .accordion-body {
      color: #d0d0d0;
    }

/* PARTE 2 */
.auto-card-new {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease;
}

.auto-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

.auto-img {
  position: relative;
  overflow: hidden;
}

.auto-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .5s ease;
}

.auto-card-new:hover img {
  transform: scale(1.08);
}

.auto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.2));
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .4s ease;
}

.auto-card-new:hover .auto-overlay {
  opacity: 1;
}

.auto-overlay span {
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
}

.auto-info {
  padding: 18px;
}

.auto-info h5 {
  color: #f2f2f2;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.auto-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cfcfcf;
  font-size: .9rem;
}

.auto-info ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}


    /* FOOTER */
    footer {
      background: #0a0a0a;
      border-top: 2px solid #444;
      padding: 20px 0;
      text-align: center;
      color: #999;
    }



.padding{
    padding-bottom: 130px;
    padding-top: 130px;
}

/* Barra superior */
.topbar {
  background: #000000; /* gris */
  color: #fff;
  font-size: 14px;
}

/* Iconos */
.social-link {
  color: #e0e0e0;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Hover */
.social-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
  text-shadow: 0 0 6px rgba(255,255,255,0.6);
}



/* Línea divisoria plateada solo en desktop */
  @media (min-width: 992px) {
    .divider {
      border-left: 2px solid #bfbfbf;
      padding-left: 40px;
      margin-left: 40px;
    }
  }

  .iconBox h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e6e6e6;
    font-weight: 600;
  }

  .iconBox i {
    font-size: 28px;
    color: #cfcfcf;
  }

  .vehiculo-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 1.1rem;
  }
  .vehiculo-list i {
    font-size: 22px;
    color: #cfcfcf;
  }

  .whatsapp-btn {
    background: #25d366;
    padding: 14px 22px;
    border-radius: 8px;
    color: #fff !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    text-decoration: none;
  }
  .whatsapp-btn:hover {
    background: #1ebe5b;
    transform: translateY(-3px);
  }

  .gBack{
  position: relative;
  background: url('../img/fondo3.jpg') center/cover fixed;
  padding: 100px 0 !important;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.gBack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* <-- el filtro negro */
  backdrop-filter: blur(1px); /* opcional, lo hace más elegante */
  z-index: -1;
}

.bene div div{
  min-height: 100px;
}


  .vender{
    background: #ffffff;
    padding: 14px 22px;
    border-radius: 8px;
    color: #000000 !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    text-decoration: none;
  }
  .vender:hover {
    background: #c0c0c0;
    transform: translateY(-3px);
  }



/* ===== BOTÓN HAMBURGUESA ===== */
.custom-toggler {
  border: none;
  background: transparent;
  padding: 6px;
  box-shadow: none;
}

.custom-toggler:focus {
  box-shadow: none;
}

/* Ícono */
.hamburger {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
}

/* Botón hamburguesa */
.custom-toggler {
  border: none;
  background: transparent;
  padding: 6px;
  box-shadow: none;
}

.custom-toggler:focus {
  box-shadow: none;
}

/* Contenedor líneas */
.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Líneas */
.hamburger span {
  height: 4px;
  background: #fff;
  border-radius: 2px;
}

/* Menú mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #0d0d0d;
    padding: 1rem;
    border-top: 1px solid #333;
  }

  .nav-link {
    color: #fff;
    padding: 0.75rem 0;
  }
}

@media (max-width: 700px) {
  h1{
    font-size: 2.3rem;
  }
  .hero-section h1 {
    font-size: 2.3rem;
}
.hero-section {
    padding: 50px 0;

}
.gBack{
     padding: 50px 0 !important; 
}
  }

  /* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.05);
}