:root {
    --primary: #821131;
    --secondary: #C7253E;
    --tertiary: #E85C0D;
    --light: #FABC3F;
    --dark: #800000;
    /* Fonts */
    --nunito-thin: 100;
    --nunito-light: 300;
    --nunito-regular: 400;
    --nunito-bold: 700;
    --nunito-black: 900;
    --font-xxxl: 5.5rem;
    --font-xxl: 4.5rem;
    --font-xl: 3.5rem;
    --font-title: 2.5rem;
    --font-subtitle: 1.5rem;
    --font-paragraph: 1em;
}

body {
    background-color: #f1f1f1;
    font-family: "Bahianita", sans-serif !important;
    font-weight: 400;
    font-style: normal;
}

.bahianita {
    font-family: "Bahianita", sans-serif !important;
    font-weight: 400;
    font-style: normal;
}

.nunito {
    font-family: "Nunito", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
}

.nunito-thin {
    font-weight: var(--nunito-thin) !important;
}

.nunito-light {
    font-weight: var(--nunito-light) !important;
}

.nunito-regular {
    font-weight: var(--nunito-regular) !important;
}

.nunito-bold {
    font-weight: var(--nunito-bold) !important;
}

.nunito-black {
    font-weight: var(--nunito-black) !important;
}

.font-xxxl {
    font-size: 5.5rem !important;
}

.font-xxl {
    font-size: 4.5rem !important;
}

.font-xl {
    font-size: 3.5rem !important;
}

.font-title {
    font-size: 2.5rem !important;
}

.font-subtitle {
    font-size: 1.5rem !important;
}

.font-paragraph {
    font-size: 1em !important;
}

.font-xs {
    font-size: 0.8em !important;
}

.neon-text {
    font-weight: var(--nunito-black);
    color: #ffffff;
    text-shadow: 
        0 0 15px #ffffff;
}

.border-primary {
    border: 2px solid var(--primary) !important;
}
.border-secondary-red {
    border: 2px solid var(--secondary) !important;
}
.border-tertiary {
    border: 2px solid var(--tertiary) !important;
}
.border-light-yellow {
    border: 2px solid var(--light) !important;
}
.border-dark-red {
    border: 2px solid var(--dark) !important;
}
.border-dark {
    border: 2px solid #000 !important;
}



/* Background-Images */

