:root {
    --primary-color: #b35032;
    --secondary-color: #ca8041;
    --color-hover: #f5b066;
    --color-white: #fff;
    --color-text-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--color-text-gray);
}

a {
    text-decoration: none;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1 {
    font-weight: 600;
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.color-white {
    color: var(--color-white);
}

.padding-y-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.padding-y-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.padding-x-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.display-grid {
    display: grid;
}

.text-align-center {
    text-align: center;
}

.margin-bottom-05 {
    margin-bottom: 0.5rem;
}

.margin-bottom-1 {
    margin-bottom: 1rem;
}

.margin-bottom-2 {
    margin-bottom: 2rem;
}

.margin-bottom-3 {
    margin-bottom: 3rem;
}

.font-size-18 {
    font-size: 1.125rem;
}

.font-size-20 {
    font-size: 1.25rem;
}

.border-radius-05 {
    border-radius: 0.5rem;
}

.screen-max-992 {
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
}

.background-color-gray-ligth {
    --tw-bg-opacity: 0.3;
    background-color: rgb(245 236 229 / var(--tw-bg-opacity));
}

.boton-whatsapp-flotante {
    border-radius: 50%;
    position: fixed;
    right: 60px;
    z-index: 2;
    box-shadow: 0 5px 10px rgb(0 0 0 / .3);
    transition: all 500ms;
}

.boton-whatsapp-flotante svg {
    width: 64px;
    height: auto;
}

.first-boton-whatsapp {
    bottom: 90px;
}

.second-boton-whatsapp {
    bottom: 180px;
}

.boton-whatsapp-flotante:hover {
    transform: scale(1.05);
}

.header_navbar {
    background-color: var(--color-white);
    position: fixed;
    z-index: 2;
    width: 100%;
    top: 0
}

header {
    background-color: var(--secondary-color);
    padding: .5rem 0;
}

.header-up {
    display: flex;
    justify-content: end;
    align-items: center;
}

.header-up>div {
    padding: 0 1rem;
    border-right: 2px solid var(--color-white);
}

.header-up a {
    display: inline-block;
    color: var(--color-white);
    transform: perspective(1px) rotateY(0deg);
    backface-visibility: hidden;
    transition: all .3s linear;
}

.header-up a span {
    vertical-align: middle;
    font-weight: 500;
}

.header-up a:hover {
    transform: scale(1.02) translateZ(0);
}

.boton-whatsapp:hover {
    transform: scale(1.2);
    transition: .3s
}

.img-logo-header {
    width: min(30vw, 180px)
}

li.nav-item .nav-link.item-menu,
a.dropdown-item.item-submenu {
    font-weight: 500;
}

li.nav-item .nav-link.item-menu:hover {
    color: var(--primary-color) !important;
    border-bottom: 4px solid var(--primary-color);
}

a:is(:link, :active, :visited).active-link {
    color: var(--primary-color) !important;
    border-bottom: 4px solid var(--primary-color);
}

.dropdown .dropdown-menu .dropdown-item:focus {
    background-color: #fff0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    height: 42.5px;
}

.carousel-item img {
    max-height: 600px;
    object-fit: cover
}

.overlay-layer {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.carousel-caption p {
    font-size: clamp(1.625rem, 1.4394rem + 0.8838vw, 2.5rem);
    line-height: 1.2;
    font-weight: 500;
}

.carousel-caption * {
    opacity: 0;
    transform: translateY(-40%);
    animation: mov_info_left_to_right 1s forwards linear;
}

@keyframes mov_info_left_to_right {
    from {
        opacity: 0;
        transform: translateX(-40%)
    }

    to {
        opacity: 1;
        transform: translateX(0%)
    }
}

.container-multiplasticos {
    max-width: 1280px;
    margin: 0 auto;
}

.section-center {
    margin-top: 151.86px
}

.product-grid-col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.product-box {
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: 5px;
    padding: 1rem;
}

.product-detail {
    display: flex;
    flex-direction: column;
    border-radius: .5rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.product-detail img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-box-content {
    padding: 1.5rem;
}

.product-box-link {
    display: block;
    margin-top: auto
}

.product-box-title {
    background-color: var(--secondary-color);
    border-radius: 5px;
    padding: 1rem;
}

.product-box-title-font-size {
    font-size: 1.625rem;
    font-weight: 500;
}

.product-box-title-h3 {
    font-size: 1.375rem;
    font-weight: 500;
}

.product-box-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.product-box-image img {
    max-width: 100%;
    height: auto;
}

.section-images-products figure {
    border-radius: .5rem;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.zoom-in-image {
    backface-visibility: hidden;
}

.zoom-in-image img {
    max-width: 100%;
    display: block;
    transform: scale(1.005);
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.zoom-in-image:hover img {
    transform: scale(1.1);
}

.section-images-products figure figcaption {
    padding: 1rem;
}

.section-images-products figure figcaption h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.ul-product-items {
    padding-left: 1rem;
}

.ul-product-items li {
    padding-left: .8rem;
    margin-bottom: .5rem;
}

.ul-product-items li::marker {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%23b35032" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>');
}

.ul-product-items li a {
    display: inline-block;
    font-weight: 500;
    color: var(--color-text-gray);
    transform: perspective(1px) rotateY(0deg);
    transition: all .2s linear;
}

.ul-product-items li span {
    line-height: 1.3rem;
    vertical-align: top;
}

.ul-product-items li a:hover {
    transform: scale(1.01) translateZ(0);
    color: var(--primary-color);
}

.video-container-us video {
    max-width: 100%;
    height: auto;
}

/*Section Por qué elegirnos */

.benefits-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.benefits-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.1);
}

.benefits-card h3 {
    line-height: 1.2;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.benefits-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.list-article-benefits {
    display: flex;
}

.list-article-benefits svg {
    margin-right: .5rem;
    color: var(--primary-color);
}

.list-article-benefits p {
    font-weight: 500;
}

.values-grid-benefits {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
    border-radius: .5rem;
}

/*Fin  Section Por qué elegirnos*/

.section-down {
    background-color: #2c2a2a;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: 18px;
}

.section-down p {
    color: var(--color-white);
    font-style: italic;
    text-align: center;
}

.section-down a {
    display: block;
    color: var(--secondary-color);
    text-underline-offset: 4px;
    text-decoration: underline;
    transition: all 300ms;
    transition-timing-function: linear;
}

.section-down a:hover {
    color: var(--color-hover);
}

.shipping-vehicle img.drive {
    width: 100%
}

.shipping-vehicle {
    padding-top: 40px;
    position: relative;
    animation-name: car-drive;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

.llantas {
    position: absolute;
    width: 80px;
    height: 80px;
    bottom: -8px;
    animation: spin 2s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.llanta-trasera {
    left: 20px
}

.llanta-delantera {
    left: 299px
}

.shipping-title h2,
.shipping-title p {
    text-align: left
}

section.section-center-shipping .shipping-title h2 {
    color: var(--primary-color);
    font-weight: 600;
}

@keyframes car-drive {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(50vw)
    }
}

@keyframes car-drive-max-width-768 {
    0% {
        transform: translateX(-330px)
    }

    100% {
        transform: translateX(90vw)
    }
}

.overflow-hidden {
    overflow: hidden
}

.entering-from-below {
    opacity: 0;
    transform: translateY(15%);
}

.entering-from-below.observed-element {
    animation: enteringFromBelow 1s ease-out forwards;
}

@keyframes enteringFromBelow {
    from {
        opacity: 0;
        transform: translateY(15%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.entering-from-the-left {
    opacity: 0;
    transform: translateX(-15%);
}

.entering-from-the-left.observed-element {
    animation: enteringFromTheLeft 1s ease-out forwards;
}

@keyframes enteringFromTheLeft {
    from {
        opacity: 0;
        transform: translateX(-15%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.entering-from-the-right {
    opacity: 0;
    transform: translateX(15%);
}

.entering-from-the-right.observed-element {
    animation: enteringFromTheRight 1s ease-out forwards;
}

@keyframes enteringFromTheRight {
    from {
        opacity: 0;
        transform: translateX(15%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

footer {
    background: #000
}

.row-footer-section {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-items: center;
}

.tit-footer {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 1rem
}

.row-footer-section ul li a {
    display: inline-block;
    color: var(--color-text-gray);
    transition: all 200ms linear;
}

.row-footer-section ul li a:hover {
    color: var(--primary-color);
}

.li_correo_footer {
    background: url(../images/img-icon/email-icon.png)
}

.li_whatsapp_footer {
    background: url(../images/img-icon/whatsapp-icon.png)
}

.li_cel_footer {
    background: url(../images/img-icon/phone-icon.png)
}

.li_dir_footer {
    background: url(../images/img-icon/home_icon.png)
}

.ul_li_contacto li {
    background-repeat: no-repeat;
    background-size: 20px 20px;
    padding-left: 30px;
}

.imgmediosdepago {
    max-width: 100%;
}

.footer-section-copyright {
    background: #1e1e1f
}

.footer-section-copyright>div>div {
    display: flex;
    justify-content: space-evenly;
    gap: 3rem;
    flex-wrap: wrap;
    color: var(--color-white);
    padding: 1rem;
}

.footer-section-copyright>div>div * {
    text-align: center;
}

.footer-section-copyright>div>div>div a {
    display: inline-block;
    color: var(--secondary-color);
    transition: all 200ms linear;
    text-decoration: underline;
}

.footer-section-copyright>div>div>div a:hover {
    color: var(--color-hover);
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: underline;
    transform: perspective(1px) rotateY(0deg);
    backface-visibility: hidden;
    font-weight: 500;
    transition: all 0.3s linear;
}

.contact-link:hover {
    transform: scale(1.02) translateZ(0);
    color: var(--primary-color);
}

.product-grid-col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 3rem;
}

.col-container-multiplasticos img {
    max-width: 100%;
    height: auto;
}

@keyframes slide_left {
    from {
        margin-left: 20%
    }

    to {
        margin-left: 0
    }
}

.section-center-ubicacion iframe {
    width: 100%;
    height: 450px
}

.image-background-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-image-bolsa-plastica {
    background-image: url(../images/img-pagina-bolsa-plastica/fondo-bolsa-plastica.webp);
}

.bg-image-plastico-agro {
    background-image: url(../images/img-pagina-plastico-agro/fondo-sector-agricola.webp);
}

.bg-image-plastico-embalaje {
    background-image: url(../images/img-pagina-plastico-embalaje/fondo-plastico-embalaje.webp);
}

.bg-image-title {
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0.3);
    opacity: 0.3;
}

.text-overlay {
    position: absolute;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.cta-button {
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--secondary-color);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
}

.cta-button-2 {
    width: 100%;
    border-radius: 0rem;
}

.cta-button:hover {
    color: var(--color-white);
}

.cta-button svg {
    transition: all 0.3s linear;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.center-section-product-information ul {
    margin-bottom: 0
}

.center-section-product-information p,
.center-section-product-information li {
    text-align: justify
}

.center-section-client hr {
    border-bottom: thin solid #db5829
}

.section-contact-multiplasticos>div {
    margin: 0 auto;
    background-color: var(--secondary-color);
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 400px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: .5rem;
    color: var(--color-white);
}

.section-contact-multiplasticos>div img {
    max-width: 48px;
    height: auto;
}

a.item-contact-section {
    color: var(--color-white);
    display: block;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    transform: perspective(1px) rotateY(0deg);
    backface-visibility: hidden;
    transition: all .3s linear;
}

a.item-contact-section:hover {
    color: var(--color-white);
    transform: scale(1.02) translateZ(0);
}

@media all and (max-width:992px) {
    .header_navbar {
        background-color: #fff0;
        position: static;
        z-index: 0
    }

    .item-menu:hover {
        border-bottom: none
    }

    .bg-image-plastico-agro {
        background-image: url(../images/img-pagina-plastico-agro/fondo-sector-agricola-small.webp);
    }

    .shipping-vehicle {
        animation-name: car-drive-max-width-768;
        padding-top: 0
    }

    .row-footer-section {
        grid-template-columns: repeat(3, 1fr);
    }

    ul.dropdown-menu ul {
        padding-left: 25px;
    }

    ul.dropdown-menu ul li a {
        padding-left: 0;
    }

    a.dropdown-item.dropdown-toggle::before {
        transform: rotate(-90deg)
    }

    .section-center {
        margin-top: 0
    }

    .hr-div-bloque {
        border-bottom: 0
    }

    .footer-section-copyright>div>div {
        gap: .5rem;
    }

    .product-grid-col-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid-col-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        justify-items: center;
        gap: 2rem;
    }

    .col-container-multiplasticos>div {
        width: 100%;
        max-width: 640px;
    }
}

@media all and (max-width:768px) {

    .boton-whatsapp-flotante {
        right: 35px;
    }

    .boton-whatsapp-flotante:hover {
        transform: none;
        transition: none;
    }

    .shipping-vehicle img.drive {
        width: 300px
    }

    .llantas {
        width: 60px;
        height: 60px
    }

    .llanta-trasera {
        left: 13px
    }

    .llanta-delantera {
        left: 225px
    }

    .row-footer-section {
        grid-template-columns: repeat(2, 1fr);
        justify-items: start;
    }

    .carousel-item-img-center {
        text-align: center
    }

    .product-grid-col-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        justify-items: center;
    }

    .product-box-title-font-size {
        font-size: 1.375rem;
    }

    .carousel-item img {
        max-height: 500px;
    }

    .carousel-caption {
        left: 5%;
        right: 5%;
    }

    .values-grid {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media all and (max-width:576px) {

    .header-up>div {
        border-right: none;
    }

    .header-up>div:nth-child(2) {
        display: none
    }

    .first-boton-whatsapp {
        bottom: 125px;
    }

    .second-boton-whatsapp {
        bottom: 45px;
    }

    .row-footer-section {
        grid-template-columns: repeat(1, 1fr);
    }

    .cta-button-2 {
        font-size: 1rem;
        padding: 1rem;
    }

    .ul_li_contacto li a {
        font-size: 15px;
    }

    .section-contact-multiplasticos>div {
        padding: 1rem;
    }

    a.item-contact-section.email {
        font-size: 14px;
    }

    .values-grid-benefits {
        grid-template-columns: auto;
    }
}