/* 
    Created on : 15 jul. 2025, 18:54:43
    Author     : Eric Palacios
*/

:root {
    --primary-color: #000000;
    --secondary-color: #ff0000;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --bs-body-font-family: 'Jost-Regular';
    --bs-body-font-medum: 'Jost-Medium';
    --bs-body-font-semibold: 'Jost-SemiBold';
    --bs-body-font-bold: 'Jost-Bold';
    --color-gray-50: #808080;
    --letter-spacing-globlal: 4px;

}

.fs-38 {
    font-size: 38px;
}
/*Home promocional grid*/

.bg-produtos{
    position: relative;
    width: 100%;
    min-height: 1000px;
    height: auto;
    background-image: url(../images/bg-productos.webp);
    background-repeat: repeat-y;
    background-size: contain;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 100px;
    padding-bottom: 60px;
}

.product-card-home {
    transition: transform 0.3s ease;
    background: transparent;
    margin-top: 20px;
}
.product-card-home:hover {
    transform: translateY(-5px);
}

.product-image {
    transition: transform 0.3s ease;
}
.product-card-home:hover .product-image {
    transform: scale(1.05);
}
.product-card-home .product-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    padding: 5px;
    display: block;
    margin: 0 auto;
    border: transparent;
}
.product-name-card-home {
    font-family: var(--bs-body-font-family);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
    margin-top: 15px;
}

.btn-detail-card-home {
    font-family: var(--bs-body-font-family);
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #6b2d1f;
    color: #6b2d1f;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-detail-card-home:hover {
    background-color: #6b2d1f;
    color: #fff;
}

/* === Promo-section === */

.promo-section{
    position: relative;
    padding: 50px 0;
}

.promo-image-wrapper {
    position: relative;
    display: inline-block;
    margin: 70px;
}
/* Borde marrón superpuesto */
.promo-image-wrapper::after {
    content: "";
    position: absolute;
    top: 25px;   /* ajusta para mover el borde */
    left: 25px;
    right: -25px;
    bottom: -25px;
    border: 4px solid #4b1e0d;
    pointer-events: none; /* no afecta clics */
}
.promo-image {
    display: block;
    width: 100%;
    height: auto;
}
.promo-section-text{
    position: relative;
    padding: 0 ;
}
.promo-subtitle {
    font-family: var(--bs-body-font-family);
    display: block;
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var( --primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.promo-title {
    font-family: var(--bs-body-font-family);
    font-weight: 700;
    font-size: 2.3rem;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}
.promo-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: #fc3e03;
    margin-top: 10px;
}
.promo-experience {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.promo-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.promo-btn {
    font-family: var(--bs-body-font-family);
    display: inline-block;
    padding: 10px 40px;
    border: 2px solid #6b2d1f;
    color: #6b2d1f;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 0;
}

.promo-btn:hover {
    background-color: #6b2d1f;
    color: #fff;
    border-color: #6b2d1f;
}

/* === Bloque de productos === */

.productos-section{
    padding: 50px 0;
}

.productos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 columnas iguales */
    grid-template-rows: auto auto auto; /* filas automáticas */
    gap: 10px;
}

/* --- Distribución estilo collage --- */
.item-bolsa {
    grid-column: 1;       /* ocupa la primera columna */
    grid-row: 1 / span 3; /* ocupa 3 filas completas */
}

.item-cosmetiquera {
    grid-column: 2;
    grid-row: 1;
}
.item-porta        {
    grid-column: 3;
    grid-row: 1;
}
.item-cilindro     {
    grid-column: 2;
    grid-row: 2;
}
.item-mochila      {
    grid-column: 3;
    grid-row: 2;
}
.item-termos       {
    grid-column: 2 / span 2;
    grid-row: 3;
}

/* --- Estilo general de los items --- */
.producto-item {
    position: relative;
    overflow: hidden;
}

.producto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* recorta la imagen para llenar el espacio */
    display: block;
}

/* --- Etiquetas negras --- */
.producto-label {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: #000;
    color: #fff;
    font-size: 0.8rem;
    padding: 3px 8px;
    text-transform: uppercase;
}
.productos-section .card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0px;
    left: 0;
    padding: 0;
    border-radius: var(--bs-card-inner-border-radius);
}
.card-overlay-bg{
    background-color: rgba(0,0,0,0.75);
    font-family: var(--bs-body-font-family);
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 4px;
    padding: 15px 30px;
}
.gap-productos-home{
    gap: 22px !important;
}
.titulo-spacing{
    letter-spacing: var(--letter-spacing-globlal);
}
.promo-btn-mt{
    margin-top: 5rem;
}


/* === Bloque de como ordenar === */

.como-ordenar{
    margin-left: -15px;
    margin-right: -15px;
    /* padding: 30px 0 40px 0;*/

}

.como-ordenar .position-relative {
    position: relative;
    overflow: hidden;
}

.como-ordenar .content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    padding: 5rem;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb),var(--bs-text-opacity)) !important;

}

