html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}
p {
    font-family: "Inter", sans-serif;
    font-weight: 300 !important;
}
/* ---------- COLORES ----------- */
:root {
    --color-white: #ffffff;
    --color-red: #ff0000;
    --color-black: #000000;
    --color-grey: #cccccc;
    --color-dark-grey: #3a3a3a;
}
/* ------------------------------ */

.col:after, .clr:after, .group:after, dl:after, .left_float:after, .right_float:after {
    content: "";
    display: block;
    visibility: hidden;
    clear: both;
    zoom: 1;
    height: 0;
}

.wrapper{
    position: relative;
    float: left;
    width: 100%;
}

#site-header{
    position: fixed;
    top: 0px;
    width: 100%;
    height: 97px;
    z-index: 998;
    border-bottom: 1px solid #f1f1f1;
    background-color: var(--color-white);
}
#site-header-inner{
    position: relative;
    height: 97px;
    padding: 0 30px 0 30px;
    transition: all .3s ease-in-out;
    max-width: 1280px;
    margin: auto;
}
#site-logo{
    position: absolute;
    display: flex;
    align-items: center;
    float: left;
    height: 100%;
    left: 50px;
}
#site-logo #site-logo-inner {
    display: table-cell;
    vertical-align: middle;
    height: 51px;
}
#site-logo-inner, #site-header-inner {
    transition: all .3s ease-in-out;
}
#site-logo #site-logo-inner a {
    background-color: rgba(0,0,0,0) !important;
}
#site-header-inner .logo{
    max-height: 37px;
    margin-top: 5px;
}
.menu-desktop{
    float: left;
    width: 100%;
}
.menu-item{
    padding: 0 20px;
}
.inverse{
    background-color: var(--color-red) !important;
}
.inverse a{
    color: #FFFFFF !important;
}
.inverse a:hover {
    color: #FFFFFF !important;
}
.submenu{
    padding: 0 20px;
}
.menu-desktop #site-navigation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    width: 100%;
    height: 97px;
    padding: 10px;
}
#site-navigation > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
    height: 97px;
    line-height: 97px;
    justify-content: center;
    display: flex;
}
#site-navigation > ul > li {
    position:relative;
    display:block;
    float:left;
    white-space: normal;
    margin: 0% 1% 0% 1%;
    padding: 0;
    list-style: none;
}
#site-navigation > ul > li > a {
    display:block;
    padding: 0px 5px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: var(--color-black);
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
}
#site-navigation > ul > li > a:hover {
    color: var(--color-red);
}
#site-navigation > ul > li > a:focus {
    outline: solid 1px !important;
}
#site-navigation > ul > li:hover > ul {
    display:block;
}
#site-navigation > ul > li > ul {
    position:absolute;
    margin: 0px;
    padding: 10px;
    background-color: #ffffff;
    list-style-type: none;
    border: 0;
    min-width: 300px;
    display:none;
}
#site-navigation > ul > li > ul > li {
    width:100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    border-top:none;
    text-align: left;
}
#site-navigation > ul > li > ul > li > a {
    color: #000000;
}
#site-navigation > ul > li > ul > li > a:hover {
    color: var(--color-red);
    text-decoration: none;
    font-weight: bold;
}

.menu-button{
    float: right;
    text-align: right;
    margin-top: 30px;
}
.menu-container {
    position: fixed;
    right: 100%;
    width: 100%;
    height: 100vh;
    padding: 20px;
    text-align: right;
    background-color: var(--color-white);
    margin: 97px auto 16px;
    border: 1px solid #ccc;
    visibility: hidden;
    opacity: 0;
    transition: transform 0.2s linear 0.0s, opacity 0.2s linear 0.0s, visibility 0.0s linear 0.2s;
    -webkit-transition: transform 0.2s linear 0.0s, opacity 0.2s linear 0.0s, visibility 0.0s linear 0.2s;
    -moz-transition: transform 0.2s linear 0.0s, opacity 0.2s linear 0.0s, visibility 0.0s linear 0.2s;
}

.menu-mobile.open .menu-container {
    right: 0;
    visibility: visible;
    opacity: 1;
    transition: transform 0.2s linear 0.0s, opacity 0.2s linear 0.0s, visibility 0.0s linear 0.0s;
    -webkit-transition: transform 0.2s linear 0.0s, opacity 0.2s linear 0.0s, visibility 0.0s linear 0.0s;
    -moz-transition: transform 0.2s linear 0.0s, opacity 0.2s linear 0.0s, visibility 0.0s linear 0.0s;
}
.icon-menu{
    cursor: pointer;
}
.menu-mobile.open .icon-menu{
    display: none;
}
.icon-menu .material-icons, .icon-close .material-icons{
    font-size: 15px;
    margin-top: 9px;
    font-weight: 900;
    margin-right: 40px;
}
.icon-close{
    cursor: pointer;
    display: none;
}
.menu-mobile{
    position: absolute;
    height: 100%;
    right: -20px;
    display: none;
}
@media (max-width: 959px) {
    .menu-desktop{
        display: none;
    }
    .menu-mobile{
        display: block;
    }
}
.menu-mobile.open .icon-close{
    display: block;
}
.menu-mobile ul {
    text-align: right;
}
.menu-mobile ul > li {
    line-height: 50px;
    margin: 0 2%;
    list-style: none;
    border-bottom: 1px solid rgba(0,0,0,.035);
    text-align: left;
}
.menu-mobile ul > li > a {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    font-family: "Inter", sans-serif;
}
.menu-mobile ul > li > a:hover {
    color: var(--color-red);
}



/*************************/
/******* HEADER ACCOUNTS *********/
/*************************/
.menu-options{
    position: absolute;
    float: right;
    right: 50px;
    height: 100%;
    display: flex;
    align-items: center;
}
/*************************/
/******* USUARIO *********/
/*************************/
.menu-options .user_account {
    position: relative;
    float: right;
    width: 40px;
    cursor: pointer;
    z-index: 10;
}
#cd-user {
    position: fixed;
    width: 100%;
    max-width: 500px;
    top: 0;
    right: -500px;
    height: 100%;
    padding: 0px 30px;
    background-color: #fff;
    z-index: 1010;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right 0.3s;
}

#cd-user.speed-in {
    right: 0;
}

#cd-user-background {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
}

#cd-user #cd-user-header .user-close {
    position: absolute;
    font-size: 24px;
    top: 15px;
    right: 20px;
    cursor: pointer;
}
#cd-user #cd-user-header .user-close:hover {
    color: var(--color-red);
}
#cd-user #cd-user-header h2 {
    line-height: 50px;
    border-bottom: 1px solid #000;
}
#cd-user #cd-user-account {

}
/*************************/
/******* SEARCH *********/
/*************************/
.menu-options .search_products {
    position: relative;
    float: right;
    width: 40px;
    cursor: pointer;
    z-index: 10;
}
.menu-options .search_input {
    position: absolute;
    float: right;
    width: 300px;
    cursor: pointer;
    z-index: 100000;
    margin-top: 0px;
    right: 110px;
    padding: 10px;
    background-color: #fff;
}
.menu-options .search_input input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    padding: 5px;
}
.menu-options .search_input .search_close {
    position: absolute;
    font-size: 30px;
    right: -30px;
    top: 13px;
    cursor: pointer;
    z-index: 100;
    background-color: #fff;
}
.search-product{
    position: relative;
    float: left;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 10px;
}
.search-photo{
    width: 70px;
    height: 70px;
    border-radius: 25px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: calc(50% - 35px);
}
.search-text{
    width: auto;
    height: 70px;
    line-height: 70px;
    vertical-align: middle;
    text-align: left;
    font-size: 14px;
    overflow: hidden;
}
.ui-menu{
    position: fixed !important;
    width: 342px !important;
    max-height: 600px;
    overflow-y: scroll;
    padding-right: 20px;
    top: 97px !important;
}

@media (max-width: 600px) {
    .menu-options .search_input {
        right: 10px;
    }
}
/*************************/
/******* CARRITO *********/
/*************************/
.menu-options .shopping_cart {
    position: relative;
    float: right;
    width: 40px;
    cursor: pointer;
    z-index: 10;
}

.menu-options .shopping_cart .cart_items {
    position: absolute;
    font-size: 12px;
    top: -2px;
    right: 0;
    font-weight: 600;
}
.menu-options .shopping_cart .cart_items:hover {
    color: var(--color-red);
}
.btn.focus, .btn:focus {
    box-shadow: none !important;
}
.cart_items[data-badge]::after {
    background-color: transparent !important;
}
/* Notification Badge css */
.pmd-badge {
    display: inline-block;
    text-align: left;
    position: relative;
    font-size: 32px;
}
.pmd-badge[data-badge]::after {
    font-family:"Montserrat";
    align-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--color-black);
    content: attr(data-badge);
    display: flex;
    flex-flow: row wrap;
    font-size: 12px;
    font-weight: 600;
    height: 22px;
    justify-content: center;
    position: absolute;
    right: -24px;
    top: -10px;
    width: 22px;
}
.pmd-badge.pmd-badge-overlap::after {
    right: -10px;
}

#cd-cart {
    position: fixed;
    width: 500px;
    top: 0;
    right: -100%;
    height: 100%;
    padding: 0px;
    background-color: #fff;
    z-index: 1000001;

    /*box-shadow: -2px 0px 10px 1px #7f7f7f;*/
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right 0.3s;
}

#cd-cart.speed-in {
    right: 0;
}

#cd-cart-background {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
}

#cd-cart #cd-cart-header .cart-close {
    position: absolute;
    right: 30px;
    top: 20px;
    color: #000;
    cursor: pointer;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Sombra */
    transition: box-shadow 0.3s ease;
    background-color: #fff;
    z-index: 1000;
}
#cd-cart #cd-cart-header .cart-close:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4); /* Sombra más marcada al pasar el mouse */
}
#cd-cart #cd-cart-header .cart-close i {
    font-size: 30px;
    margin: 3px;
    color: #858585;
}
#cd-cart #cd-cart-header .cart-close:hover {
    color: var(--color-red);
}
#cd-cart #cd-cart-header {
    height: 70px;
    line-height: 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
#cd-cart #cd-cart-header h2 {
    line-height: 50px;
    border-bottom: 1px solid #000;
}
#cd-cart .cd-cart-resume{
    margin: 0;
    border-top: 1px solid #3a3a3a;
    padding-top: 20px;
}
#cd-cart .cd-cart-total{
    position: relative;
    float: left;
    width: 100%;
    height: 80px;
    line-height: 80px;
    font-size: 24px;
    font-weight: 900;
}
#cd-cart .checkout-btn{
    position: relative;
    float: left;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-right: 10px;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}
#cd-cart .checkout-btn:hover{
    background-color: var(--color-red);
}

