/* ===== ESTILOS GENERALES ===== */
/* INICIO*/
.bg__breadcrumb{
    padding: 10px 0;
}
.breadcrumb-item{
    color: var(--Negro, #020202);
    font-family: 'Roboto';
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.breadcrumb-item .active{
    color: grey !important;
    font-family: 'Roboto';
    font-size: 13px !important;
    font-style: normal;
    font-weight: 300 !important;
    line-height: normal;
}

.breadcrumb-titulo{
    color: var(--Azul, #000000);
    font-family: 'Roboto';
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;          
}

.carousel-video-wrapper {
    height: 700px;
    overflow: hidden;
}

.carousel-video {
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    padding: 0;
}

.carousel-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.carousel-subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* .carousel-btn {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
} */

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-video-wrapper,
    .carousel-imagen {
        height: 300px;
    }
    
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
    }
}

.carousel-btn {
    background-color: #FE6D00;
    color: white;
    padding: 10px 20px;
    border: 1px solid #FE6D00;
    border-radius: 5px;
    text-decoration: none;
}
.carousel-btn:hover {
    background-color: #fff;
      border: 1px solid #FE6D00;
    color: #e65c00;
}
.titulo-secciones, .titulo__secciones{
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    letter-spacing: 0%;
 
    color: #000000;
}

.subtitulo-secciones{
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
}

.empresa-titulo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #131313;
}

.empresa-descripcion {
    font-size: 1.2rem;
    color: #131313;
}

.bg__card{
    background-color: #fff;
    height: 350px;
}

.card__titulo{
    font-family: 'Roboto';
font-weight: 600;
font-style: 'SemiBold';
font-size: 20px;

line-height: 100%;
letter-spacing: 0%;
text-align: center;

}

.card__texto{
    font-family: 'Roboto';
    font-weight: 400;
    font-style: 'Regular';
    font-size: 16px;

    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;

}



  /* ===== TARJETAS DE SERVICIOS ===== */
    .bg-servicios {
        background-color: #f8f9fa;
        border-radius: 0.25rem;
        height: 450px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .bg-servicios::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
        z-index: 1;
        transition: all 0.3s ease;
    }

    /* .bg-servicios:hover::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    } */

    .bg-servicios:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .servicio-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px 20px;
        z-index: 2;
        color: white;
        text-align: center;
        opacity: 1;
        transition: opacity 0.3s ease;
    }
    
    .bg-servicios:hover .servicio-content {
        opacity: 0;
    }

    .servicio-title {
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 0;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: 4;
    }

    .servicio-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.3);
        color: white;
        padding: 30px 20px;
        text-align: center;
        transition: all 0.3s ease;
        z-index: 3;
        opacity: 0;
        transform: translateY(100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    
    .servicio-overlay-title {
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 15px;
        color: white;
    }

    .servicio-descripcion {
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
    }

    .bg-servicios:hover .servicio-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    /* Enlace sin decoración */
    .servicio-link {
        text-decoration: none;
        color: inherit;
        display: block;
        height: 100%;
    }

    .servicio-link:hover {
        text-decoration: none;
        color: inherit;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .bg-servicios {
            height: 280px;
        }
        
        .servicio-content {
            padding: 20px 15px;
        }
        
        .servicio-title {
            font-size: 18px;
        }
    }


    /* ===== BANNER ===== */
.banner-single {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 0 15%;
    text-align: center;
    color: white;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.banner-content h5 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.banner-content p {
font-family: 'Roboto';
font-weight: 400;
font-style: 'Regular';
font-size: 24px;
line-height: 30px;
letter-spacing: 0%;
text-align: center;
}

/* Adaptaciones para móvil */
@media (max-width: 768px) {
    .banner-single {
        height: 350px;
        padding: 20px;
    }

    .banner-content {
        padding: 0 5%;
    }

    .banner-content h5 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 18px;
        line-height: 24px;
    }
    
    .carousel-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Ajustes para el segundo banner con imagen */
    .banner-content .d-flex {
        flex-direction: column;
    }
    
    .banner-content .d-flex h5 {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    
    .banner-content img {
        margin-bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .banner-single {
        height: 300px;
    }
    
    .banner-content h5 {
        font-size: 24px;
    }
    
    .banner-content p {
        font-size: 16px;
        line-height: 22px;
    }
}







/* ===== TARJETAS DE PRODUCTOS ===== */
.card-img-categoria {
    background-size: contain;
    background-position: center;
    height: 380px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.card-img-categoria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);
    z-index: 1;
}

.card-img-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.card:hover .card-img-inner {
    transform: scale(1.2);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-content h5 {
    color: white;
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 0%;
}

.ver-mas-link {
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
}

.ver-mas-link i {
    margin-left: 5px;
}

.card:hover .ver-mas-link {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CONTENIDO ===== */
.contenido__subtitulo {
    color: #000;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 29%;
    vertical-align: middle;
}

.contenido__titulo {
    color: #000;
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    letter-spacing: 8%;
}

.contenido__descripcion {
font-family: 'Roboto';
font-weight: 400;
font-style: 'Regular';
font-size: 16px;

line-height: 23px;
letter-spacing: 0%;
text-align: justify;

}

.custom-item li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    list-style-type: none;
}

.custom-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23FE6D00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* ===== TARJETAS DE BLOG ===== */




/* ===== GALERÍA DE PRODUCTOS ===== */
.imagen-producto-container {
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
    height: 400px;
}

.imagen-producto {
    transition: transform .5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imagen-producto:hover {
    transform: scale(1.1);
}

/* ===== BRANDS CAROUSEL ===== */
.brand-item img {
    opacity: 0.8;
    transform: scale(1);
    border-radius: 10px;
    transition: all 0.5s ease;
}

.brand-item:hover img {
    opacity: 1;
    transform: scale(1.05);
    border-radius: 10px;
    filter: grayscale(0%);
}

.slick-prev, 
.slick-next {
    display: none !important;
}

.slick-dots {
    bottom: -30px;
    position: relative;
    margin-top: 15px;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #ccc;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: #131313;
    opacity: 1;
}

.slick-slide {
    visibility: visible !important;
    height: auto;
}

/* ===== MEDIA QUERIES ===== */
@media screen and (max-width: 768px) {

    
    /* Contenido */
    .contenido__titulo{
        font-size: 28px;
    }
    .contenido__descripcion{
        font-size: 16px;
    }
    .contenido__subtitulo{
        font-size: 16px;
    }
    
    /* Botones */
    .btn__rojo{
        font-size: 14px;
        padding: 8px 16px;
    }
    .btn__white{
        font-size: 14px;
        padding: 8px 16px;
    }
    .btn{
        font-size: 14px;
    }
    
    /* Títulos */
    .titulo__secciones, .titulo-secciones {
        font-size: 24px;
    }
    .breadcrumb-item{
        font-size: 12px;
    }
    .breadcrumb-titulo{
        font-size: 24px;
    }
    

    
 
    
  
}