.background-distributors {
    background-image: url(/assets/img/Chipinque-desktop-distributors-2.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.background-products {
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 768px) {
    .background-products {
        width: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

.background-primary {
    background-color: var(--primary);
}

.background-secondary {
    background-color: var(--secondary);
}

.background-tertiary {
    background-color: var(--tertiary);
}

.background-light {
    background-color: var(--light);
}

.background-dark {
    background-color: var(--dark);
}

.text-primary-red {
    color: var(--primary);
}

.text-secondary-red {
    color: var(--secondary);
}

.text-tertiary {
    color: var(--tertiary);
}

.text-light-yellow {
    color: var(--light);
}

.text-dark-red {
    color: var(--dark);
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.fill-tertiary {
    fill: var(--tertiary);
}

/* Spinner */

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* Buttons */
.button-primary {
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 10px 15px;
    text-decoration: none !important;
    border-radius: 5px;
}

.button-primary:hover,
.button-primary:focus {
    background-color: transparent !important;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all .2 ease-in-out;
}

.button-tertiary {
    width: 100%;
    background-color: var(--tertiary);
    color: white;
    padding: 15px 20px;
    text-decoration: none !important;
    border-radius: 5px;
}

.button-tertiary:hover,
.button-tertiary:focus {
    background-color: var(--light) !important;
    transition: all .2 ease-in-out;
}

.btn-text-tertiary {
    color: #fff;
    text-decoration: none !important;
}

.btn-text-tertiary:hover,
.btn-text-tertiary:focus {
    color: var(--tertiary);
    transition: color .3s ease-in-out;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-call-us {
    background-color: var(--tertiary);
    color: #ffffff;

    .btn-call-us-hover {
        background-color: #ffffff;
    }

    .fa-phone {
        color: #000;
    }
}

.btn-call-us:hover,
.btn-call-us:focus {
    background-color: transparent !important;
    color: var(--tertiary);
    border: 1px solid var(--tertiary);

    .btn-call-us-hover {
        background-color: var(--tertiary);
    }

    .fa-phone {
        color: white;
        transition: all .2s ease-in-out;
    }
}

/* Products */
.product-information {
    width: 100%;
    height: 100vh;
    background: center center no-repeat url(/assets/img/background.jpg);
    background-size: cover;
}

.border-product {
    border: 1.5px solid var(--tertiary);
} 

.border-bottom-tertiary {
    border-bottom: 1.5px solid var(--tertiary);
}

.box-shadow {
    width: 100%;
    box-shadow: inset 0 20px 20px rgba(0, 0, 0, 1),
                inset 0 -20px 20px rgba(0, 0, 0, 1)
}

.section-title-products {
    background: center center no-repeat url(/assets/img/background.jpg);
    background-size: cover;
    padding: 150px 0px 150px 0px;
}

.section-title-products .padding-b-100 {
    padding: 0 0 150px 0;
}

.products img {
    display: inline-block;
    height: 350px;
    transform: scale(1);
}

.products img:hover,
.products img:focus {
    transform: scale(1.1);
    transition: all .3s ease-in-out;
}

.recipes-item {
    transition: transform 0.3s ease-in-out;
}

.recipes-item:hover,
.recipes-item:focus {
    transform: scale(1.1);
}

.hat-image {
    top: -65px;
    z-index: 10;
}

.item-products {
    width: 100%;
}


@media (max-width: 768px) {
    .products img {
        height: 300px;
    }

    .section-title-products {
        padding: 100px 0px 100px 0px;
    }

    .section-padding {
        padding: 100px 20px;
    }

    .section-padding h2 {
        font-size: 80px;
    }

    .hat-image {
        width: 200px;
        top: -65px;
        right: 75px;
        z-index: 10;
    }
}

/* Navbar */
.navbar-link {
    color: white;
}

.navbar-link:hover, .navbar-link:focus {
    color: var(--tertiary);
}

.navbar-nav .nav-item .active {
    color: #E85C0D !important;
}

.nav-bar {
    position: relative;
    padding: 0 4.75rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: medium;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar-nav .nav-link.show {
    color: #fff !important
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #eeeeee;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/* Header Carousel */

.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 0;
}

/* .header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #ffffff;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
} */

.header-carousel .owl-carousel-item {
    position: relative;
    min-height: 100vh;
}

.header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.header-carousel .owl-carousel-products {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.header-carousel .owl-carousel .owl-item img {
    width: 100% !important;
    height: 100% !important
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 600px;
    }

    .header-carousel .owl-carousel-item img {
        height: 600px;
        object-fit: cover;
    }

    .owl-carousel .owl-item img {
        width: 100vw !important;
    }

}

.background-salsa-negra {
    background-image: url(/assets/img/salsas/Chipinque-desktop-salsas-blacksauce.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {   
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tertiary);
    border: 1px solid #ffffff;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background-color: #ffffff;
    color: var(--tertiary);
}

.page-header {
    background: linear-gradient(0, 0, 0, .4), rgba(0, 0, 0, .4), url(/img/example-image-1.jpeg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/* Products */

.products-image img {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    object-fit: cover;
}

.background-image-90 {
    background: linear-gradient(0, 0, 0, .4), rgba(0, 0, 0, .4), url(/img/example-image-1.jpeg) center center no-repeat;
    background-size: cover;
}

.card-product {
    width: 100%;
    height: 30rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.card-mobile-full {
    height: 100%;
}

@media (max-width: 990px) {
    .card-mobile-full {
        width: 358px;
        height: 30rem;
    }

    .card-product {
        margin-bottom: 1rem;
    }
}

@media (max-width: 700px) {
    .card-mobile-full {
        width: 210px;
        height: 30rem;
    }

    .card-product {
        margin-bottom: 1rem;
    }
}

/* Products */
.card-distribuitor {
    border: 1px solid #000;
}

.card-distribuitor:hover,
.card-distribuitor:focus {
    border: 1px solid var(--tertiary);
}



/* Footer */
.footer .text-title {
    color: var(--light);
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tertiary);
    border: 1px solid #ffffff;
    transition: .5s;
}

.footer .btn.btn-social:hover {
    color: var(--tertiary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    text-align: center;
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.accordion {
    background-color: transparent;
}

.accordion-button {
    background-color: transparent;
    box-shadow: none !important;
    color: inherit; /* Mantiene el color del texto */
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--tertiary) !important; /* Usa el color terciario */
}

.accordion-button::after {
    display: none !important;
}

/* Expand Start */

.expand-1 {
    transform: scale(1) !important;
    transition: transform 0.2s ease-in-out;
}

.expand-1:hover, .expand-1:focus {
    transform: scale(1.1);
}

.expand-1-image img {
    width: 50% !important;
    transform: scale(1) !important;
    transition: transform 0.2s ease-in-out;
}

.expand-1-image:hover img, .expand-1-image:focus img {
    transform: scale(1.1);
}

/* Expand End */

/* Complete Recipes Start */

.recipe-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 25px;
}

.title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
}

.skills-recipe {
    display: flex;
    justify-content: space-between;
}

#recipe-preparation {
    list-style: none; /* Oculta la numeración por defecto */
    counter-reset: step-counter; /* Crea un contador para los números */
    /* background-color: #f8f9fa; */
    padding: 0;
   
}

#recipe-preparation li {
    counter-increment: step-counter; /* Aumenta el contador */
    padding-left: 100px;
    margin-bottom: 20px;
    font-family: "Nunito", sans-serif; /* Fuente personalizada */
    font-size: 16px; /* Tamaño de fuente */
    position: relative;
    background-color: #f8f9fa;
    padding: 40px 50px;
    border-radius: 50px;
}

#recipe-preparation li::before {
    content: counter(step-counter) ".";
    font-weight: bold;
    font-size: 18px;
    color: var(--tertiary); /* Color del número */
    position: absolute;
    left: 30px; /* Posición del número */
    top: 50%;
    transform: translateY(-50%);
}

#complete-recipes-carousel .owl-prev, #complete-recipes-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
}

#complete-recipes-carousel .owl-prev {
    left: 10px;
    color: blue;
}
#complete-recipes-carousel .owl-next {
    right: 10px;
    color: red;
}

/* Complete Recipes End */

/* ----------------------------------------- Carousels Start */

.carousel-principality {
    width: 100%;
    height: 100%;
    margin: 15px 0;
}
  
.carousel-principality img {
    display: block;
    width: 100%;
    height: 100vh !important;
    object-fit: cover;
    object-position: top top !important;
}

.carousel-principality img.custom-position {
    object-position: 50% 25% !important;
}

.video-social-commitment video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.chipinque-background {
    background-image: url(/assets/svg/Imagotipo-Black-Chipinque.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* ----------------------------------------- Carousels End */


/* --------------------------------------- Media Querys Start */

@media screen and (max-width: 1024px) {
    .btn-call-us {
        display: flex;
        flex-direction: column !important;
    }
}

@media screen and (max-width: 700px) {

    /* Locations Companies */
    /* header .span-header {
        display: none;
    } */
    .font-xxxl {
        font-size: var(--font-xxl) !important;
    }

    .font-xxl {
        font-size: var(--font-xl) !important;
    }

    .font-xl {
        font-size: var(--font-title) !important;
    }

    .font-title {
        font-size: var(--font-subtitle);
    }
 
    header nav img {
        height: 5vh !important;
    }

    /* Visit Shop */
    #visit-shop .header-shop img {
        width: 600px;
        height: 620px;
        border-radius: 5px;
        object-fit: cover;
    }

    #shape-about {
        height: 50vh;
        background-repeat: no-repeat;
        background-position: center center;
    }

    #shape-contact {
        height: 50vh;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .call-action .background-martin {
        background-repeat: no-repeat;
        background-position: center right;
        flex-direction: column-reverse;
    }

    #shape-about h2 {
        font-size: 2.5em;
    }

    #follow .phone-martin {
        width: 100%;
        height: 375px;
        object-fit: cover;
    }

    .why-do-columns {
        display: flex;
        flex-direction: column;
    }

    .paragraph-locations {
        width: 100%;
    }

    /* Shop Coming Soon */
    .shop-coming-soon .title-xxl {
        font-size: 5rem;
    }

    .shop-coming-soon .title-xl {
        font-size: 5rem;
    }

    .shop-coming-soon .title-l {
        font-size: 5rem;
    }

    .shop-coming-soon .tape-effect-two {
        font-size: 0.2rem;
    }

    .background-attachment {
        padding: 100px 0;
        width: 100%;
        height: auto;
        background-image: url('/assets/img/Background-Martin.jpg');
        background-position: right center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .background-martin {
        background-image: url('/assets/img/Background-Martin.jpg');
        background-position: center right;
    }

    .background-martin::before {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .skills-recipe {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    #recipe-preparation li {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 75px 20px;
    }

    #recipe-preparation li::before {
        position: relative;
        top: 0;
        left: 0;
        font-size: var(--font-subtitle);
    }

    .expand-1-image img {
        width: 100% !important;
    }

    .map-chipinque {
        width: 100% !important;
        height: 100%;
        object-fit: cover;
    }

}

/* --------------------------------------- Media Querys End */