#cd-cart .cd-cart-items{
    list-style-type: none;
    width: 100%;
    height: calc(100% - 200px);
    padding: 0px 30px;
}
#cd-cart .cd-cart-items ul {
    list-style-type: none;
    width: 100%;
    height: calc(100% - 180px);
    overflow-y: scroll;
}
#cd-cart .cd-cart-items ul li{
    position: relative;
    float: left;
    width: 100%;
    border-bottom: 1px solid #000;
}
#cd-cart .cd-cart-items .item {
    width: 100%;
    height: 160px;
    padding: 20px 0;
}
#cd-cart .cd-cart-items .item .item-image {
    position: relative;
    float: left;
    width: 120px;
    height: 120px;
    border: 1px solid;
    background-position: center center;
    background-size: cover;
}
#cd-cart .cd-cart-items .item .item-left{
    position: relative;
    float: left;
    width: 30%;
    padding-left: 0;
}
#cd-cart .cd-cart-items .item .item-content{
    position: relative;
    float: left;
    width: 70%;
    height: 100px;
}
#cd-cart .cd-cart-items .item .item-content .item-content-title {
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    font-weight: 900;
}
#cd-cart .cd-cart-items .item .item-content .item-content-text {
    width: 100%;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 400;
}
#cd-cart .cd-cart-items .item .item-cant {
    padding: 10px 0;
    width: 100px;
    height: 50px;
}
#cd-cart .cd-cart-items .item .item-cant .item-content-cant-buttons {
    position: relative;
    float: left;
    width: 72px;
    height: 30px;
    border: 1px solid var(--color-dark-grey);
    border-radius: 5px;
}
#cd-cart .cd-cart-items .item .item-cant .item-content-cant-buttons .cantidad {
    position: relative;
    float: left;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border: 0px;
}
#cd-cart .cd-cart-items .item .item-cant .item-content-cant-buttons .modificar {
    position: relative;
    float: left;
    width: 20px;
    height: 28px;
    line-height: 28px;
    background-color: var(--color-white);
    padding: 0;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}
#cd-cart .cd-cart-items .item .item-cant .item-content-cant-buttons .modificar:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}
#cd-cart .cd-cart-items .item .item-price {
    display: flex;
    width: 100%;
    padding: 0;
    line-height: 25px;
}
#cd-cart .cd-cart-items .item .item-price .item-price-value {
    display: inline-block;
    width: 200px;
    font-size: 16px;
    font-weight: 700;
    line-height: 50px;
    text-align: right;
}
#cd-cart .cd-cart-items .item .item-price .item-price-original {
    font-size: 12px;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 20px;
}
#cd-cart .cd-cart-items .item .item-content .item-delete {
    position: absolute;
    width: 25px;
    top: 0;
    right: 0px;
}
#cd-cart .cd-cart-items .item .item .item-content .item-delete i {
    width: 30px;
    right: 10px;
    cursor: pointer;
}
#cd-cart .cd-cart-items .item .item .item-content .item-delete:hover {
    color: var(--color-red);
}
#cd-cart .cd-cart-items .item-cart-empty {
    line-height: 100px;
    text-align: center;
    font-size: 14px;
}

#cd-cart #cd-cart-header .cd-carrito-title {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}
#cd-cart .cd-cart-resume .clean_cart {
    position: relative;
    float: left;
    width: 100%;
    line-height: 50px;
    font-size: 14px;
    text-align: left;
    left: 10px;
    cursor: pointer;
}
#cd-cart .cd-cart-resume .cart-close {
    position: relative;
    float: left;
    width: 100%;
    line-height: 50px;
    font-size: 14px;
    right: 10px;
    text-align: right;
    cursor: pointer;
}
#cd-cart .cd-cart-resume .clean_cart:hover {
    color: var(--color-red);
}

@media (max-width: 600px) {
    #cd-cart {
        position: fixed;
        width: 100%;
        top: 0;
        right: -110%;
        height: 100%;
        padding: 0px 30px;
        background-color: #fff;
        z-index: 1010;

        box-shadow: -2px 0px 10px 1px #7f7f7f;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: right 0.3s;
    }
}


/* ----------------------------------------- */
/* ----- COMPRA ------------------------------ */
/* ----------------------------------------- */

#compra .title {
    margin-top: 50px;
    line-height: 70px;
    font-size: 25px;
}

#compra .compra-items{
    position: relative;
    float: left;
    width: 100%;
    padding: 20px;
    border: 1px solid #000000;
    min-height: 100px;
    list-style-type: none;
}
#compra .compra-items ul {
    list-style-type: none;
    width: 100%;
}
#compra .compra-items ul li{
    border-bottom: 1px solid #000;
}
#compra .compra-items .item {
    width: 100%;
    height: 180px;
    padding: 20px 0;
}
#compra .compra-items .item .item-image {
    position: relative;
    float: left;
    width: 100px;
    height: 100px;
    border: 1px solid;
    background-position: center center;
    background-size: cover;
}
#compra .compra-items .item .item-left{
    position: relative;
    float: left;
    width: 20%;
    padding-left: 0;
}
#compra .compra-items .item .item-content{
    position: relative;
    float: left;
    width: 80%;
    height: 100px;
}
#compra .compra-items .item .item-content .item-content-title {
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    font-weight: 900;
}
#compra .compra-items .item .item-content .item-content-text {
    width: 100%;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 400;
}
#compra .compra-items .item .item-cant {
    padding: 10px 0;
}
#compra .compra-items .item .item-cant .item-content-cant-buttons {
    position: relative;
    float: left;
    width: 100px;
    height: 26px;
    border: 1px solid var(--color-dark-grey);
}
#compra .compra-items .item .item-cant .item-content-cant-buttons .cantidad {
    position: relative;
    float: left;
    width: 50px;
    line-height: 26px;
    text-align: center;
    border: 0px;
}
#compra .compra-items .item .item-cant .item-content-cant-buttons .modificar {
    position: relative;
    float: left;
    width: 24px;
    height: 24px;
    background-color: var(--color-white);
    padding: 0 8px;
    cursor: pointer;
}
#compra .compra-items .item .item-cant .item-content-cant-buttons .modificar:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}
#compra .compra-items .item .item-content .item-delete {
    position: absolute;
    width: 25px;
    top: 0;
    right: 0px;
}
#compra .compra-items .item .item .item-content .item-delete i {
    width: 30px;
    right: 10px;
    cursor: pointer;
}
#compra .compra-items .item .item .item-content .item-delete:hover {
    color: var(--color-red);
}
#compra .compra-items .item .item-price {
    display: flex;
    width: 100%;
    padding: 0;
    line-height: 25px;
}
#compra .compra-items .item .item-price .item-price-value {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: 50px;
    text-align: right;
}
#compra .compra-items .item .item-price .item-price-original {
    font-size: 12px;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 20px;
}
#compra .compra-items .item .item-price .item-delete {
    position: relative;
    float: right;
    width: 30px;
    right: 10px;
    cursor: pointer;
}
#compra .compra-items .item .item-price .item-delete:hover {
    color: var(--color-red);
}
#compra .compra-items .item-cart-empty {
    line-height: 100px;
    text-align: center;
    font-size: 14px;
}

#compra .compra-resume .clean_cart {
    position: relative;
    float: left;
    width: 100%;
    line-height: 40px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
}
#compra .compra-resume .clean_cart:hover {
    color: var(--color-red);
}

.informacion{
    position: relative;
    float: left;
    width: 100%;
    padding: 20px;
    border: 1px solid var(--color-black);
    min-height: 100px;
}
.step{
    position: relative;
    float: left;
    width: 100%;
}
.step .subtitle{
    font-size: 14px;
    border-bottom: 1px solid;
    font-weight: 700;
    margin-bottom: 10px;
    background-color: #000;
    color: #ffffff;
    padding: 5px 10px;
}
.compra-btn-sync{
    position: relative;
    float: right;
    cursor: pointer;
    font-size: 18px !important;
    color: #ffffff;
}
.compra-btn-sync:hover{
    color: var(--color-red);
}
.compra_boton{
    position: relative;
    float: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 5px 0;
    text-align: center;
    font-size: 16px;
    background-color: var(--color-black);
    color: var(--color-white);
    cursor: pointer;
}
.compra_boton:hover{
    background-color: var(--color-red);
}
.compra_boton.active {
    background-color: var(--color-red);
}
.compra_boton_light{
    position: relative;
    float: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 5px 0;
    text-align: center;
    font-size: 16px;
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-black);;
    cursor: pointer;
}
.compra_boton_light:hover{
    background-color: var(--color-grey);
}
.compra_boton_light.active {
    background-color: var(--color-white);
}
.error {
    border: 1px solid var(--color-red) !important;
}
.login_error{
    position: relative;
    float: left;
    width: 100%;
    color: var(--color-red);
    line-height: 30px;
    font-size: 12px;
    text-align: center;
}
.show-pass, .hide-pass {
    position: absolute;
    float: right;
    right: 10px;
    top: 15px;
    color: #909090;
    cursor: pointer;
}
.retiro_local{
    font-size: 14px;
    line-height: 25px;
    padding: 0 0 0 20px;
}
.select_options {
    height: 50px;
    border: 0;
    width: 100%;
}
.select_options:focus-visible {
    border: 0;
    outline: none;
}
.input_datos{
    width: 100%;
    height: 40px;
    border: 0;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
}
.input_datos:focus-visible {
    border: 1px solid;
    outline: none;
}
.message {
    position: absolute;
    width: 400px;
    height: 100px;
    background-color: #fff;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translateX(-200px);
    border: 1px solid #000;
    border-radius: 10px;
    line-height: 100px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0px 0px 20px #ccc;
}

.gracias{
    position: relative;
    float: left;
    width: 100%;
    padding: 20px 50px;
}
.gracias-title{
    font-size: 30px;
    text-align: center;
    line-height: 200px;
    color: red;
    font-weight: 800;
}
.gracias-subtitle{
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    font-weight: 400;
}
.gracias-text{
    font-size: 16px;
    text-align: center;
    line-height: 100px;
    font-weight: 400;
}

/* ----------------------------------------- */
/* ----- MAIN ------------------------------ */
/* ----------------------------------------- */
main {
    min-height: 300px;
}

.banner .title {
    position: absolute;
    width: 100%;
    height: 400px;
    padding: 170px 0;
    font-size: 50px;
    text-align: center;
    font-weight: 500;
    color: var(--color-white);
    -webkit-text-shadow: 0 3px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
    -moz-text-shadow: 0 3px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
    text-shadow: 0 3px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

@media (max-width: 600px) {
    .banner .title {
        font-size: 30px;
    }
}
.banner{
    background-position: center center;
    background-size: cover;
    height: 450px;
    width: 100%;
    margin-top: 97px;
}
.banner2{
    background-position: center center;
    background-size: cover;
    height: 450px;
    width: 100%;
    margin-top: 97px;
}
.banner_hover {
    cursor: pointer;
}
.banner_hover:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Oscurece con negro */
    z-index: 1;
}
.banner .banner_photo{
    position: absolute;
    width: 90%;
    height: 300px;
    margin-top: 40px;
    margin-left: 5%;
    background-position: center center;
    background-size: cover;
    z-index: 2;
}
.background_x{
    background-image: url("../images/background_x.png");
    background-position: left;
    background-repeat: repeat-x;
    height: 130px;
    width: 100%;
    position: absolute;
    top: 504px;
    z-index: 5;
}
.background_x2{
    position: relative;
    float: left;
    height: 140px;
    width: 100%;
    background-image: url("../images/background_x3.png");
    background-position: left top;
    background-repeat: repeat-x;
    margin-bottom: 0px;
    z-index: 5;
}

.ruta {
    margin-top: 130px;
}
.ruta ul {
    list-style: none;
}
.ruta li {
    display: inline;
    font-size: 12px;
    height: 50px;
    line-height: 50px;
}
.ruta li:not(:last-child)::after {
    content: "/";
}
.ruta li a {
    font-size: 14px;
    color: var(--color-black);
    padding: 0 10px;
}
.ruta li a:hover {
    color: var(--color-red);
    text-decoration: none;
}
.section_title {
    position: relative;
    float: left;
    width: 100%;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
    margin: 20px 0px;
}