.como-ordenar .step {
    background: #fc3e03;
    color: #fff;
    font-weight: bold;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
}
.step-text{
    position: relative;
    float: left;
    width: calc(100% - 50px);

}
.como-ordenar h5{
    margin-bottom: 0;
}
.como-ordenar li{
    font-size: 18px;
}

.como-ordenar-btn {
    font-family: var(--bs-body-font-family);
    display: inline-block;
    padding: 10px 40px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 0;
    width: 314px;
    margin-top: 20px;
}

.como-ordenar-btn:hover {
    background-color: #fff;
    color: #fff;
    border-color: #fff;
}
.txt-banner-1{
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 15px !important;
}
.txt-banner-2{
    font-size: 3.2rem;
    line-height: 1;

}

/* === Bloque de Servicios === */

.servicio-diseno {
    position: relative;
}

.servicio-diseno img {
    object-fit: cover;
    height: auto;
}

/* Caja blanca sobre la imagen */
.card-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    background: #fff;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0;
    padding: 2rem;
}

/* Icono + texto alineados */
.servicio-diseno-text-icon {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.lightbulb-fill {
    width: 45px;
    height: 45px;
    background-image: url(../images/lightbulb.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex: 0 0 45px;
}

.servicio-diseno-text-title {
    margin: 0 0 0 10px;
    font-size: 30px;
    font-weight: 200;
    line-height: 1.2;
}




/* === Bloque Somos Fabricantes === */

.somos-fabricantes {
    position: relative;
    padding: 50px 0 0 0;
}

.somos-fabricantes img {
    object-fit: cover;
    height: auto;
}

/* Logo en posición absoluta */
.fabricantes-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    text-align: left;
}

.fabricantes-logo {
    width: 250px;
    height: 99px;
}

.fabricantes-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 15px;
}
.fabricantes-text-title{
    font-family: var(--bs-body-font-family);
    color: #fff;
    font-size: 3rem;
    line-height: 1;
}
.fabricantes-text-subtitle{
    font-family: var(--bs-body-font-family);
    color: #fff;
    font-size: 1.5rem;
}
.fabricantes-text h2 {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.fabricantes-text .highlight {
    font-weight: 700;
}

.footer-logo {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    border-radius: 70%;
    padding: 70px 0;
    z-index: 2;
}

.footer-logo img {
    width: 280px;
    height: auto;
    display: block;
}
footer .footer{
    z-index: 1;
}
.container-footer-text{
    margin-top: 115px
}

.header_contacto {
    position: relative;
    background: url("../images/header_bolsas.webp") no-repeat center right;
    background-size: cover;
    height: 160px; /* Ajusta según tu diseño */
    display: flex;
    align-items: center;
    margin-top: 145px;
}

.header-wrapper {
    height: 100%;
    padding-left: 2rem;
}

.header-text h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #000; /* Color minimalista */
    margin: 0;
}


/* Tablets */
@media (max-width: 991px) {
    .section-header {
        height: 140px;
        background-position: center;
    }
    .header-text h2 {
        font-size: 1.8rem;
    }
}

/* Móviles */
@media (max-width: 767px) {
    .section-header {
        height: 120px;
        background-position: center center;
    }
    .header-text {
        padding-left: 1rem;
    }
    .header-text h2 {
        font-size: 1.5rem;
    }
}


/*Breadcrumb*/

.breadcrumb {
    background-color: transparent;
    padding: 10px 10px;
    font-size: 14px;
}
.breadcrumb-item a{
    color: var(--color-gray-50);
    transition: all ease 0.3s;
}
.breadcrumb-item a:hover{
    color: var(--secondary-color);

}
.breadcrumb-item.active {
    color: var(--secondary-color);
}

/*Category Grid*/

.category-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-card {
    border: none;
    border-radius: 0px;
    padding: 20px 20px 0px 20px;
    margin-bottom: 0px;
    transition: all 0.3s;
    background-color: transparent;
}
.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.card-img, .card-img-top {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}


.product-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
    padding: 15px;
    display: block;
    margin: 0 auto;
    border: 1px solid #e6e6e6;
}

.product-name {
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    color: var(--primary-color);
    margin-bottom: 10px;
}
.product-model{
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    color: var(--color-gray-50);
    line-height: var(--bs-body-line-height);
    margin-bottom: 10px;
}
.product-ref {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}
.spacer_line {
    background-color: #e6e6e6;
    width: 100%;
    position: relative;
    float: left;
    height: 1px;
    margin-bottom: 10px;
}
.product-specs li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.btn-detail {
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    color: var(--secondary-color);
    text-decoration: none;
}

.btn-detail:hover {
    color: var(--color-gray-50);
}

/*Product Detail*/

.product-model-detail-text{
    font-family: var(--bs-body-font-semibold);
    color: var(--primary-color);
    line-height: var(--bs-body-line-height);
    margin-bottom: 10px;
}
.product-model-model-text{
    font-family: var(--bs-body-font-medum);
    color: var(--secondary-color);
    line-height: var(--bs-body-line-height);
    margin-bottom: -5px;
}
.product-model-detail-number {
    font-family: var(--bs-body-font-medum);
    color: var(--secondary-color);
    line-height: var(--bs-body-line-height);
    margin-bottom: 0px;
}
.product-title-detail {
    font-family: var(--bs-body-font-semibold);
    color: var(--primary-color);
    margin: 5px 0 20px;
}

