.bg__breadcrumb{
  background:#fff;
  padding: 18px 0;
  text-align:left;
}

.custom-breadcrumb{
  justify-content:left;   /* centra */
  background: transparent;  /* sin fondo */
  padding:0;
  margin:0;
  font-size: 14px;
  color:#6b7280;            /* gris suave */
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
  content: " > ";
  color:#9ca3af;            /* separador gris */

}

.custom-breadcrumb a{
  color:#6b7280;
  text-decoration:none;
}

.custom-breadcrumb a:hover{
  text-decoration:underline;
}

.custom-breadcrumb .active{
  color:#6b7280;
  font-weight: 500;
}


/* ====== VIDEO / IMAGEN: alto fijo 700px ====== */
.carousel-video-wrapper {
  height: 700px;
  overflow: hidden;
}

.carousel-video {
  width: 100%;
  height: 700px;         /* <- alto fijo */
  object-fit: cover;     /* <- recorta sin deformar */
  display: block;
}

.carousel-imagen {
  height: 700px;
  object-fit: cover;
}

/* Si querés que la caption no se “achique” raro */
.carousel-caption {
  right: 0;
  left: 0;
}

/* ====== TEXTOS: responsive ====== */
.carousel-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.carousel-subtitle {
  font-size: 18px;
  line-height: 1.4;
}

  /* Nuevo estilo para el gradiente */
  .carousel-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, #8DB3F4 35.68%, #FFF 100%);
      mix-blend-mode: multiply;
      pointer-events: none; /* Asegura que no bloquee clicks */
      z-index: 1; /* Asegura que esté sobre la img/video */
  }

  /* Aseguramos que el texto esté por encima del gradiente */
  .carousel-caption {
      z-index: 2;
  }
/* Tablet */
@media (max-width: 991.98px) {
    
  .carousel-title { font-size: 34px; }
  .carousel-subtitle { font-size: 16px; }
}

/* Mobile */
@media (max-width: 575.98px) {
  .carousel-video-wrapper,
  .carousel-video {
    height: 400px;
  }
.carousel-imagen {
        height: 400px !important;
    }

  .carousel-title { font-size: 24px; }
  .carousel-subtitle { font-size: 14px; }

  /* opcional: que no quede tan ancho el texto */
  .carousel-caption .container { padding-left: 16px; padding-right: 16px; }
  .carousel-caption .col-md-6 { width: 100%; }
}

/* inicio */

.titulo-secciones{
    color: #131313;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 41.6px */
    text-transform: uppercase;
}
.titulo-inicio{
    color: #FFFFFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 41.6px */
    text-transform: uppercase;
}

.descripcion-inicio{
    color: #FFFFFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}



/* categorias */
/* Estilo del contenedor de la categoría */
.categoria {
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
    align-items: stretch;
    border-radius: 10px;
    border: 1px solid #ddd;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

/* Estilo del nombre de la categoría */
.categoria__nombre {
  display: flex;
  align-items: flex-end;
  padding: 20px;
    font-family: 'Inter';
    font-weight: 600;
    font-style: 'Semi Bold';
    font-size: 22px;
    line-height: 100%;
    letter-spacing: normal;
  min-height: 100%;
}

/* Estilo del enlace del nombre */
.categoria__nombre a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
    text-transform: uppercase;
  padding: 0;
}

.categoria__nombre a:hover {
    color: #16325A; /* Cambia el color en hover */
}

/* Contenedor de la imagen de la subcategoría */
.subcategoria__foto-container {
    width: 100%;
  min-height: 280px;
  padding: 24px 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
    overflow: hidden;
}

/* Estilo de la imagen de la subcategoría */
.subcategoria__foto {
    width: 100%;
    height: 100%;
  max-height: 240px;
  object-fit: contain;
  object-position: center right;
    transition: transform 0.3s ease-in-out; /* Transición suave */
  display: block;
}

/* Zoom en hover */
.categoria:hover .subcategoria__foto {
    transform: scale(1.1); /* Ajusta la escala según tus necesidades */
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {


    .categoria {
      grid-template-columns: 1fr;
    }

    .wrapper{
        border: 1px #16325A solid;
        width: 40vw !important;
        display: flex;
        border-radius: 15px;
    }
    
    .subcategoria__foto-container {
        width: 100%;
      min-height: 220px;
      padding: 20px 20px 0;
      justify-content: center;
    }

    .subcategoria__foto {
      max-height: 200px;
      object-position: center;
    }

    .categoria__nombre {
      min-height: auto;
      padding: 20px;
    }
}



/* clientes */
     .brands-carousel {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
   
  }
  
  .brand-item {
    margin: 0 15px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 120px;
     border: 1px solid #ddd;
  
  }
  
  .brand-item:hover {
   filter: grayscale(0%);
    
  }
  
  .brand-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  /* Estilos para los puntos de navegación */
  .slick-dots {

    margin-top: 20px;
  }
  
  .slick-dots li button:before {
    font-size: 12px;
    color: #ccc;
    opacity: 1;
  }
  
  .slick-dots li.slick-active button:before {
    color: #001052; /* Color principal del sitio */
    opacity: 1;
  }
  

  /* novedades */

      .card-categoria{
        color: var(--Azul, #003375);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .card-title{
        font-weight: 700;
        font-size: 20px;
        color: #131313;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .card-text-corto{
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 15px;
        color: #555555;
        margin-bottom: 20px;
        /* Asegura consistencia en altura */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-card {
        border: 1px solid #D8D8D8;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08); /* Sombra suave al hover */
    }

    .blog-card:hover .arrow-icon {
        transform: translateX(5px); /* Mueve la flecha a la derecha */
        color: #003375;
    }

    .arrow-icon {
        transition: transform 0.3s ease;
        color: #003375;
        font-size: 20px;
    }

    .card-date {
        color: #999; /* Gris suave para la fecha */
        font-size: 14px;
        font-weight: 400;
    }

    /* Contenedor flexible para el cuerpo de la tarjeta */
    .card-body-flex {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 1.5rem;
        min-height: 250px; 
    }


    /* productos */

    /* Estilos para el sidebar */
.sidebar-categoria {
    display: block;
  color: var(--Negro, #1A1F22);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}
.sidebar-categoria:hover, .sidebar-categoria.active {
    color: #003375;
    font-weight: 600;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s ease;
}

/* al hacer hover sobre el card, también se agranda la imagen */
.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-producto {
    padding: 15px;
    text-align: left;
    background-color: #fff;
}

.card-title-producto {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #000;
    margin-top: 10px;
    font-size: 16px;
}

.card-text-producto {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #555;
    font-size: 14px;
    margin-bottom: 0;
}
.card-text-modelo{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: 'SemiBold';
    font-size: 16px;

    line-height: 120%;
    letter-spacing: 0%;
    color: #B70310;
}

@media (max-width: 768px) {
    .card-img-top {
        height: 200px;
    }
}