/* ----------------------------------------------------------------------------------------------- */
/* -------- NEW  WEB --------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
.web_subtitulo {
    width: 1280px;
    text-align: left;
    height: 40px;
    font-size: 26px;
}
.web_subrayado {
    background-image: url('../images/web_subrayado.png');
    background-repeat: no-repeat;
    background-position-y: bottom;
}
.web_flecha-abajo{
    position: absolute;
    width: 70px;
    margin-top: 16px;
    margin-left: 20px;
}
.web_flecha-derecha{
    position: absolute;
    width: 30px;
    margin-top: -50px;
    margin-left: -220px;
}
.seguinos {
    padding: 12px 16px;
    background-color: #ffffff;
    text-align: center;
    width: 150px;
    border-radius: 5px;
    color: #000000;
}
.seguinos:hover {
    background-color: #cccccc;
}
@media (max-width: 600px) {
    .web_subtitulo {
        width: 1280px;
        text-align: left;
        height: 40px;
        font-size: 22px;
        padding: 30px;
    }
}
/* ----------------------------------------------------------------------------------------------- */
/* -------- N E W CATEGORIAS --------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
.categoria-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
}
.categoria-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1280px;
    width: 100%;
    height: 100%;
}

.categoria-item {
    position: relative;
    aspect-ratio: 1 / 1; /* Cuadrado */
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
}

.categoria-svg svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 40px 50px 40px;
    fill: rgba(0, 0, 0, 0.85) !important;
    transition: fill 0.3s ease;
    pointer-events: none;
}

.categoria-item:hover .categoria-svg svg {
    fill: #ffffff !important;
}

.categoria-title {
    position: relative;
    z-index: 2;
    padding: 12px 8px;
    font-weight: bold;
    font-family: Inter;
    color: #000000;
}

@media (max-width: 900px) {
    .categoria-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .categoria-container {
        grid-template-columns: 1fr;
    }
    .categoria-title {
        margin: auto;
    }
    .categoria-item {
        position: relative;
        aspect-ratio: 3 / 1;
    }
    .categoria-svg svg {
        position: absolute;
        top: 0;
        left: auto;
        width: 25%;
        height: 100%;
        padding: 0;
    }
    a:nth-child(odd) .categoria-item .categoria-svg svg {
        left: 10px; /* A la izquierda */
    }
    a:nth-child(even) .categoria-item .categoria-svg svg {
        right: 10px; /* A la derecha */
    }
}
.home_motivacion{
    position: absolute;
    top: 330px;
    z-index: 100;
    text-align: center;
}
.home_subrayado{
    position: absolute;
    left: 0;
    top: 50px;
}

/* ----------------------------------------------------------------------------------------------- */
/* -------- CATEGORIAS ------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------- */
.categoria .title {
    color: var(--color-red);
    font-size: 20px;
    padding: 20px 0px;
}
.categoria .text {
    color: var(--color-black);
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 20px;
}
.category-grid {
    position: relative;
    float: left;
    width: 100.0%;
}
.category-grid .category-grid-row {
    position: relative;
    float: left;
    width: 100.0%;
}
.category-grid .category-grid-row .category {
    position: relative;
    animation: animateleft 0.4s;
}


.category-grid .category-grid-row .category a {
    position: relative;
    float: left;
    cursor: pointer;
    margin-bottom: 4px;
    padding-right: 2px;
    padding-left: 2px;
}
.category-grid .category-grid-row .category a > .category-grid-column {
    position: relative;
    float: left;
    width: 100.0%;
    padding: 60px 40px;
    background-size: cover;
    background-position: center center;
}
@media (max-width: 900px) {
    .category-grid .category-grid-row .category a > .category-grid-column {
        padding: 40px;
    }
}

