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

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

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

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

.subtitulo-secciones{
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0%;
    
    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 ===== */
/* Base button style */
.btn {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.28px;
    border-radius: 0 !important;
    padding: 10px 20px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

/* Red Button */
.btn__rojo {
    border: 1px solid #FE5953;
    background-color: #FE5953;
    color: #fff;
}

.btn__rojo:hover {
    background-color: #fff;
    color: #FE5953;
}

/* White Button (outlined red) */
.btn__white {
    border: 1px solid #FE5953;
    background-color: transparent;
    color: #FE5953;
}

.btn__white:hover {
    background-color: #FE5953;
    color: #fff;
}

/* Black Button */
.btn__black {
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
    border-radius: 30px;
}

.btn__black:hover {
    background-color: #000;
    color: #fff;
}



/* ===== 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%;
  
}

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

.carousel-caption {
    position: absolute;
    bottom: 230px;
    left: 10%;
    right: auto;
    z-index: 2;
    color: #000 !important;
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 21px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: left;
    width: 30%;
}

.carousel__titulo {
    color: #000 !important;
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
}

.carousel__descripcion {
    color: #000 !important;
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 21px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: left;
}



/* ===== TARJETAS DE PRODUCTOS ===== */


/* ===== CONTENIDO ===== */
.contenido__subtitulo {
    color: #000;
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 29%;
    vertical-align: middle;
}

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

.contenido__descripcion {
    color: #000;
    font-family: 'Open Sans';
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
}
.image-inicio {     
    background-size: cover;
    background-position: center;
    height: 600px;
}
/* ===== TARJETAS DE BLOG ===== */
.blog-card {
    transition: all 0.3s ease;
    border-radius: 4px;
}

.blog-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
}
.blog-card .card-body {
    height: 150px;
    text-align: left;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Para evitar desbordamiento de contenido */
}
.card-subtitle{
    font-family:'Open Sans';
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FE5953;
}
.card-title{
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #000000;
}

.card-text-corto{
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 16px;

    letter-spacing: 0%;
    color: #000000;
    line-height: 125%;

}

.blog-card img {
    transition: all 0.3s ease;
    height: 320px; /* Asegurar que todas las imágenes tengan la misma altura */
    object-fit: cover;
}

.blog-card:hover img {
    opacity: 0.9;
}

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

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

.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%);
}

.banner-content h5 {
    color: #fff;
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    letter-spacing: 0%;
}
.banner-content p {
    color: #fff;
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
}

/* ===== 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: 250px;
    }
    .carousel-caption {
        bottom: 50px;
        width: 80%;
    }
    .carousel__titulo {
        font-size: 16px;
    }
    .carousel__descripcion {
        font-size: 15px;
        padding: 10px;
    }
    
 
    /* Contenido */
    .contenido__titulo{
        font-size: 28px;
    }
    .contenido__descripcion{
        font-size: 16px;
    }
    .contenido__subtitulo{
        font-size: 16px;
    }
    .image-inicio{
        height: 400px;
    }
    /* 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;
    }
    

    
    
    /* Banner */
    .banner-content {
        padding: 0 5%;
    }
}

.item-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icono-contacto {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.item-contact a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    text-decoration: none;
}


.item-contact i{
    color: #FE5953;
}

.contact-item i{
    color: #FE5953;
}

#file-name{
    font-family: 'Open Sans';
font-weight: 400;
font-size: 14px;
line-height: 100%;
letter-spacing: 0%;
color: #848484;
    line-height: 30px;
}
.form-label{
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
            color: #000000
}

.titulo_presupuesto{
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #FE5953;
}

/* Estilos para horarios */
.titulo-horario{
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
}

.descripcion-horario{
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
}

/* Estilos para productos */
.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-name {
    background-color: #f0f0f0;
    padding: 10px;
    margin: 0;
    font-weight: 500;
}

.img-container {
    overflow: hidden;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

/* ===== PÁGINA DE PRODUCTO INDIVIDUAL ===== */
.producto-info {
    padding: 15px;
}

.producto-nombre {
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 30px;
    color: #000000;
    line-height: 28px;
    letter-spacing: 0%;
}

.imagen-producto-container {
    margin-bottom: 15px;
}

.fotorama {
    margin-bottom: 20px;
}

/* Estilos para galería Fotorama */
.fotorama__stage__frame {
    border: 1px solid #D1D2D4 !important;
}

.fotorama__thumb {
    border: 1px solid #D1D2D4;
    height: 80px !important;
}

.fotorama__thumb-border {
    border: 2px solid #FE5953;
}

.fotorama__nav--thumbs {
    text-align: left !important;
    margin: 10px 0;
}

.fotorama__arr,
.fotorama__arr--prev,
.fotorama__arr--next {
    display: none !important;
}

/* ===== PÁGINA DE EMPRESA ===== */
.bg__card {
    background-color: #fff;
    border: 1px solid #E7E7E7;    
    height: 300px;
}

.card__titulo {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
}

.card__texto {
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
}