.product-image-detail {
    width: 100%;
    height: auto;
    max-height: 600px;
    min-height: 300px;
    object-fit: contain;
    object-position: center;
    padding: 15px;
    display: block;
    margin: 0 auto 30px auto;
    border: 1px solid #e6e6e6;
}

.specs-table {
    width: 100%;
    margin: 20px 0;
}

.specs-table th {
    font-family: var(--bs-body-font-medum);
    color: var(--primary-color);
    font-size: var(--bs-body-font-size);
    padding: 5px 10px;
    text-align: left;
    width: 30%;
}

.specs-table td {
    font-family: var(--bs-body-font-family);
    color: var(--primary-color);
    font-size: var(--bs-body-font-size);
    line-height: var(--bs-body-line-height);
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
}
.product-title-colors{
    font-family: var(--bs-body-font-family);
    color: var(--lt-color-text-very-light);
    text-align: center;
}


.colors-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;

}

.colors-table th, .colors-table td {
    font-family: var(--bs-body-font-family);
    color: #080808;
    padding: 10px 15px;
    text-align: left;
    border-bottom: 0px solid #ddd;
}

.colors-table th {
    font-weight: 600;
}
.tabla_colores {
    border: 1px #d5d5d5 solid;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
}
.additional-cost{
    font-family: var(--bs-body-font-medum);
    color: var(--secondary-color);
    position: relative;
    width: 100%;
    padding: 20px;
    border: 2px dashed red;
    text-align: center;
    margin: 35px 0;
    display: block;
}
.about-section {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 5px;
    margin: 40px 0;
    text-align: center;
    display: block;
}

/* === Bloque Baner box === */


.banner-content h5 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #222;
}

.banner-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: #333;
}

.banner-content a {
    color: #333;
    text-decoration: none;
}

.banner-content a:hover {
    color: #ff6600;
}

/* Forzar columnas a igual altura */
.como-ordenar .row {
    display: flex;
    align-items: stretch; /* Hace que ambas columnas se estiren */
}

.como-ordenar .col-lg-6 {
    display: flex;
    flex-direction: column;
}

/* Ajustar el banner box a ocupar todo el alto */
.banner-box {
    flex: 1;
    display: flex;
    justify-content: center; /* centra vertical */
    align-items: center;     /* centra horizontal */
  /*  border: 4px solid #fc3e03; borde naranja */
    padding: 40px 20px;
    /*  margin: 30px;*/
    background: #f3f2f2;
    max-width: 100%;
    background-image: url(../images/como2.webp);
        background-position: left;
}


/* --- Media Queries --- */

/* Tablets */
@media (max-width: 991px) {
    .banner-box {
        padding: 30px 15px;
    }
    .banner-content h5 {
        font-size: 1.15rem;
    }
    .banner-content p {
        font-size: 0.95rem;
    }
}

/* Móviles */
@media (max-width: 767px) {
    .banner-box {
        padding: 25px 10px;
        margin: 15px 30px;
    }
    .banner-content h5 {
        font-size: 1.1rem;
    }
    .banner-content p {
        font-size: 0.9rem;
    }
}



@media (max-width: 992px) {
    .fabricantes-logo img {
        max-height: 50px;
    }

    .fabricantes-text h2 {
        font-size: 1.6rem;
    }
    .card-overlay {
        max-width: 80%;
        left: 10%;
    }
    .servicio-diseno-text-title {
        font-size: 24px;
    }
    .lightbulb-fill {
        width: 35px;
        height: 35px;
    }
    .card-overlay {
        position: static;
        transform: none;
        margin: 1rem auto;
        max-width: 100%;
        box-shadow: none; /* opcional: quitar sombra en mobile */
    }
    .fabricantes-logo{
        display: none;
    }
    .promo-section-text {
        padding: 0 20px;
    }

    .somos-fabricantes {
        padding: 0 0 0 0;
    }
    #carouselExampleCaptions{
        margin-top: 120px;
    }
}

@media (max-width: 768px) {
    .fabricantes-logo {
        top: 10px;
        left: 10px;
    }

    .fabricantes-text h2 {
        font-size: 1.3rem;
    }

    .fabricantes-text p {
        font-size: 0.9rem;
    }

    .servicio-diseno-text-title {
        font-size: 22px;
    }
    .lightbulb-fill {
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 576px) {
    .como-ordenar .content-overlay {
        padding: 3rem;

    }
    .como-ordenar .step {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .como-ordenar li {
        font-size: 16px;
    }
    .como-ordenar-btn {
        padding: 7px 40px;
        font-size: 0.7rem;
        width: 155px;
        margin-top: 5px;
    }
    .txt-banner-2 {
        font-size: 2rem;
    }
    .txt-banner-1 {
        font-size: 1.5rem;
    }
    img .baner-fabicantes {
        height: 200px;
    }
    img.img-interior{
        height: 580px;
    }

}