.category-grid .category-grid-row .category a > .category-grid-column .category-grid-column-image {
    position: relative;
    float: left;
    width: 100.0%;
    padding: 50.0% 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.category-grid .category-grid-row .category a > .category-grid-column .category-grid-column-image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -ms-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.32s;
    -moz-transition-duration: 0.32s;
    -ms-transition-duration: 0.32s;
    -o-transition-duration: 0.32s;
    transition-duration: 0.32s;
    -webkit-transition-timing-function: initial;
    -moz-transition-timing-function: initial;
    -ms-transition-timing-function: initial;
    -o-transition-timing-function: initial;
    transition-timing-function: initial;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.category-grid .category-grid-row .category a:hover > .category-grid-column .category-grid-column-image:after {
    background-color: rgba(0, 0, 0, 0.2);
}
.category-grid .category-grid-row .category a > .category-grid-column .category-grid-column-content {
    position: absolute;
    top: 85%;
    left: 0;
    right: 0;
    width: 100.0%;
    -webkit-transform: translateY(-50.0%);
    -moz-transform: translateY(-50.0%);
    -ms-transform: translateY(-50.0%);
    -o-transform: translateY(-50.0%);
    transform: translateY(-50.0%);
}
.category-grid .category-grid-row .category a > .category-grid-column .category-grid-column-content .category-grid-column-content-title {
    color: white;
    text-align: center;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    -webkit-text-shadow: 0 3px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
    -moz-text-shadow: 0 3px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
    text-shadow: 0 3px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
}

/* ----------------------------------------------------------------------------------------------- */
/* -------- CATEGORIAS NUEVAS -------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
.categoria2 .title {
    color: var(--color-red);
    font-size: 20px;
    padding: 20px 0px;
}
.categoria2 .text {
    color: var(--color-black);
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 20px;
}
.category-grid .category-grid-row .category a > .category-grid-column-2 {
    position: relative;
    float: left;
    width: 100.0%;
    padding: 0;
    background-size: cover;
    background-position: center center;
}
@media (max-width: 900px) {
    .category-grid .category-grid-row .category a > .category-grid-column-2 {
        padding: 0;
    }
}


.category-grid .category-grid-row .category a > .category-grid-column-2 .category-grid-column-image {
    position: relative;
    float: left;
    width: 100.0%;
    padding: 50.0% 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.category-grid .category-grid-row .category a > .category-grid-column-2 .category-grid-column-image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -ms-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.32s;
    -moz-transition-duration: 0.32s;
    -ms-transition-duration: 0.32s;
    -o-transition-duration: 0.32s;
    transition-duration: 0.32s;
    -webkit-transition-timing-function: initial;
    -moz-transition-timing-function: initial;
    -ms-transition-timing-function: initial;
    -o-transition-timing-function: initial;
    transition-timing-function: initial;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.category-grid .category-grid-row .category a:hover > .category-grid-column-2 .category-grid-column-image:after {
    background-color: rgba(0, 0, 0, 0.2);
}
.category-grid .category-grid-row .category a > .category-grid-column-2 .category-grid-column-content {
    position: absolute;
    top: 85%;
    left: 0;
    right: 0;
    width: 100.0%;
    -webkit-transform: translateY(-50.0%);
    -moz-transform: translateY(-50.0%);
    -ms-transform: translateY(-50.0%);
    -o-transform: translateY(-50.0%);
    transform: translateY(-50.0%);
}
.category-grid .category-grid-row .category a > .category-grid-column-2 .category-grid-column-content .category-grid-column-content-title {
    color: white;
    text-align: center;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    -webkit-text-shadow: 0 3px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
    -moz-text-shadow: 0 3px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
    text-shadow: 0 3px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
}

/* ----------------------------------------------------------------------------------------------- */
/* -------- FAMILIA ------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------- */
.familia .title {
    color: var(--color-red);
    font-size: 20px;
    padding: 20px 0px;
}
.familia .text {
    color: var(--color-black);
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 20px;
}
.family-grid {
    position: relative;
    float: left;
    width: 100.0%;
}
.family-grid .family-grid-row {
    position: relative;
    float: left;
    width: 100.0%;
}
.family-grid .family-grid-row .family {
    position: relative;
    animation: animateleft 0.4s;
}
.family-grid .family-grid-row .family a {
    position: relative;
    float: left;
    cursor: pointer;
    margin-bottom: 20px;
}
.family-grid .family-grid-row .family a > .family-grid-column {
    position: relative;
    float: left;
    width: 100.0%;
}
.family-grid .family-grid-row .family a > .family-grid-column .family-grid-column-image {
    position: relative;
    float: left;
    width: 100.0%;
    padding: 50.0% 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.family-grid .family-grid-row .family a > .family-grid-column .family-grid-column-image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -ms-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.32s;
    -moz-transition-duration: 0.32s;
    -ms-transition-duration: 0.32s;
    -o-transition-duration: 0.32s;
    transition-duration: 0.32s;
    -webkit-transition-timing-function: initial;
    -moz-transition-timing-function: initial;
    -ms-transition-timing-function: initial;
    -o-transition-timing-function: initial;
    transition-timing-function: initial;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.family-grid .family-grid-row .family a:hover > .family-grid-column .family-grid-column-image:after {
    background-color: rgba(0, 0, 0, 0.2);
}
.family-grid .family-grid-row .family a > .family-grid-column .family-grid-column-content {
    position: absolute;
    top: 50.0%;
    left: 0;
    right: 0;
    width: 100.0%;
    -webkit-transform: translateY(-50.0%);
    -moz-transform: translateY(-50.0%);
    -ms-transform: translateY(-50.0%);
    -o-transform: translateY(-50.0%);
    transform: translateY(-50.0%);
}
.family-grid .family-grid-row .family a > .family-grid-column .family-grid-column-content .family-grid-column-content-title {
    color: white;
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-style: italic;
    -webkit-text-shadow: 0 3px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
    -moz-text-shadow: 0 3px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
    text-shadow: 0 3px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
}

/* ----------------------------------------------------------------------------------------------- */
/* -------- PRODUCTOS ---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
.search {
    font-size: 20px;
    width: 250px;
    border: 0;
    border-bottom: 1px solid #ccc;
    text-align: right;
    padding-right: 40px;
}
.search:focus-visible {
    outline: none;
}
.toolbar-icon{
    position: absolute;
    color: #BDBDBD;
    margin-top: 2px;
    right: 16px;
}
.productos .title {
    color: var(--color-red);
    font-size: 20px;
    padding: 20px 0px;
}
.productos .text {
    color: var(--color-black);
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 20px;
}
.product-grid {
    position: relative;
    float: left;
    width: 100.0%;
}
.product-grid .family-grid-row {
    position: relative;
    float: left;
    width: 100.0%;
}
.product-grid .product-grid-row .product a {
    position: relative;
    float: left;
    cursor: pointer;
    border: 1px solid var(--color-dark-grey);
    margin-left: -1px;
    margin-top: -1px;
    padding-left: 0px;
    padding-right: 0px;
}
#product-grid-item-over {
    position: absolute;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,.75);
    text-align:center;
    opacity:0;
    -webkit-transition: opacity .25s ease;
    z-index: 10;
}

.product-button:hover #product-grid-item-over {
    opacity:1;
}
#product-grid-item-view{
    font-family:Helvetica;
    font-weight:700;
    color: var(--color-white);
    font-size:16px;
    padding: 5px 10px;
    border: 1px solid var(--color-white);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


.product-grid .product-grid-row .product a > .product-grid-item {
    position: relative;
    float: left;
    width: 100.0%;
    height: auto;
    padding: 20px;
    z-index: 1;
}
.product-grid .product-grid-row .product a > .product-grid-item .image {
    position: relative;
    float: left;
    width: 100.0%;
    padding: 50.0% 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.image-frontwing{
    position:relative;
    width: 30.0%;
    margin-left: 20%;
    height: 30.0%;
    padding: 35.0% ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.product-grid .product-grid-row .product a > .product-grid-item .title{
    position: relative;
    float: left;
    width: 100.0%;
    border-bottom: 1px solid var(--color-black);
    padding: 10px 0;
    color: var(--color-black);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-grid .product-grid-row .product a > .product-grid-item .detalle{
    position: relative;
    float: left;
    width: 100.0%;
    padding: 10px 0;
    color: var(--color-black);
    font-size: 12px;
    font-weight: bold !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-grid .product-grid-row .product a > .product-grid-item .descuento {
    position: relative;
    float: left;
    font-size: 10px;
    width: 100.0%;
    padding: 10px 0;
    color: var(--color-black);
}

/* ----------------------------------------------------------------------------------------------- */
/* -------- CONTACTO ---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
.background_contacto {
    height: 350px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 1024px) {
    .background_contacto {
        height: 200px;
    }

}

.contacto-title {
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: #fff;
    padding-top: 160px;
    font-weight: 500;
}

@media screen and (max-width: 1024px) {
    .contacto-title {
        font-size: 22px;
        padding-top: 100px;
        letter-spacing: 6px;
    }
}

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

    .background_contacto .contacto-title{

        font-size: 20px;
    }
    .input-contacto{
        margin: 5px 5px;
    }
    .container-contacto{
        margin: 0 20px;
    }
    .input-contacto-text{
        margin: 0 5px;
    }
 }
.container-contacto {
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
    padding: 10px 10px;
}

.grid-contacto {
    flex-basis: 50%;
    box-sizing: border-box;
}

.mapa{
    width: 100%;
    height: 100%;

}

.container-terminos {
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 25px;
}
.terminos-title {
    font-weight: 800;
    line-height: 100px;
}
.terminos-subtitle {
    font-weight: 800;
    text-indent: 20px;
    line-height: 60px;
    margin-left: 30px;
}
.terminos-actualizacion {
    font-weight: 400;
    line-height: 60px;
    float: right;
    font-size: 12px;
    color: #ff0200;
}


.contacto-visitanos{
    font-size: 30px;
    color: #ff0000;
    margin-left: 50px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 5px;

}

.contacto-visitanos-text{
    font-size: 15px;
    color: #000000;
    margin-left: 50px;
    margin-top: 5px;

}

.stay-tuned{
    font-size: 20px;
    color: #ff0000;
    font-weight: 800;
    margin-top: 50px;
    margin-left: 50px;
}
.iconos-contacto{
    margin-top: 25px;
    margin-left: 50px;
}
.icono-contacto{
    width: 30px;
    height: 30px;
    margin-right: 8px;

}

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

    .contacto-visitanos{
        margin-left: 20px;
    }
    .contacto-visitanos-text{
        margin-left: 20px;
    }
    .stay-tuned{
        margin-left: 20px;
    }
    .iconos-contacto{
        margin-left: 20px;
    }


}

.formulario-contacto{
    background-color: #EBEBEB;
    width: 100%;
    height: auto;
    margin-top: 0;
}

.input-contacto{
    width: 500px;
    height: 40px;
    background-color: #FFFFFF;
    border-style: none;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 500;


}

.input-contacto-text{
    width: 1010px;
    height: 40px;
    background-color: #FFFFFF;
    border-style: none;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 500;

}

.boton-contacto{
     color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    margin-left: 130px;
    font-size: 13px;
    width: 180px;
    height: 40px;
    background-color: #FF3232;
    border-style: none;
    border-radius: 5px;
    margin-bottom: 20px;

}

@media screen and (max-width: 1024px) {
    .grid-contacto {
        flex-basis: 100%;
    }
    .input-contacto{
        margin: 5px 5px;
    }
    .container-contacto{
        margin: 0 20px;
    }
    .input-contacto-text{
        margin: 0 5px;
        width: 500px;
    }
}

@media screen and (max-width: 1024px) {
    .boton-contacto {
       width: 100px ;
        height: 30px;
    }
}


/* ----------------------------------------------------------------------------------------------- */
/* -------- HOME ---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    left: 50%;
    width: 90%;
    top: 50%;
    transform: translate(-50%, -100px);
    text-align: center;
    color: white;
    opacity: 0;
    animation: fade-in 5s forwards;
}
.overlay-imagen{
    position: absolute;
    width: 100%;
    height: 300px;
    bottom: 0;
    transform: translateY(154px);
    background-repeat: repeat-x;
    z-index: 1000;
}
.form-overlay-text{
    position: absolute;
    left: 50%;
    width: 90%;
    top: 50px;
    min-height: 500px;
    transform: translate(-50%, -100px);
    text-align: center;
    color: white;
    opacity: 0;
    animation: fade-in 5s forwards;
}
/* Definimos la animación 'fade-in' */
@keyframes fade-in {
    to {
        opacity: 1;
    }
}

.titulo-home {
    width: 100%;
    font-size: 45px;
    font-weight: 500;
    letter-spacing: 1px;
}

.subtitulo-home {
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
}

.text-home{
    text-align: center;
    font-size: 15px;
    margin-top: 100px;
    color: #000000;
}

.text-home button {
    margin-top: 25px;
    font-size: 15px;
    padding: 8px 15px;
    border: 2px solid #FF3232;
    transition: all 0.3s;
}

.text-home button:hover {
    transform: scale(1.1);
    background-color: #FF3232;
    color: white;
    font-weight: 500;
}

@media screen and (max-width: 1024px) {
    .titulo-home {
        margin-top: 40%;
        font-size: 30px;
    }
    .subtitulo-home {
        padding: 10px 50px;
        font-size: 15px;
        margin-top: 15px;
    }

    .text-home {
        font-size: 12px;
        margin-top: 50px;
    }

    .text-home button {
        margin-top: 20px;
        font-size: 14px;
    }
    .overlay-text{
        position: absolute;
        width: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        opacity: 0;
        animation: fade-in 5s forwards;
    }
}
@media screen and (max-width: 576px) {
    .titulo-home {
        font-size: 18px;
        width: 100%;
        margin-top: 250px;
    }
}

.video-container-footer {
    position: relative;
    width: 100%;
    height: 100%;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-container{
    height: auto;
}
.overlay-imagen {
    position: absolute;
    width: 100%;
    height: 270px;
    bottom: 0;
    transform: translateY(170px);
    z-index: -1;
}
@media screen and (max-width: 1024px) {
    .video-container-footer {
        padding-bottom: 10%;
    }
    video{
        height: 400px;
    }
}

@media screen and (max-width: 576px) {
    .video-container-footer {
        padding-bottom: 10%;
    }

}

.container-home {
    flex-wrap: wrap;
    margin: 0px;
}

.input-home{
    width: 300px;
    height: 40px;
    background-color: #FFFFFF;
    border-style: none;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;

}

.input-home-footer{
    width: 300px;
    height: 40px;
    background-color: #FFFFFF;
    border-style: none;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
}

.text-sus{
    margin-left: 20px;
    color: #ff0000;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 5px;
}

.text-sus-parte{
    margin-top: 20px;
    margin-left: 20px;
    color: #000000;
    width: 80%;
    font-size: 15px;
}

.text-sus-parte-2{
    margin-bottom: 20px;
    margin-top: 10px;
    margin-left: 20px;
    color: #000000;
    width: 80%;
    font-weight: bold;
    font-size: 15px;

}

.imagen-sus{
    width: 100%;
    height: auto;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(40px);
    }
}
.animate-fade-in-imagen {
    opacity: 0;
    animation: fadeIn 8s ease-in-out forwards;
}

.input-home-email{
    width: 480px;
    height: 40px;
    background-color: #FFFFFF;
    border-style: none;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;

}


.boton-home{
    font-weight: bold;
    width: 120px;
    height: 40px;
    line-height: 39px;
    cursor: pointer;
    border: 1px solid #FF3232;
    background-color: #EBEBEB;
    font-size: 12px;
    color: #000000;
}

.boton-home:hover{
    background-color: #FF3232;
    color: #FFFFFF;
}


.boton-suscribe {
    text-align: left;
}


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

    .text-sus{
        font-size: 13px;
    }
    .text-sus-parte{
        font-size: 11px;
        line-height: 20px;
    }
    .text-sus-parte-2{
        font-size: 11px;
        margin-bottom: 100px;
        line-height: 20px;
    }
    .input-home-footer{

        width: 180px;
        height: 30px;
        display: flex;
        background-color: #FFFFFF;
        border-style: none;
        margin-right: 10px;
        font-size: 13px;
        font-weight: 500;
        border-radius: 5px;
    }
    .input-home-email{
        width: 325px;
        height: 30px;
    }

    .boton-home{
        font-size: 11px;
        width: 75px;
        height: 30px;
        line-height: 30px;
    }
}

@media screen and (max-width: 576px) {
    .container-home img{
        margin-top: 50px;
    }
    .text-sus{
        font-size: 11px;
        top: 0px;
    }
    .text-sus-parte{
        font-size: 9px;
        top: 20px;
        float: left;
    }
    .text-sus-parte-2{
        font-size: 9px;
        top: 80px;
        margin-bottom: 20px;

    }

    .boton-suscribe {
        text-align: center;
    }

}


.container-home-boton {
    display: flex;
    margin-top: 20px;
    display: flex
}

.titulo-home-footer {
    width: 100%;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top:120px
}

.subtitulo-home-footer {
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
}

.subtitulo-home-footer-2 {
    font-size: 15px;
    font-weight: bold;
    margin-top: 20px;
}

.onda{
    width: 70px;
    height: 20px;
    margin-top: 60px;
}

.boton-home-formulario{
    font-weight: bold;
    width: 120px;
    height: 40px;
    line-height: 39px;
    cursor: pointer;
    border: 1px solid white;
    background-color: transparent;
    font-size: 12px;
    color: #FFFFFF;
}

@media screen and (max-width: 1024px) {
    .titulo-home-footer {
        font-size: 20px;
        margin-top: 120px;
    }

    .subtitulo-home-footer {
        font-size: 13px;
        margin-top: 20px;
        width: 100%;
    }

    .onda {
        width: 50px;
        height: 15px;
        margin-top: 35px;
    }
}

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

    .titulo-home-footer {
        font-size: 12px;
        margin-top: 120px;
        width: 100%;
    }
    .boton-home{
        text-align: center !important;
    }
    .subtitulo-home-footer{
        font-size: 10px;
        font-weight: 500;
        margin-top: 20px;
    }

    .subtitulo-home-footer-2{
        font-size: 11px;
        font-weight: bold;
        margin-top: 20px;
    }

    .container-home{
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .input-home-footer{
        width: 100%;
        height: 30px;
        background-color: #FFFFFF;
        border-style: none;
        font-size: 11px;
        margin-top: 5px;
        display: inline-block;
        font-weight: 500;
        border-radius: 5px;
    }

    .container-home-boton{
        margin-top: 5px;
    }

    .input-home-email {
        width: 100px;
        height: 30px;
    }

    .boton-home{
        font-size: 11px;
        width: 75px;
        height: 30px;
    }

    .contacto-title{
        font-size: 30px;
    }
}
/* ----------------------------------------------------------------------------------------------- */
/* -------- NOSOTROS ---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */


.contacto-title {
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: #fff;
    padding-top: 160px;
    font-weight: 500;
    letter-spacing: 10px;
}

.background-mapa {
    top: 1px;
    position: relative;
    height: 400px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    /*background-image: linear-gradient(90deg, white, transparent 50%  );*/
}

@media screen and (max-width: 1024px) {
    .background-mapa {
        height: 250px;
    }
}


@media screen and (max-width: 576px) {
    .background-mapa {
        height: 150px;
    }
}

.rotated-text {
    display: inline-block; /* Necesario para que el transform funcione correctamente */
    transform: rotate(-90deg); /* Gira el texto 180 grados */
    color: #ff0000;
    font-size: 15px;
    position: absolute;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.manifiesto-text{
    font-size: 15px;
    color: #000000;
}

.manifiesto-text-grande{
    font-size: 20px;
    color: #000000;
    margin-top: 70px;
    font-weight: 800;
}

.manifiesto-text-grande-otro{
    font-size: 20px;
    color: #000000;
    margin-top: 70px;
    font-weight: 800;
    margin-left: 10px;
    transform: rotateX(10deg);
}

.slide-container {
    width: 500px;
    height: 150px;
    overflow: hidden;
    position: relative;
}


.slide-image {
    width: 200px;
    height: 150px;
    margin-right: 20px;
    float: left;
}


@keyframes slideAnimation {
    0% { left: 0; }
    100% { left: -500px; }

}

.slide-animation-container {
    width: 400%;
    position: absolute;
    animation: slideAnimation 12s linear infinite;
}

@media screen and (max-width: 1024px) {
    .manifiesto-text-grande,
    .manifiesto-text-grande-otro {
        font-size: 25px;
    }

    .manifiesto-text{
        font-size: 15px;
        color: #000000;
        margin-top: 10px;
        font-weight: 500;
    }

    .slide-container {
        max-width: 100%;
        height: 100px;
    }

    .slide-image {
        height: 100px;
        float: initial;
    }
}

/*-------------------------------------------------------*/
.slider-container {
    width: 100%;
    height: 65px;
    padding: 0 30px;
    overflow: hidden;
    position: relative;
    background-color: #EBEBEB;
}

.slide-track {
    display: flex;
    animation: slideAnimationMarcas 16s linear infinite;
}

.slide {
    flex-shrink: 0;
    width: 180px;
    height: 60px;
    margin-right: 10px;
}


.slide.clone {
    flex-shrink: 0;
    width: 180px;
    height: 60px;
    margin-right: 10px;
    margin-left: 0; /* Agregamos margen izquierdo para el primer clon */
    transform: translateX(100%);
}

.slide.clone:last-child {
    margin-right: 0; /* Quitamos el margen derecho del último clon */
}

@keyframes slideAnimationMarcas {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-190px * 12)); } /* Ajusta este valor según el número de imágenes originales */
}


