/* ===== ESTILOS GENERALES ===== */
/* INICIO*/
.bg__breadcrumb{
    padding: 10px 0;
}
.breadcrumb-item{
    color: var(--Negro, #020202);
    font-family: 'Raleway';
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.breadcrumb-item .active{
    color: grey !important;
    font-family: 'Raleway';
    font-size: 13px !important;
    font-style: normal;
    font-weight: 300 !important;
    line-height: normal;
}

.breadcrumb-titulo{
    color: var(--Azul, #000000);
    font-family: 'Raleway';
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;          
}

.titulo-secciones, .titulo__secciones{
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    letter-spacing: 0%;
 
    color: #000000;
}

.subtitulo-secciones{
    font-family: 'Raleway';
    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-empresa{
    background-color: #F2F2F2;
    padding: 50px;
}

/* ===== BOTONES ===== */
.btn{
    text-align: center;
    font-family: 'Raleway';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.28px;

}

.btn__rojo{
    border: 1px solid var(--Azul, #000000);
    background: #000000;   
    color: #fff;
    padding: 10px 20px;
    background-color: #000000;
    transition: 0.5s ease-in-out;
    border-radius: 20px;
}

.btn__rojo:hover{
    border: 1px solid #000000;
    color: #000000;
    background-color: #fff;
    transition: 0.5s ease-in-out;
}

.btn__white{
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    padding: 10px 20px;
    background-color: transparent;
    transition: 0.5s ease-in-out;
    border-radius: 30px;
}

.btn__white:hover{
    border: 1px solid #fff;
    background: #fff;   
    color: #000;
    cursor: pointer;
    padding: 10px 20px;
    transition: 0.5s ease-in-out;
}


.btn__black{
    border: 1px solid #000;
    color: #000;
    cursor: pointer;
    padding: 10px 20px;
    background-color: transparent;
    transition: 0.5s ease-in-out;
    border-radius: 30px;
}

.btn__black:hover{
    border: 1px solid #000;
    background: #000;   
    color: #fff;
    cursor: pointer;
    padding: 10px 20px;
    transition: 0.5s ease-in-out;
}


/* ===== CAROUSEL PRINCIPAL ===== */
.carousel-item {
    position: relative;
    width: 100%;
    height: 760px;
    background-size: cover;
    background-position: center;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.43) -0.77%, rgba(0, 0, 0, 0.00) 99.23%), linear-gradient(180deg, rgba(0, 0, 0, 0.71) 0.26%, rgba(0, 0, 0, 0.00) 100.26%);
    z-index: 1;
}

.carousel-video,
.carousel-imagen {
    width: 100%;
    height: 760px;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 230px;
    z-index: 2;
}

.carousel__titulo {
    color: #FFF;
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;

}

.carousel__descripcion {
    color: #FFF;
    font-family: 'Raleway';
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
   
}

/* ===== CAROUSEL SERVICIOS ===== */
.carousel-item-servicio{
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item-servicio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.41);
    z-index: 1;
}

.carousel-video-wrapper {
    position: relative;
}

.carousel-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.41);
    z-index: 1;
}

.carousel-caption-servicio {
    position: absolute;
    text-align: left;
    left: 15%;
    bottom: 20px;
    right: auto;
    width: 70%;
    z-index: 2;
}

.carousel__titulo-servicio, .carousel__descripcion-servicio {
    color: white;
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 36px;
    line-height: 130%;
    letter-spacing: 0%;
}

/* ===== TARJETAS DE SERVICIOS ===== */
    .bg-servicios {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1rem;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.imagen-container {
    margin-bottom: 1.5rem;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-servicios img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.bg-servicios:hover img {
    transform: scale(1.2);
}

.bg-servicios h5 {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 50px;
    width: 100%;
}

/* Estilos para el hover "Ver más" */
.ver-mas {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 10px 0;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ver-mas-text {
    margin-right: 5px;
}

.ver-mas-icon {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.bg-servicios:hover .ver-mas {
    bottom: 0;
}

.bg-servicios:hover .ver-mas-icon {
    opacity: 1;
    transform: translateX(0);
}


/* ===== PROCESOS ===== */
.step-container {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
}

.step-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.step-number {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 33px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #000;
    width: 7%;
}

.step-separator {
    border-left: 1px solid #343a40;
    height: 1.2em;
    margin-right: 15px;
    margin-left: 15px;
}

.step-title {
    font-family: 'Raleway';
    font-weight: 500;
    font-size: 36px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: left;
    color: #000;
    width: 10%;
}

.step-description {
    margin-top: 20px;
    /* padding-top: 10px; */
    font-family: 'Raleway';
    font-weight: 300;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    color: #000;
}

/* ===== TARJETAS DE PRODUCTOS ===== */
.card-img-categoria {
    background-size: cover;
    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: 'Raleway';
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    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: #FFFFFF;
    font-family: 'Raleway';
    font-weight: 300;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 29%;
    vertical-align: middle;
}

.contenido__titulo {
    color: #fff;
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    letter-spacing: 8%;
}

.contenido__descripcion {
    color: #fff;
    font-family: 'Raleway';
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
}

/* ===== TARJETAS DE BLOG ===== */
    .card-title {
        color: #000;
        font-family: 'Raleway';
        font-weight: 700;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .card-text-corto {
        font-family: 'Raleway';
        font-weight: 300;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #000;
    }

    .blog-card {
        transition: all 0.3s ease;
        border: none;
    }

    .blog-card:hover {
        transform: translateY(-10px);
        /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
    }

    .blog-card a {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .blog-card img {
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .blog-card:hover img {
        border-radius: 10px;
        opacity: 0.9;
    }
    
    /* Nuevos estilos para el "Ver más" */
    .ver-mas-wrapper {
        text-align: right;
        margin-top: 15px;
        overflow: hidden;
    }
    
    .ver-mas-link {
        display: inline-flex;
        align-items: center;
        font-weight: 600;
        color: #333;
        position: relative;
        padding-right: 30px;
        transition: all 0.3s ease;
    }
    
    .ver-mas-link:after {
        content: "\f061"; /* Icono de flecha de FontAwesome */
        font-family: "Font Awesome 5 Free";
        position: absolute;
        right: 10px;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .blog-card:hover .ver-mas-link {
        color: #000;
        padding-right: 40px;
    }
    
    .blog-card:hover .ver-mas-link:after {
        right: 0;
        opacity: 1;
    }

/* ===== BANNER ===== */
.banner-single {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 0 15%;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

/* ===== 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) {
    /* Carousel */
    .carousel-item {
        height: 700px;
    }
    .carousel-caption {
        bottom: 100px;
    }
    .carousel__titulo {
        font-size: 30px;
    }
    .carousel__descripcion {
        font-size: 18px;
        padding: 10px;
    }
    
    /* Carousel servicios */
    .carousel-caption-servicio {
        left: 5%;
    }
    
    /* 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;
    }
    
    /* Servicios */
    .bg-servicios h5 {
        font-size: 20px;
        margin-top: 20px;
    }
    .bg-servicios {
        height: 200px;
    }
    .imagen-container {
        width: 100%;
    }
    .bg-servicios img {
        max-width: 80%;
    }
    .bg-servicios:hover img {
        transform: scale(1.1);
    }
    
    /* Procesos */
    .step-number {
        font-size: 30px;
        width: 30% !important;
    }
    .step-title {
        font-size: 24px;
               width: 30% !important;
    }
    .step-description {
        font-size: 18px;
 
    }
    
    /* Banner */
    .banner-content {
        padding: 0 5%;
    }
}








.info-contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.item-contact a{
    font-family: 'Raleway';
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000 ;

}