/*--------------------------------------------------------*/
.grid-container-equipo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 20px;
}

.grid-item-equipo {
    flex-basis: calc(13% - 15px);
    margin-bottom: 30px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1), transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.grid-item-equipo img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Media query para pantallas más pequeñas */
@media screen and (max-width: 1024px) {
    .grid-item-equipo {
        flex-basis: calc(50% - 15px);
    }

}


.nombre-equipo {
    font-size: 15px;

}
.image-hover{
    display: none;
}

.puesto-equipo {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}

.titulo-equipo{
    font-size: 30px;
    color: #ff0000;
    font-weight: 600;
    margin-top: 50px;
    margin-left: 20px;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.titulo-equipo-parte{
    font-size: 30px;
    color: #ff0000;
    font-weight: 600;
    margin-top: 50px;
    margin-left: 10px;
    margin-bottom: 20px;
    letter-spacing: 5px;
}



@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.grid-container-equipo:not(.appear) .grid-item-equipo {
    animation: fadeIn 8s cubic-bezier(0.645, 0.045, 0.355, 1);
}


.grid-container-equipo.appear .grid-item-equipo {
    opacity: 1;
    transform: translateY(0);
}

.boton-nosotros{

    color: #FFFFFF;
    font-weight: bold;
    font-size: 12px;
    width: 80px;
    height: 30px;
    background-color: transparent;
    border: solid 1px white;
    margin-top: 20px;


}

@media screen and (max-width: 1024px){
    .boton-nosotros{
        width: 90px;
        height: 30px;
        font-size: 15px;
    }
}

.logo-nosotros{
    height: 50px;
    margin-left:90px;
    margin-top: 100px
}

@media screen and (max-width: 1024px){
    .logo-nosotros{
        width: 250px;
        height: 40px;
    }
}

@media screen and (max-width: 576px){
    .logo-nosotros{
        width: 250px;
        height: 40px;
        margin-left: 50px;
    }
}



.life-texto{

    font-size: 45px;
    color:#ff0000;
    font-weight: 500;
    margin-top: 30px;
    margin-left: 90px
}

@media screen and (max-width: 1024px){
    .life-texto{
        font-size: 30px;
    }
}

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

    .life-texto{
        font-size: 25px;
        margin-left: 50px
    }
}



.imagenes-nosotros{
    width: 600px;
    height: 500px;
}

@media screen and (max-width: 1024px){
    .imagenes-nosotros{
        width: 400px;
        height: 200px;
    }

}

@media screen and (max-width: 576px){
    .imagenes-nosotros{
        width: 100%;
        height: auto;
    }

}

.footer-nosotros{
    width: 100%;
    font-size: 50px;
    margin-top: 20px;
    font-weight: 500;

}

@media screen and (max-width: 1024px){
    .footer-nosotros{
        margin-top: 40%;
        font-size: 20px;
    }
    .footer-nosotros-sub{
        font-size: 15px;

    }

}

@media screen and (max-width: 576px){
    .footer-nosotros{
        font-size: 15px;
        margin-top: 150px;
    }
}

.footer-nosotros-sub{
    font-size: 15px;
    margin-top: 20px;
}





/* ----------------------------------------------------------------------------------------------- */
/* -------- GARANTIAS ---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

.input-garantia{
    margin-bottom: 20px;
    width: 700px;
    height: 30px;
}

.input-garantia-fecha{
    background-color: #EBEBEB;
    border-style: none;
    width: 300px;
    height: 22px;
    text-align: center;
    margin-left: 20px;
    border-radius: 2px;
}

.input-garantia-cliente{
    height: 30px;
    display: flex;
    border: none;
    color: #000000;
    width: 100%;
    text-align: center;
    font-size: 12px;

}

.input-garantia-buscar{
    width: 340px;
    height: 30px;
    display: flex;
}

.formulario-garantias{
    text-align: center;
    margin-top: 30px;
}

.label-garantia{
    margin-left: 10px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
}

.label-garantia-2{
    font-weight: 800;
    font-size: 20px;
    width: 330px;

}

.boton-garantia-enviar{
    color: #000000;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    width: 120px;
    height: 40px;
    border: #ff0000 2px solid;
    border-radius: 5px;
    margin-bottom: 20px;

}

#drop-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
}
#gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.image-preview {
    margin: 10px;
    width: 150px;
    height: 150px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-preview img {
    max-width: 100%;
    max-height: 100%;
}




.card-garantia{ margin-top:16px;
    padding-left:16px;
    padding-right:16px;}

.garantia-button {
    padding: 10px;
    border-radius: 10px;
    margin: 20px 20px;
    cursor: pointer;
    display: flex;
    border: 1px solid #000000;


;
}

.boton-garantia {
    padding: 10px;
    border-radius: 5px;
    margin: 10px 20px;
    cursor: pointer;
    font-size: 13px;
    background-color: #ff0000;
    color: #FFFFFF;
    text-decoration: none;
    border-style: none;

}

.boton-garantia:hover{
    text-decoration: none;
    color: #FFFFFF;
    opacity: 0.5;
}


.boton-garantia-abajo {
    padding: 8px 30px;
    border-radius: 2px;
    margin: 10px 20px;
    cursor: pointer;
    font-size: 10px;
    background-color: #ff0000;
    font-weight: normal;
    color: #FFFFFF;
    text-decoration: none;
    border-style: none;
}

.boton-garantia-abajo-2 {
    padding: 8px 30px;
    border-radius: 2px;
    margin: 10px 20px;
    cursor: pointer;
    font-size: 10px;
    background-color: #FFFFFF;
    font-weight: normal;
    border: 1px solid #000000;
    color: #000000;
    text-decoration: none;

}

.boton-garantia-producto {
    padding: 10px 50px;
    border-radius: 2px;
    margin: 10px 20px;
    cursor: pointer;
    font-size: 12px;
    background-color: #EBEBEB;
    font-weight: normal;
    border: 1px solid #FF3232;
    color: #000000;
    text-decoration: none;

}

.boton-garantia-producto:hover {
    color: #FFFFFF;
    background-color: #FF3232;
}


.boton-garantia-siguiente {
    padding: 10px 53px;
    border-radius: 2px;
    margin: 20px 20px;
    cursor: pointer;
    font-size: 12px;
    background-color: #cccccc;
    font-weight: normal;
    color: #000000;
    text-decoration: none;
    border-style: none;
}

.boton-garantia-siguiente:disabled {
    /* Estilos cuando el botón está desactivado */
    background-color: #ccc; /* Cambia el color de fondo a gris */
    color: #666; /* Cambia el color del texto a gris más oscuro */
    cursor: not-allowed; /* Cambia el cursor a no permitido */
}

.boton-garantia-siguiente:hover{
    background-color: #000000;
    color: #FFFFFF;
}

.boton-garantia-siguiente-disabled {
    padding: 10px 50px;
    border-radius: 2px;
    margin: 20px 20px;
    cursor: pointer;
    font-size: 12px;
    background-color: #EBEBEB;
    font-weight: normal;
    color: #000000;
    text-decoration: none;
    border-style: none;
}


.boton-garantia-abajo-3 {
    width: 200px;
    height: 50px;
    border-radius: 2px;
    margin: 10px 20px;
    cursor: pointer;
    font-size: 13px;
    background-color: #ff0000;
    font-weight: normal;
    color: #FFFFFF;
    text-decoration: none;
    border-style: none;
}

.boton-garantia-abajo-3:hover{
    opacity: 0.5;
}


.garantia-text{
    margin-top:4px;
    font-size: 12px;
    margin-top: 18px;
}

.garantias-title{
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

.icono {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: calc(50% - 25px);
}

.icono-2 {
    width: 100px;
    height: 100px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;

}

.texto-preformulario{
    font-size: 20px;
    margin-bottom: 23px;
    font-weight: 800;
    text-align: center;
    margin-top: 50px
}

.datos-cliente{
    margin-top: 30px;
    margin-left: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;




}

@media (max-width: 600px) {
    .formulario-garantias{
        max-width: 400px;
    }

    .texto-preformulario{
        font-size: 11px;
        margin-bottom: 23px;
        font-weight: 700;
        text-align: center;
        margin-top: 30px
    }

    .input-garantia-cliente{
        width: 80px;
        height: 30px;
        display: flex;
        border: none;
        font-weight: 400;
        color: #000000;
        font-size: 8px;
    }

    .label-garantia-2{
        font-weight: bold;
        font-size: 8px;
        width: 80px;
    }

    .datos-cliente{
        margin-top: 30px;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        max-width: 350px;
        justify-content: space-evenly;

    }

    .input-garantia{
        margin-bottom: 10px;
        max-width: 348px;
        height: 30px;
        margin-top: 16px;
    }

    .garantia-hidden{
        display: none !important;
    }
}

/* ----------------------------------------------------------------------------------------------- */
/* -------- L O G I N ---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

.login_boton{
    position: relative;
    float: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 2px 0;
    text-align: center;
    font-size: 13px;
    background-color: var(--color-black);
    color: var(--color-white);
    cursor: pointer;
    border-style: none;
}
.login_boton:hover{
    background-color: var(--color-red);
}
.login_boton.active {
    background-color: var(--color-red);
}

.input-login{
    width: 100%;
    height: 40px;
    margin-top: 10px;
}

.login_boton-google{
    position: relative;
    float: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 2px 0;
    text-align: center;
    font-size: 13px;
    background-color: var(--color-black);
    color: var(--color-white);
    cursor: pointer;
    border-style: none;
}

.login_boton-google:hover{
    background-color: #4e4e4e;
}

/* ----------------------------------------------------------------------------------------------- */
/* -------- M I   C U E N T A -------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

.contenedor_micuenta{
    display: flex;
    justify-content: center;
    height: 30px;
    align-items: center;
    margin-left: 150px;

}

.mi_cuenta_boton{
    width: 200px;
    height: 40px;
    margin: 2px 0;
    text-align: center;
    font-size: 13px;
    background-color: var(--color-black);
    color: var(--color-white);
    cursor: pointer;
    border-style: none;
}

.mi_cuenta_boton-2{
    width: 200px;
    height: 40px;
    margin: 2px 0;
    text-align: center;
    font-size: 13px;
    background-color: #EBEBEB;
    color: #000000;
    cursor: pointer;
    border: solid 1px #000000;
}

.mi_cuenta_boton-2:hover{
    opacity: 0.5;
}

.mi_cuenta_boton:hover{
    opacity: 0.5;
}
@media (max-width: 600px){

    .mi_cuenta_boton-2{
        width: 135px;
        height: 40px;
        margin: 2px 0;
        text-align: center;
        font-size: 9px;
        background-color: #EBEBEB;
        color: #000000;
        cursor: pointer;
        border: solid 1px #000000;
    }

    .mi_cuenta_boton{
        width: 135px;
        height: 40px;
        margin: 2px 0;
        text-align: center;
        font-size: 9px;
        background-color: var(--color-black);
        color: var(--color-white);
        cursor: pointer;
        border-style: none;
    }
}
/* ----------------------------------------------------------------------------------------------- */
/* -------- G A R A N T I A S   D E   U S U A R I O ---------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

.content-center{
    display: flex;
    justify-content: start;
    align-items: center;
    margin: auto;
}
.garantia-recuadro {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 15px 0px 7px 0px;
    position: relative;
    margin-top: 20px;
    border-radius: 5px;
}

.garantia-recuadro img {
    width: 75px;
    height: fit-content;
    float: left;
    margin-right: 10px;
    position: relative;

}

.producto-titulo {
    font-size: 15px;
    font-weight: 800;
    width: 360px;
    margin-top: 21px;
    color: #000000;

}

.producto-titulo-2{
    font-size: 20px;
    font-weight: 800;
    margin-top: 20px;
    color: #000000;
    padding: 30px;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.garantia-recuadro .producto-titulo-2 {
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    margin-left: 38px;
    align-items: center;
    padding: 30px;
}

.garantia-recuadro .producto-info {
    font-weight: 800;
    color: #000000;
}

.garantia-recuadro .producto-estado {
    font-weight: 800;
    font-size:14px;
    float: right;
    margin-right: 20px;
}

.info-adicionales {

    display: none;
    padding: 10px;
    margin-top: 44px;


}

.info-adicional {
    margin-bottom: 5px;
    font-weight: 800;
    font-size: 11px;
    margin-left: 31px;


}

.info-adicional-2 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;

}

.info-adicional-3 {
    margin-bottom: 5px;
    font-weight: 800;
    font-size: 11px;
    margin-right: 1px;

}

.filtro-garantias{
    float: right;
    margin-top: 10px;
    margin-right: 20px;
    position: relative;
    width: 200px;
    border-style: none;


}

.id-garantia{
    font-size: 18px;
    margin-bottom: 5px;
    width: 200px
}

.fecha-garantia{
    margin-left:70px;
    margin-top: 1px;
    font-size: 18px;
    font-weight: 600
}


.informacion-garantia{

    margin-left: 20px;
}

.id-fecha{
    display: flex;
}

.modelo-medida{
    display: flex;
    margin-top: 30px;
}

.modelo-garantia{
    font-size: 14px;
    margin-bottom: 5px;
    width: 204px
}

.medida-garantia{
    font-size: 14px;
    margin-bottom: 5px;

}

.descripcion-garantia{
    display: flex;
    width: 200px
}

.nro-garantia{
    font-size: 14px;
    margin-bottom: 5px
}

@media (max-width: 600px) {

    .content-center{
        justify-content: start;
        align-items: center;
        margin: auto;
    }
    .garantia-recuadro {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #000000;
        padding: 15px 0px 7px 0px;
        position: relative;
        margin-top: 20px;
        border-radius: 5px;
    }

    .garantia-recuadro img {
        width: 30px;
        height: fit-content;
        float: left;
        margin-right: 10px;
        position: relative;

    }

    .producto-titulo {
        font-size: 11px;
        font-weight: 800;
        width: 360px;
        margin-top: 10px;
        color: #000000;

    }

    .garantia-recuadro .producto-titulo-2 {
        font-size: 15px;
        font-weight: 800;
        color: #000000;
        align-items: center;
        padding: 30px;
    }

    .garantia-recuadro .producto-info {
        font-weight: 800;
        color: #000000;
    }

    .garantia-recuadro .producto-estado {
        font-weight: 800;
        font-size:11px;
        float: right;

    }

    .info-adicionales {

        display: none;
        padding: 10px;
        margin-top: 44px;


    }

    .info-adicional {
        margin-bottom: 5px;
        font-weight: 800;
        font-size: 11px;
        margin-left: 31px;


    }

    .info-adicional-2 {
        margin-bottom: 5px;
        font-weight: 600;
        font-size: 14px;

    }

    .info-adicional-3 {
        margin-bottom: 5px;
        font-weight: 800;
        font-size: 11px;
        margin-right: 1px;

    }

    .filtro-garantias{
        float: right;
        margin-top: 10px;
        margin-right: 20px;
        position: relative;
        width: 200px;
        border-style: none;
    }


    .informacion-garantia{

        margin-left: 20px;
    }

    .id-garantia{
        font-size: 14px;
        margin-bottom: 5px;
        width: 104px
    }

    .fecha-garantia{
        margin-left: 0;
        margin-top: 0;
        font-size: 14px;
        font-weight: 600;
    }

    .id-fecha{
        display: block;
    }

    .medida-garantia{
        font-size: 14px;
        margin-bottom: 5px;
        margin-left: 0;
    }

    .descripcion-garantia{
        display: flex;
        width: 154px
    }

    .modelo-garantia{
        width: 155px;
        display: inline-block;
    }

    .nro-garantia{
        font-size: 14px;
        margin-left:12px;
        margin-bottom: 5px;
        display: inline-block;

    }

}

/* ----------------------------------------------------------------------------------------------- */
/* -------- H I S T O R I A L   D E   U S U A R I O ---------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */

.boton-mi-historial{
    width: 180px;
    margin-bottom: 5px;
    border: solid 1px #000000;
    background-color: #FFFFFF;
    height: 30px;
    font-size: 12px;
}

.boton-mi-historial:hover{
    opacity: 0.5;
}


.garantia-recuadro-historial {
    width:680px;
    background-color: #ffffff;
    height: 167px;
    border: 1px solid #000000;
    position: relative;
    margin-top: 20px;
    margin-left: 25%;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px 30px 15px 30px !important;
}

.info-historial{
    font-size: 14px;
    margin-top: 5px;
}

.botones-garantia{
    margin-top:5px
}


@media (max-width: 600px) {

    .garantia-recuadro-historial {
        width:370px;
        margin-left: 10px;
        padding: 17px 26px 15px 15px !important;
    }

    .boton-mi-historial{
        width: 106px;
        font-size: 8px;
    }

    .info-historial{
        font-size: 12px;
        margin-top: 5px;
    }

    .imagen-historial{
        display: flex;
        align-items: center;
    }

    .botones-garantia{
        margin-top:14px
    }



}


/* ----------------------------------------------------------------------------------------------- */
/* -------- RIDERS ---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
.background_riders {
    height: 600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.riders-title {
    width: 100%;
    text-align: center;
    font-size: 40px;
    color: #fff;
    padding-top: 200px;
}
/* ----------------------------------------------------------------------------------------------- */
/* -------- PRODUCTO ---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
.producto .title {
    color: var(--color-red);
    font-size: 20px;
    padding: 20px 0px;
    border-bottom: 1px solid var(--color-black);

}
title-frontwing{
    color: var(--color-red);
    font-size: 20px;

    border-bottom: 1px solid var(--color-black);
}

.producto .detalle {
    color: var(--color-black);
    font-size: 15px !important;
    margin-bottom: 50px !important;
    font-weight: 300 !important;
}
.x-bullet {
    width: 12px;
    margin: 20px 5px 0 10px;
}
.producto .subtitle {
    color: var(--color-black);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
}

.producto .subtitle-h {
    color: var(--color-black);
    font-weight: bold;
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.producto .marca {
    color: var(--color-black);
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    line-height: 30px;
    text-align: center;
    width: 100%;
    /*border-left: 1px solid var(--color-black);*/
    /*border-right: 1px solid var(--color-black);*/
}


.producto .marca-h {
    color: var(--color-black);
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    line-height: 30px;
    text-align: left;
    width: 100%;
    /*border-left: 1px solid var(--color-black);*/
    /*border-right: 1px solid var(--color-black);*/
}
.producto .foto {
    position: relative;
    float: left;
    width: 100.0%;
    padding: 50.0% 0;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    /*border: 1px solid var(--color-dark-grey);*/
}

.foto{
    position: relative;
    float: left;
    width: 100.0%;
    padding: 50.0% 0;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    /*border: 1px solid var(--color-dark-grey);*/
}

.dropdown-menu{
    bottom: auto;
    bottom: 100%;
}

.text-frontwing{
    margin-bottom: 5px;
}

.text-frontwings{
    margin-top: 8px;
    color: #000000;
}
.producto-foto{
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
}

.producto-foto-h{
    position: relative;
    float: left;
    width: 75%;
    height: 75%;
    margin-left: 15%;
}

.producto-foto-p {
    position: relative;
    float: left;
    width: 85%;
    height: 85%;
    margin-left: 15%;
}


.producto-foto-over {
    position: absolute;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,.65);
    text-align:center;
    opacity:0;
    -webkit-transition: opacity .25s ease;
    z-index: 10;
}

.producto-foto:hover .producto-foto-over {
    opacity:0;
}
.producto-foto-view{
    font-family:Helvetica;
    font-weight:700;
    color: var(--color-white);
    font-size:16px;
    padding: 5px 10px;
    border: 1px solid var(--color-white);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* --- M E D I D A S ------*/

.producto .medidas {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.producto .medida {
    position: relative;
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    padding: 10px;
    font-size: 12px;
    border: 1px solid #FF3232;
    background-color: #EBEBEB;
    cursor: pointer;
}
.producto .medida:hover {
    background-color: #FF3232;
    color: var(--color-white);
}
.producto .medida.active {
    background-color: #FF3232;
    color: var(--color-white);
}

/* --- M O D E L O S ------*/

.producto .modelos {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.producto .modelo {
    position: relative;
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    padding: 10px;
    font-size: 12px;
    border: 1px solid var(--color-dark-grey);
    cursor: pointer;
}
.producto .modelo:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}
.producto .modelo.active {
    background-color: var(--color-red);
    color: var(--color-white);
}

/* --- C O L O R E S ------*/

.producto .colores .color_list {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.producto .colores .color {
    position: relative;
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    padding: 10px;
    font-size: 12px;
    border: 1px solid #FF3232;
    cursor: pointer;
    background-color: #EBEBEB;
}
.producto .colores .con-stock:hover {
    background-color: #FF3232;
    color: var(--color-white);
}
.producto .colores .color.active {
    background-color: #FF3232;
    color: var(--color-white);
}
.producto .medidas .medida.sin-stock {
    color: var(--color-grey);
    text-decoration: line-through;
}
.producto .colores .color.sin-stock {
    color: var(--color-grey);
    text-decoration: line-through;
}


.producto .precio {
    position: relative;
    float: left;
    margin-top: 40px;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    font-size: 20px;
    border-left: 8px solid var(--color-red);
    cursor: pointer;
}

.producto .precio-frontwing {
    position: relative;
    float: left;
    margin-top: 20px;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    font-size: 20px;
    border-left: 8px solid var(--color-red);
    cursor: pointer;
}
.producto .descuento {
    position: relative;
    float: left;
    margin: 0 0 10px 15px;
    font-size: 12px;
}
.producto .cantidades{
    position: relative;
    float: left;
    width: 112px;
    border: 1px solid var(--color-dark-grey);
}
.producto .cantidades .modificar {
    position: relative;
    float: left;
    width: 30px;
    background-color: var(--color-grey);
    padding: 8px 10px;
    height: 36px;
    cursor: pointer;
}
.producto .cantidades .modificar:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}
.producto .cantidad {
    position: relative;
    float: left;
    width: 50px;
    line-height: 34px;
    text-align: center;
    border: 0px;
}
.producto .agregado {
    position: relative;
    float: left;
    font-size: 14px;
    margin-left: 20px;
    margin-top: 10px;
}
.producto .agregar {
    position: relative;
    float: left;
    width: auto;
    padding: 0 20px;
    line-height: 38px;
    text-align: center;
    border: 0px;
    background-color:#EBEBEB;
    color: #000000;
    opacity: 0.5;
    font-size: 15px;
    margin-left: 20px;
}
@media (max-width: 600px){
    .producto .agregar {
        padding: 0 10px;
        font-size: 14px;
        margin-left: 10px;
    }
}
.producto .agregar.active {
    background-color: #cccccc;
    color: #000000;
    cursor: pointer;
    opacity: 1;
}
.producto .agregar.active:hover {
    background-color: #000000;
    color: #FFFFFF;
    opacity: 1;
}

.producto .contactar {
    position: relative;
    float: left;
    width: auto;
    padding: 0 20px;
    line-height: 38px;
    text-align: center;
    border: 0px;
    background-color:#EBEBEB;
    color: #000000;
    opacity: 0.5;
    font-size: 15px;
    margin-left: 20px;
}
.producto .contactar.active {
    background-color: #cccccc;
    color: #000000;
    cursor: pointer;
    opacity: 1;
}
.producto .contactar.active:hover {
    background-color: #000000;
    color: #FFFFFF;
    opacity: 1;
}



.producto .completar {
    position: relative;
    float: left;
    width: auto;
    padding: 0 20px;
    line-height: 38px;
    text-align: center;
    border: 0px;
    background-color: var(--color-grey);
    color: var(--color-black);
    font-size: 12px;
    margin-left: 20px;
}
.producto .completar.active {
    background-color: var(--color-red);
    color: var(--color-white);
    cursor: pointer;
}
.producto .completar.active:hover {
    background-color: var(--color-black);
}
.producto .notificarme {
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
    margin-right: 4px;
    margin-bottom: 4px;
    padding: 10px;
    font-size: 18px;
    background-color: var(--color-black);
    color: var(--color-white);
    cursor: pointer;
}
.producto .notificarme:hover {
    background-color: var(--color-red);
}
.proximamente{
    position: absolute;
    top: 20px;
    left: 0px;
    background-color: var(--color-red);
    width: 120px;
    height: 26px;
    font-size: 12px;
    color: var(--color-white);
    line-height: 26px;
    padding: 0 12px;
    font-family: "Inter", sans-serif;
    z-index: 100;
    font-weight: 400;
}
.producto-descuento{
    position: absolute;
    top: -50px;
    right: 0px;
    background-color: transparent;
    width: 120px;
    height: 40px;
    font-size: 20px;
    color: #000000;
    line-height: 40px;
    padding: 0px 12px;
    font-family: "Inter", sans-serif;
    z-index: 100;
    font-weight: 600;
    border: 1px solid #000000;
}
.producto .tags {
    font-size: 14px;
    color: var(--color-black);
}
.descripcion-title{
    position: relative;
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    padding: 10px;
    font-size: 15px !important;
    border: 1px solid var(--color-dark-grey);
}
.descripcion-text{
    font-weight: 300 !important;
    font-size: 15px !important;
    color: var(--color-black);
}


/* ----------------------------------------------------------------------------------------------- */
/* -------- DESTACADOS --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------- */
.destacados {
    position: relative;
    float: left;
    width: 100%;
    border-top: 1px solid var(--color-black);
    border-right: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
}
.destacado {
    height: auto;
    border-left: 1px solid var(--color-black);
    padding: 20px;
}
.destacado .imagen{
    position: relative;
    float: left;
    width: 100.0%;
    padding: 50.0% 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.destacado .title{
    position: relative;
    float: left;
    width: 100.0%;
    border-bottom: 1px solid var(--color-black);
    padding: 10px 0;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.destacado .detalle{
    position: relative;
    float: left;
    width: 100.0%;
    padding: 10px 0;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-subtotal{
    position: relative;
    float: left;
    width: 100%;
    font-family: Montserrat;
    font-weight: 700;
    line-height: 30px;
}
.cart-subtotal-title{
    font-family: Montserrat;
    position: relative;
    float: left;
    width: 50%;
}
.cart-subtotal-text{
    font-family: Montserrat;
    position: relative;
    float: left;
    width: 100%;
    font-size: 11px;
}
.cart-subtotal-value{
    font-family: Montserrat;
    position: relative;
    float: left;
    width: 50%;
    text-align: right;
}
.cart-total{
    position: relative;
    float: left;
    width: 100%;
    font-size: 25px;
    font-weight: 700;
    line-height: 60px;
}
.cart-total-title{
    position: relative;
    float: left;
    width: 30%;
}
.cart-total-value{
    position: relative;
    float: left;
    width: 70%;
    text-align: right;
}
.cart-discount {
    position: relative;
    float: left;
    width: 100%;
    font-size: 14px;
    text-align: center;
    color: red;
    margin-top: 10px;
}


/* ----------------------------------------- */
/* ----- FOOTER ---------------------------- */
/* ----------------------------------------- */
footer{
    position: relative;
    float: left;
    bottom: 0px;
    width: 100%;
    border-top: 1px solid #ccc;
    padding-top: 120px;
    margin-top: 100px;
}
.footer-content{
    position: relative;
    float: left;
    margin-bottom: 80px;
}

footer p {
    font-size: 15px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    color: #8C8C8C;
}
footer .footer-logo {
    text-align: center;
}
footer .footer-logo .logo{
    position: relative;
    width: 100%;
    max-width: 150px;
}

.footer-title{
    height: 35px;
}
.footer-title{
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #ff0000;
}
.elementor-widget-container {
    margin: -8px 0px 20px 0px;
    -webkit-transition: background .3s,border .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
    transition: background .3s,border .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
    -o-transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
}
.elementor-divider {
    text-align: left;
    padding-top: 2px;
    padding-bottom: 2px;
    display: flex;
}

.elementor-divider-separator {
    width: 15%;
    margin: 0 auto;
    margin-left: 0;
    display: flex;
    direction: ltr;
    border-top: 2.5px solid #FF3232;
}
.footer-familys{
    /*column-count: 2;*/
    font-size: 12px;
}
.footer-familys p {
    line-height: 40px;
}
.footer-familys p a {
    text-decoration: none;
    color: #8C8C8C;
    font-size: 15px;
}
.footer-familys p a:hover {
    color: #FF3232;
}
.link-repuestos-footer{
    font-size: 15px;
    line-height: 40px;
    list-style: none;
    text-decoration: none !important;
    color: #8C8C8C;
}
.link-repuestos-footer:hover{
    color: #ff0000;
}
.footer-boton{
    position: relative;
    float: left;
    font-size: 12px;
    letter-spacing: 0.7px;
    fill: var(--color-black);
    color: var(--color-black);
    background-color: var(--color-white);
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: var(--color-black);
    padding: 10px 10px 10px 10px;
    text-decoration: none;
    margin-top: 20px;
}
.footer-boton:hover{
    color: var(--color-white);
    background-color: var(--color-black);
    text-decoration: none;
}

.elementor-grid {
    display: inline-block;
    width: 100%;
    word-spacing: 0px;
    margin-bottom: 20px;
}
.elementor-grid-item{
    position: relative;
    float: left;
    margin-right: 10px;
}
.elementor-icon {
    position: relative;
    float: left;
}
.elementor-widget-social-icons .elementor-grid {
    grid-row-gap: 0px;
    grid-template-columns: repeat(0, auto);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    justify-items: center;
}

.elementor-widget-social-icons .elementor-grid {
    grid-column-gap: 14px;
}

.elementor-grid-item {
    display: inline-block;
    margin-bottom: 0px;
    word-break: break-word;
}
.elementor-icon.elementor-social-icon {
    font-size: 29px;
    line-height: 29px;
    width: 29px;
    height: 29px;
}
.elementor-icon {
    font-size: 22px;
    display: inline-block;
    line-height: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    font-size: 50px;
    text-align: center;
    fill: #999999;
    color: #999999;
    border-color: #999999;
}
.elementor-icon-list-icon{
    position: relative;
    float: left;
    width: 29px;
    margin-right: 10px;
}
.elementor-icon-list-text{
    font-family: "Inter", sans-serif;
    font-size: 13px;
}
.footer-end{
    position: relative;
    float: left;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: var(--color-grey);
    text-align: center;
}
.footer-end h2{
    font-size: 11px;
    font-weight: 600;
    color: #333;
}
.footer-end a.terminos {
    color: #000000;
}
.footer-end a.terminos:hover {
    color: #007bff;
    text-decoration: none;
}

@media (max-width: 600px) {
    .footer-logo{
        text-align: center;
    }
    footer .logo {
        width: 50%;
        float: initial;
    }
    .footer-title{
        margin-top: 20px;
    }
}

.f-carousel {
    --f-button-width: 38px;
    --f-button-height: 38px;

    --f-button-svg-width: 16px;
    --f-button-svg-height: 16px;
    --f-button-svg-stroke-width: 2.5;

    --f-button-color: rgb(71 85 105);
    --f-button-border-radius: 50%;
    --f-button-shadow: 0 6px 12px -2px rgb(50 50 93 / 25%), 0 3px 7px -3px rgb(0 0
    0 / 30%);

    --f-button-bg: #fff;
    --f-button-hover-bg: #f9f9f9;
    --f-button-active-bg: #f0f0f0;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1220px !important;
    }
}
@media (min-width: 768px){
    .container {
        /*max-width: 900px;*/
    }
}



/* ========================================================================================== */
/* ========================================================================================== */
/* ==================           LIFE CHANGING TOUR 2                     ==================== */
/* ========================================================================================== */
/* ========================================================================================== */

.lct_fondo{
    background-position: center center;
    background-size: cover;
    height: 800px;
    width: 100%;
}
.lct_fondo .lct_fondo_background{
    position: absolute;
    width: 100%;
    height: 800px;
    background-color: #000000;
    opacity: 0.5;
    z-index: 10;
}
.lct_fondo .lct_fondo_img{
    position: absolute;
    width: 100%;
    height: 800px;
    background-image: url("../images/lct_fondo-3.jpg");
    background-position: center center;
    background-size: cover;
    z-index: 2;
}
.lct_fondo_logo{
    position: absolute;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}
.lct_fondo_logo img{
    width: 100%;
    max-width: 800px;
}
.lct_fondo_logo .mobile {
    display: none;
}

.lct_curvas {
    max-width: 480px;
}
.lct_text{
    margin: 100px 0;
    font-family: "Inter", sans-serif;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
}
.lct_text_1{
    font-weight: 500;
}
.lct_text_2{
    font-weight: 300;
}
.center{ text-align: center !important; }
.left{ text-align: left !important; }
.right{ text-align: right !important; }

.lct_proxima_parada{
    display: flex;
    justify-content: center;
    justify-items: center;
    margin: 100px 0 200px 0;
}
.lct_parada{
    position: relative;
    float: left;
    width: 100%;
    height: 450px;
    max-width: 1000px;
    background-color: #000000;
    border-radius: 225px;
}
.proxima_titulo{
    margin-top: 50px;
    font-size: 60px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Lora", serif;
}
.proxima_place{
    margin-right: 20px;
}
.proxima_lugar{
    margin: 20px 0 10px 0;
    line-height: 40px;
    font-size: 28px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.proxima_nombre{
    font-size: 28px;
    color: #8C8C8C;
    display: flex;
    justify-content: center;
    align-items: center;
}
.proxima_boton{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}
.proxima_boton .btn {
    position: relative;
    width: 260px;
    height: 60px;
    line-height: 48px;
    font-size: 20px;
    background-color: #ffffff;
    color: #000000;
    z-index: 10;
    cursor: pointer;
}
.proxima_boton .btn:hover {
    background-color: #8c8c8c;
}

.lct_ruta{
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 300px;
    margin-top: 200px;
}
.lct_video_section{
    margin: 0;
    padding: 0;
}
.lct_video_container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Relación de aspecto 16:9 */
    overflow: hidden;
    margin-top: 30px;
}

.lct_video_container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video cubra el área sin distorsión */
}

.lct_productos{
    margin: 150px 0;
}
.lct_productos_titulo{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color: #000000;
    font-family: "Lora", serif;
}
.lct_productos_desc{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    color: #8C8C8C;
    font-family: "Inter", sans-serif;
    margin-top: 10px;
}

.lct_producto_foto{
    width: 80%;
    height: 70%;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: auto;
}
.lct_producto_nombre{
    position: relative;
    float: left;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    padding: 0 50px;
    color: #000000;
}
.map_section{
    margin-top: 30px;
    padding: 100px;
    background-color: #000000
}
.map_titulo{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color: #ffffff;
    font-family: "Lora", serif;
}
.map_opciones{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    margin-top: 30px;
}
.map_btn{
    position: relative;
    float: left;
    width: 180px;
    height: 50px;
    line-height: 47px;
    text-align: center;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
    margin: 0 20px;
    opacity: 0.5;
}
.map_btn.active {
    opacity: 1;
}
.map_btn:hover{
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
}

.map_events{
    margin: 100px 20px;
    list-style: none;
}
.map_fechas{
    margin-top: 70px;
    max-height: 800px;
    overflow-y: scroll;
    scrollbar-width: none;
}
.map_events li {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    color: #ffffff;
    height: 100px;
}
.map_events li:hover {
    color: #ff0100;
}
.map_place{
    width: 30px;
    margin-right: 20px;
    margin-top: 14px;
}
.map{
    position: relative;
    float: left;
    width: 100%;
    height: 990px;
}
.map_degrade_top{
    position: absolute;
    top: -20;
    width: 100%;
    height: 200px;
    background: rgb(2,0,36);
    background: linear-gradient(180deg, rgba(0,0,0,1) 50%,rgba(0,0,0,0) 100%);
    z-index: 10;
}
.map_degrade_bottom{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(0,0,0,1) 50%,rgba(0,0,0,0) 100%);
    z-index: 10;
}
.gm-svpc{
    display: none !important;
}
.map_legs{
    position: absolute;
    bottom: 100px;
    width: 300px;
    right: 20px;
    z-index: 11;
}
.map_legs_text{
    position: relative;
    float: left;
    width: 100px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: #8C8C8C;
    margin-top: 20px;
}
.map_legs_image{
    position: relative;
    float: left;
    width: 200px;
}
#google_maps {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
}
.photos_fondo{
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 25px;
}
.photos_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255,0,0,1) 0%, rgba(255,0,0,0) 54%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.photos_overlay .album_titulo {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: white;
    font-size: 24px;
    margin: 0;
}
.photos_fondo:hover .photos_overlay {
    opacity: 1;
}

@media (max-width: 690px) {
    .photos_fondo{
        height: 100px;
        border-radius: 10px;
    }
    .photos_overlay {
        background: linear-gradient(0deg, rgba(255,0,0,0.7) 0%, rgba(255,0,0,0) 100%);
    }
    .photos_overlay {
        opacity: 1;
    }
    .photos_overlay .album_titulo {
        position: absolute;
        left: auto;
        bottom: auto;
        text-align: center;
    }
}
.lct_mas_fotos{
    padding: 10px;
}
.lct_mas_fots_texto {
    color: #000;
    text-align: center;
    width: 100%;
    font-size: 20px;
    margin: 0;
}
.lct_mas_fots_texto:hover {
    color: var(--color-red);
}

.review_fondo{
    width: 100%;
    height: 700px;
    background-image: url("../images/lct_fondo_review.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.review_degrade{
    position: absolute;
    width: 100%;
    max-width: 990px;
    height: 400px;
    background-color: #000000;
    opacity: 0.7;
    border-radius: 25px;
}
.review_slider{
    position: relative;
    width: 990px; /* Ajusta al ancho deseado */
    height: 400px; /* Ajusta al alto deseado */
    overflow: hidden;
}
.review_slide{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.review_slide.active {
    opacity: 1;
    position: relative;
}

.review_title{
    font-family: "Inter", sans-serif;
    font-size: 24px;
    color: #8C8C8C;
    text-align: center;
    line-height: 150px;
}
.review_nombre{
    font-family: "Lora", serif;
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
}
.review_evento{
    font-family: "Inter", sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}
.review_comentario{
    font-family: "Inter", sans-serif;
    font-size: 26px;
    color: #FFFFFF;
    text-align: center;
    padding: 0 100px;
}
.comment_fondo{
    width: 100%;
    height: 700px;
    background-color: #000000;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.comment_content{
    position: absolute;
    width: 100%;
    max-width: 800px;
    height: 400px;
    border-radius: 25px;
}
.comment_title{
    font-family: "Inter", sans-serif;
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
    margin: 10px 0 50px 0;
}
.comment_stars {
    display: flex;
    flex-direction: row-reverse; /* Invertir el orden para alineación visual */
    justify-content: center;
    margin-bottom: 40px;
}

/* Ocultar los inputs */
.comment_stars input {
    display: none;
}
/* Estrella por defecto */
.comment_stars label {
    font-family: 'Material Icons';
    font-size: 70px;
    cursor: pointer;
    color: #8C8C8C;
}
.comment_stars label::before {
    content: "star_border"; /* Ícono de estrella vacía */
}
/* Estrellas al hacer hover */
.comment_stars label:hover,
.comment_stars label:hover ~ label {
    color: gold; /* Pintar estrellas al pasar el mouse */
}
.comment_stars label:hover::before,
.comment_stars label:hover ~ label::before {
    content: "star"; /* Cambiar a estrella llena */
}
/* Estrellas seleccionadas */
.comment_stars input:checked + label,
.comment_stars input:checked + label ~ label {
    color: gold; /* Pintar las estrellas seleccionadas */
}
.comment_stars input:checked + label::before,
.comment_stars input:checked + label ~ label::before {
    content: "star"; /* Cambiar a estrella llena */
}
.comment_comentario{
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: #8c8c8c;
    text-align: center;
    padding: 0;
}
.camioneta{
    position: absolute;
    width: 100%;
    bottom: 0;
}
.camioneta img{
    width: 100%;
}
.review_label{
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #8c8c8c;
    margin: 10px 0;
}
.review_input{;
    border: 1px solid #8c8c8c;
    color: #8c8c8c;
    height: 50px;
    padding: 10px;
    border-radius: 10px;
}
.review_input:active,
.review_input:focus{
    border: 2px solid #000000;
    color: #000000;
    box-shadow: none;
}
.review_cerrar{
    width: 200px;
    height: 50px;
    line-height: 30px;
    border: 1px solid #000000;
    color: #000000;
    border-radius: 10px;
}
.review_guardar{
    width: 200px;
    height: 50px;
    line-height: 30px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 10px;
    border-color: #000000;
}
.review_guardar:hover{
    background-color: var(--color-red);
    border-color: var(--color-red)
}
.desktop{ display: block; }
.mobile{ display: none; }
.lct_formulario{
    padding: 0 50px;
}
@media (max-width: 690px) {
    .desktop{ display: none; }
    .mobile{ display: block; }

    .lct_fondo_logo {
        padding: 50px;
        margin-top: 30px;
    }

    .lct_fondo_logo .desktop {
        display: none;
    }

    .lct_fondo_logo .mobile {
        display: block;
    }

    .lct_text {
        padding: 0 30px;
        font-size: 24px;
        line-height: 36px;
        text-align: left;
    }

    .lct_curvas {
        width: 80%;
    }

    .lct_proxima_parada {
        margin: 50px 0 0 0;
        padding: 0;
    }

    .lct_parada {
        height: 800px;
        border-radius: 0;
    }

    .lct_ruta {
        max-width: inherit;
        margin-top: 600px;
    }

    .lct_ruta img {
        width: 100%;
    }
    .lct_productos{
        margin: 150px 0 50px 0;
    }
    .lct_productos_titulo{
        text-align: center;
    }
    .lct_productos_desc{
        text-align: center;
        margin-bottom: 30px;
    }
    .lct_producto_foto {
        width: 60%;
        height: 80%;
        margin-left: 50%;
        transform: translate(-115px);
        background-position: center center;
        background-size: cover;
    }
    .proxima_titulo {
        display: block;
        font-size: 58px;
        height: 270px;
        padding: 0 50px;
    }

    .proxima_lugar {
        font-size: 28px;
    }

    .proxima_nombre {
        font-size: 28px;
    }

    .proxima_boton {
        margin-top: 100px;
    }
    .lct_video_container {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 80%;;
    }

    .map_section {
        padding: 100px 0px;
    }
    .map_titulo{
        padding: 0 30px;
    }
    .map_opciones {
        display: block;
        padding: 0 30px;
    }

    .map_btn {
        margin: 10px;
        width: 97%;
    }

    .map_events {
        margin: 40px 20px 20px 20px;
    }
    .map_fechas {
        max-height: 440px;
    }
    .map {
        padding: 0;
        margin-left: -15px;
        margin-right: -15px;
    }
    .map_legs {
        position: absolute;
        bottom: 0px;
        width: 300px;
        right: 0px;
        z-index: 11;
    }
    .review_evento,
    .review_nombre,
    .review_comentario {
        padding: 0 20px;
    }
    .review_degrade{
        height: 700px;
        border-radius: 0;
    }
    .review_cerrar {
        width: 100%;
        margin: 10px 0 !important;
    }

    .review_guardar {
        width: 100%;
        margin: 10px 0 !important;
    }
    .comment_fondo {
        height: 700px;
    }
    .comment_content {
        height: 500px;
    }
    .comment_title{
        padding: 0 60px;
    }
    .comment_comentario {
        padding: 0 30px;
        margin-bottom: 50px;
    }
    .lct_formulario{
        padding: 0 20px;
    }
}