@font-face {
    font-family: 'allumi';
    src: url('../fonts/allumi-std.otf') format('truetype');
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5% !important;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s ease;
    box-shadow: none;
}

.nav.transitioning-25 {
    background: linear-gradient(0deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(245, 245, 245, 0.15) 20%,
            rgba(230, 230, 230, 0.1) 40%,
            rgba(200, 200, 200, 0.05) 60%,
            transparent 80%);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
}

.nav.transitioning-50 {
    background: linear-gradient(0deg,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(245, 245, 245, 0.3) 25%,
            rgba(230, 230, 230, 0.2) 50%,
            rgba(200, 200, 200, 0.1) 75%,
            transparent 100%);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.nav.transitioning-75 {
    background: linear-gradient(0deg,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(245, 245, 245, 0.5) 30%,
            rgba(230, 230, 230, 0.3) 60%,
            rgba(200, 200, 200, 0.15) 80%,
            transparent 100%);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12);
}

.nav.scrolled {
    background: #ffffff;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.nav-logo {
    width: 150px;
}

.nav-a {
    font-family: 'allumi', sans-serif;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 10px 20px;
    position: relative;
}

.nav-a:hover {
    color: #f0f0f0;
}

/* Cambiar color de enlaces cuando hay scroll */
.nav.transitioning-25 .nav-a,
.nav.transitioning-50 .nav-a,
.nav.transitioning-75 .nav-a,
.nav.scrolled .nav-a {
    color: #1a1a1a;
}

.nav.transitioning-25 .nav-a:hover,
.nav.transitioning-50 .nav-a:hover,
.nav.transitioning-75 .nav-a:hover,
.nav.scrolled .nav-a:hover {
    color: #ff6e01;
}

.nav-span {
    font-size: 0.6rem;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    background: #ff6e01;
    padding: 2px 5px;
    border-radius: 5px;
}

/* El span del carrito se mantiene igual en todos los estados */
.nav.transitioning-25 .nav-span,
.nav.transitioning-50 .nav-span,
.nav.transitioning-75 .nav-span,
.nav.scrolled .nav-span {
    color: #fff;
    background: #ff6e01;
}

.nav-a2 {
    font-family: 'allumi', sans-serif;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    padding: 5px 25px;
    background-color: #ff6e01;
}

/* Sidebar del carrito */
/* Sidebar del carrito con márgenes */
.cart-sidebar {
    position: fixed;
    top: 20px;
    /* Separación desde arriba */
    right: -500px;
    /* Oculto inicialmente */
    bottom: 20px;
    /* Separación desde abajo */
    width: 500px;
    height: calc(100vh - 40px);
    /* Altura ajustada para los márgenes */
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 20px;
}

.cart-sidebar-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 12px 12px 0 0;
}

.cart-header h3 {
    margin: 0 !important;
    color: #1a1a1a;
    font-family: 'khand', sans-serif;
    font-weight: 600;

}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart-btn:hover {
    color: #ff6e01;
}

.cart-sidebar-content hr {
    width: 90%;
    margin: 0 auto 10px;
}

.cart-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #a8a8a8 #f0f0f0;
}

/* Scroll personalizado para Chrome, Safari, Edge */
.cart-body::-webkit-scrollbar {
    width: 8px;
}

.cart-body::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.cart-body::-webkit-scrollbar-thumb {
    background: #a8a8a8;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.cart-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.cart-body::-webkit-scrollbar-thumb:active {
    background: #a8a8a8;
}

/* Opcional: Efecto de sombra en el scroll */
.cart-body::-webkit-scrollbar-corner {
    background: #f0f0f0;
}

.cart-div {
    width: 90%;
    height: 150px;
    margin-bottom: 20px;
    overflow: hidden;
    background: #fff;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.150));
}

.cart-div .row {
    width: 100%;
    height: 100%;
}

.cart-div .row .col-6 {
    height: 100%;
    display: flex;
    align-items: center;
}

.cart-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-div2 {
    height: auto;
    margin: auto 0;
}

.cart-product-name {
    font-family: 'allumi', sans-serif;
    color: #1a1a1a;
    font-size: 0.9rem;
    margin-bottom: 0px;
}

.cart-product-brand {
    font-family: 'allumi', sans-serif;
    color: #666;
    font-size: 0.7rem;
    margin-bottom: 25px;
}

.cart-cantidad {
    display: flex;
    align-items: center;
}

.cart-cantidad button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.cart-cantidad input {
    width: 40px;
    height: 20px;
    text-align: center;
    border: none;
    background: #eeeeee;
    padding: 5px;
}

/* Remover las flechas del input number en Chrome, Safari, Edge */
.cart-cantidad input::-webkit-outer-spin-button,
.cart-cantidad input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remover las flechas del input number en Firefox */
.cart-cantidad input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.cart-remove-btn {
    background: #eee;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a1a1a;
}

.cart-added-modal {
    position: fixed;
    right: -220px;
    /* Oculto inicialmente */
    top: 20px;
    width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: right 0.4s ease;
    overflow: hidden;
    border: 2px solid #4CAF50;
}

.cart-added-modal.show {
    right: 20px;
    /* Visible */
}

.cart-added-modal-header {
    background: #4CAF50;
    color: white;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.cart-added-modal-header i {
    font-size: 1rem;
}

.cart-added-modal-body {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-added-modal-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.cart-added-modal-info {
    flex: 1;
    overflow: hidden;
}

.cart-added-modal-name {
    font-family: 'allumi', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 2px 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-added-modal-brand {
    font-family: 'allumi', sans-serif;
    font-size: 0.7rem;
    color: #666;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-added-modal-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.cart-added-modal-close:hover {
    opacity: 0.7;
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .cart-added-modal {
        right: -210px;
        top: 20px;
        width: 190px;
    }

    .cart-added-modal.show {
        right: 10px;
    }

    .cart-added-modal-image {
        width: 45px;
        height: 45px;
    }

    .cart-added-modal-name {
        font-size: 0.75rem;
    }

    .cart-added-modal-brand {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .cart-added-modal {
        right: -200px;
        top: 20px;
        width: 180px;
    }

    .cart-added-modal.show {
        right: 10px;
    }
}

/* Estilos para carrito vacío */
.empty-cart {
    text-align: center;
    padding: 2rem 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.empty-cart p {
    color: #666;
    margin-bottom: 1rem;
}


.cart-footer {
    padding: 20px;
}

.cart-p {
    font-family: 'allumi', sans-serif;
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 10px;
}

.cart-footer hr {
    width: 100%;
    margin: 0 auto 10px;
}

.formCotizacion .form-control {
    background: #eeeeee !important;
}

.btn-cart {
    background: #ff6e01;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 20px;
    cursor: pointer;
    float: right;
    text-decoration: none;
}

.btn-cart:hover {
    background: #e65c00;
}

/* Overlay permanece igual */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-sidebar {
        top: 10px;
        bottom: 10px;
        width: calc(60% - 20px);
        right: -100%;
    }

    .cart-sidebar.open {
        right: 10px;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
    .cart-sidebar {
        top: 0;
        bottom: 0;
        width: 100%;
        right: -100%;
        border-radius: 0;
    }

    .cart-sidebar.open {
        right: 0;
    }

    .cart-header {
        border-radius: 0;
    }

    .cart-footer {
        border-radius: 0;
    }
}

/* one section */
.one-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.os-img {
    width: 100%;
    object-fit: cover;
}

.os-div {
    position: absolute;
    top: 65%;
    left: 45%;
    transform: translate(-50%, -50%);
}

.os-p {
    font-family: "Khand", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #fff;
    font-size: 3rem;
    white-space: pre-line;
    line-height: 1.1;
}

.os-span {
    color: #ff6e01;
}

.os-p2 {
    font-family: "allumi", sans-serif;
    color: #fff;
    font-size: 1rem;
    white-space: pre-line;
    width: 70%;
    text-align: justify;
}

#bannersCarousel .carousel-item {
    transition: transform 0.8s ease-in-out;
}

#bannersCarousel .carousel-item-next,
#bannersCarousel .carousel-item-prev {
    transition: transform 0.8s ease-in-out;
}


/* two section */

.two-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ts-div {
    width: 80%;
    margin: 5% auto;
    position: relative;
}

.ts-p {
    font-family: 'khand', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #1a1a1a;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0;
}

.ts-p2 {
    font-family: 'khand', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #f6f6f6;
    font-size: 7rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
}

.ts-div2 {
    margin-top: 80px;
}


#categorias .row .col-md-3 {
    position: relative;
}

.ts-div3 {
    width: 100%;
    height: 300px;
    background: #fff;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    margin: 10% auto;
}

.ts-div3-shadow {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.150));
}

.ts-i {
    background: #ff6e01;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
}

.categoria-item-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

/* Contenedor específico para el ícono */
.ts-i-container {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: auto;
    height: auto;
    pointer-events: none;
    /* El contenedor no interfiere con clicks */
}

/* Actualizar el estilo del ícono para Safari */
.ts-i-container .ts-i {
    background: #ff6e01;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    position: relative;
    z-index: 25;
    pointer-events: auto;
    /* Solo el ícono recibe clicks */
    display: inline-block;
    cursor: pointer;
}

/* Asegurar que ts-div3 tenga el contexto correcto */
.categoria-item-wrapper .ts-div3 {
    position: relative;
    z-index: 1;
}

/* Específicamente para Safari */
@supports (-webkit-appearance: none) {
    .categoria-item-wrapper {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .ts-i-container {
        -webkit-transform: translateX(-50%) translateZ(0);
        transform: translateX(-50%) translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Fallback para mantener compatibilidad con el CSS original */
.ts-div3-shadow:not(.categoria-item-wrapper) .ts-i {
    background: #ff6e01;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
    cursor: pointer;
}

/* Responsive para el nuevo sistema */
@media (max-width: 768px) {
    .ts-i-container .ts-i {
        padding: 4px 12px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .ts-i-container .ts-i {
        padding: 3px 10px;
        font-size: 0.8em;
    }
}

.ts-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.ts-p3 {
    font-family: 'allumi', sans-serif;
    color: #1a1a1a;
    font-size: 1rem;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

/* three section */

.three-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #eeeeee;
}

.ths-div {
    width: 80%;
    margin: 5% auto;
    position: relative;
}

.ths-p {
    font-family: 'khand', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #1a1a1a;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    padding-top: 30px;
}

.ths-p2 {
    font-family: 'khand', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #ffffff;
    font-size: 7rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
}

.ths-div2 {
    margin-top: 80px;
}

.ths-div3,
.ths-div4 {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ths-div3 {
    height: 625px;
}

.ths-div4 {
    justify-content: start;
    height: 300px;
    margin-bottom: 25px;
}

.ths-div3-shadow {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.150));
}

.ths-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.ths-div4 .ths-img {
    height: 250px;
}

.ths-div5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
    margin: 0 auto;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, 0);
}

.ths-p3 {
    font-family: 'allumi', sans-serif;
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 0;
}

.ths-p4 {
    font-family: 'allumi', sans-serif;
    color: #a6a6a6;
    font-size: .9rem;
    margin-bottom: 0;
}

.ths-i {
    background: #ff6e01;
    color: #fff;
    padding: 5px 5px;
    border-radius: 4px;
}

.ths-div3-shadow,
.ths-div4-shadow,
.ths-img,
.ths-div6 {
    cursor: pointer;
}

/* contacto section */
.contacto {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding-top: 4%;
}

.contacto-img {
    width: 100%;
    object-fit: cover;
}

.contacto-div {
    position: absolute;
    top: 55%;
    left: 5%;
    transform: translateY(-50%);
    width: 40%;
}

.contacto-p {
    font-family: 'khand', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    padding-top: 65px;
}

.contacto-p2 {
    font-family: 'khand', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #ffffff36;
    font-size: 7rem;
    line-height: 1.1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.contactForm {
    width: 80%;
    margin: 5% auto 0;
}

.form-control {
    border: none !important;
    border-radius: 5px !important;
    text-align: center;
}

.form-control::placeholder {
    color: #a3a3a3 !important;
    text-align: center !important;
}

/* Para navegadores webkit (Chrome, Safari, Edge) */
.form-control::-webkit-input-placeholder {
    color: #a3a3a3 !important;
    text-align: center !important;
}

/* Para Firefox */
.form-control::-moz-placeholder {
    color: #a3a3a3 !important;
    text-align: center !important;
    opacity: 1 !important;
}

/* Para Internet Explorer 10+ */
.form-control:-ms-input-placeholder {
    color: #a3a3a3 !important;
    text-align: center !important;
}

.btn-send {
    background-color: #ff6e01 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 5px 20px !important;
    cursor: pointer !important;
    float: right;
    margin-top: 20px !important;
}

.contacto-div2 {
    width: 35%;
    position: absolute;
    top: 55%;
    right: 5%;
    transform: translateY(-50%);
}

.contacto-p3 {
    font-family: 'khand', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #fff;
    font-size: 1.8rem;
}

.contacto-div3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    margin-bottom: 20px;
}

.contacto-div4 {
    width: 200px;
    display: flex;
    flex-direction: column;
}

.contacto-a {
    display: flex;
    align-items: center;
    width: 200px;
    text-decoration: none;
}

.contacto-a i {
    font-size: 1.5rem;
    color: #ff6e01;
    margin-right: 15px;
}

.contacto-a p {
    font-family: 'allumi', sans-serif;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    margin-bottom: 0;
}

.contacto-a2 {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 200;

}

/* four section */
.four-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fs-div {
    width: 80%;
    margin: 5% auto;
    position: relative;
}

.fs-p {
    font-family: 'khand', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #1a1a1a;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.fs-p2 {
    font-family: 'khand', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #f6f6f6;
    font-size: 7rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
}

.fs-div2 {
    margin: 100px auto 5%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 0 40px;
}

.fs-div2::-webkit-scrollbar {
    display: none;
}

.fs-img {
    width: 250px;
    height: 150px;
    object-fit: contain;
    flex-shrink: 0;
    padding: 20px;
}

/* five section */
.five-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffff;
}

.fis-div {
    width: 80%;
    margin: 5% auto;
    position: relative;
}


.fis-p {
    font-family: 'khand', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #1a1a1a;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    padding-top: 30px;
}

.fis-p2 {
    font-family: 'khand', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #f6f6f6;
    font-size: 7rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
}

.fis-div2 {
    margin: 10% auto;
}

.fis-div3 {
    position: relative;
}

.fis-img {
    width: 100%;
}

.fis-i1,
.fis-i2,
.fis-i3 {
    position: absolute;
    color: #010101;
    font-size: 1.2rem;
    transform-origin: center;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0.8;
}

.fis-i1 {
    top: 30%;
    left: 48%;
    animation: smoothPulse1 6s infinite ease-in-out;
}

.fis-i2 {
    top: 42%;
    left: 40%;
    animation: smoothPulse2 6s infinite ease-in-out;
    animation-delay: 2s;
}

.fis-i3 {
    top: 38%;
    left: 55%;
    animation: smoothPulse3 6s infinite ease-in-out;
    animation-delay: 4s;
}

/* Animaciones más suaves y fluidas con el color #010101 */
@keyframes smoothPulse1 {

    0%,
    85% {
        transform: scale(1);
        opacity: 0.8;
        color: #010101;
    }

    10% {
        transform: scale(1.6);
        opacity: 1;
        color: #000000;
    }

    20% {
        transform: scale(1.2);
        opacity: 0.95;
        color: #010101;
    }

    30%,
    100% {
        transform: scale(1);
        opacity: 0.8;
        color: #010101;
    }
}

@keyframes smoothPulse2 {

    0%,
    85% {
        transform: scale(1);
        opacity: 0.7;
        color: #010101;
    }

    10% {
        transform: scale(1.5);
        opacity: 1;
        color: #000000;
    }

    20% {
        transform: scale(1.15);
        opacity: 0.9;
        color: #010101;
    }

    30%,
    100% {
        transform: scale(1);
        opacity: 0.7;
        color: #010101;
    }
}

@keyframes smoothPulse3 {

    0%,
    85% {
        transform: scale(1);
        opacity: 0.9;
        color: #010101;
    }

    10% {
        transform: scale(1.7);
        opacity: 1;
        color: #000000;
    }

    20% {
        transform: scale(1.25);
        opacity: 0.95;
        color: #010101;
    }

    30%,
    100% {
        transform: scale(1);
        opacity: 0.9;
        color: #010101;
    }
}

/* Efecto hover más suave con color #010101 */
.fis-i1:hover,
.fis-i2:hover,
.fis-i3:hover {
    animation-play-state: paused;
    transform: scale(2);
    color: #010101;
    opacity: 1;
    transition: all 0.3s ease;
}

/* Efecto de sombra sutil con tonos más oscuros */
.fis-i1::after,
.fis-i2::after,
.fis-i3::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(1, 1, 1, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.4s ease;
}

.fis-i1:hover::after,
.fis-i2:hover::after,
.fis-i3:hover::after {
    width: 40px;
    height: 40px;
    background: rgba(1, 1, 1, 0.25);
}

/* Responsive para los iconos */
@media (max-width: 768px) {

    .fis-i1,
    .fis-i2,
    .fis-i3 {
        font-size: 1rem;
    }

    .fis-i1:hover,
    .fis-i2:hover,
    .fis-i3:hover {
        transform: scale(1.5);
    }
}

@media (max-width: 480px) {

    .fis-i1,
    .fis-i2,
    .fis-i3 {
        font-size: 0.9rem;
    }

    .fis-i1 {
        top: 28%;
        left: 47%;
    }

    .fis-i2 {
        top: 40%;
        left: 38%;
    }

    .fis-i3 {
        top: 36%;
        left: 55%;
    }

    .fis-i1:hover,
    .fis-i2:hover,
    .fis-i3:hover {
        transform: scale(1.3);
    }
}

.fis-div2 .fis-p {
    text-align: left;
}

.fis-p3 {
    font-family: 'khand', sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #010101;
    font-size: 2rem;
    text-align: center;
    margin-top: 10%;
}

.fis-p4 {
    margin: 0;
    font-family: 'allumi', sans-serif;
    color: #010101;
}

.fis-a {
    font-family: 'allumi', sans-serif;
    color: #e65c00;
    margin-bottom: 30px;
    display: block;
    text-decoration: none;
}

.fis-a2 {
    font-family: 'allumi', sans-serif;
    color: #e65c00;
    margin-bottom: 30px;
    display: block;
    text-decoration: none;
    text-align: center;
}

.six-div {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.container2 {
    background-color: #eaeaea;
    width: 100% !important;
    padding: 10px;
}

.six-div {
    display: flex;
    overflow-x: auto;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.six-image {
    flex: 0 0 auto;
    width: 400px;
    padding: 10px;
}


/* footer */

.whatsapp {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 1000;
}

.whatsapp-img {
    width: 40px;
    object-fit: cover;
}

.footer {
    background: #1a1a1a;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.footer-div {
    width: 80%;
    margin: 5% auto;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.footer-div2 {
    width: 45%;
    display: flex;
    flex-direction: column;
    /* Cambio principal: columna en lugar de fila */
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.footer-oficinas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
}


.footer-div3 {
    flex: 1;
}

.footer-img {
    width: 240px;
    margin: auto 0;
}

.footer-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-ul a {
    margin-bottom: 10px;
    color: #ff6e01;
    text-decoration: none;
}

.footer-a {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 30px;
}

.footer-a i {
    font-size: 1rem;
    color: #ff6e01;
    margin-right: 10px;
}

.footer-a p {
    font-family: 'allumi', sans-serif;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    margin-bottom: 0;
}

.footer-a2 {
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 200;
    margin-bottom: 0;
}

.footer-p {
    font-weight: 300;
    color: #fff;
    font-size: 0.8rem;
    width: 100%;
    white-space: pre-line;
    line-height: 1.1;
    text-align: center;
    margin: 0;
}

.footer-div4 {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.footer-div5 {
    width: 80%;
    text-align: center;
    display: flex;
    align-items: center;
}

/* productos one section */
.productos-one-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pos-img {
    width: 100%;
    object-fit: cover;
}

.pos-div {
    position: absolute;
    top: 60%;
    left: 25%;
    transform: translate(-50%, -50%);
}

.pos-p {
    font-family: "Khand", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #ff6e01;
    font-size: 3rem;
    margin-bottom: -155px;
    z-index: 2;
    position: relative;
    margin-left: 160px;
}

.pos-p2 {
    font-family: "Khand", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #4d4d4d;
    font-size: 7rem;
}

.pos-div2 {
    width: 100%;
    background: #ff6e01;
    height: 20px;
}

/* productos two section */
.productos-two-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f6f6f6;
}

.pts-div {
    width: 80%;
    margin: 5% auto;
    position: relative;
}

.pts-p {
    font-family: 'khand', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #1a1a1a;
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 30px;
}

.pts-div2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pts-div3 {
    width: 95%;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    scroll-behavior: smooth;
}

.pts-carousel-container {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
    width: max-content;
}

.pts-div3::-webkit-scrollbar {
    display: none;
}

.pts-div4 {
    width: 20%;
    min-width: 20%;
    height: 60px;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pts-p2 {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-family: 'allumi', sans-serif;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    white-space: normal;
    word-wrap: break-word;
}

.pts-div4.selected {
    background: #ff6e01;
}

.pts-div4.selected .pts-p2 {
    color: #fff;
}

.pts-a {
    color: #ff6e01;
    font-size: 1.5rem;
    text-decoration: none;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.pts-a:hover {
    color: #1a1a1a;
}

.pts-a.disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* productos three section */
.productos-three-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f6f6f6;
}

.pths-div {
    width: 80%;
    margin: 5% auto;
    position: relative;
}

.pths-div2-shadow {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.150));
}

.pths-div2 {
    width: 100%;
    height: 280px;
    background: #fff;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.pths-div3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
    margin: 0 auto;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, 0);
}

.pths-div2-shadow,
.pths-img,
.pths-div4 {
    cursor: pointer;
}

.pths-img {
    width: 100%;
    height: 280px;
    object-fit: contain;
}

.pths-p {
    font-family: 'allumi', sans-serif;
    color: #1a1a1a;
    font-size: .9rem;
    margin-bottom: 0;
}

.pths-p2 {
    font-family: 'allumi', sans-serif;
    color: #a6a6a6;
    font-size: .8rem;
    margin-bottom: 0;
}

.pths-i {
    background: #ff6e01;
    color: #fff;
    padding: 5px 5px;
    border-radius: 4px;
}

.pths-i,
.ths-i {
    cursor: pointer;
    z-index: 10;
    position: relative;
}

.pths-paginator {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    margin-top: 5%;
}

.pths-p3,
.pths-p4 {
    margin: 0;
}

.pths-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pths-a {
    text-decoration: none;
    color: #1a1a1a;
}

.pths-a.selected {
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

.form-select {
    width: 90% !important;
    border: none !important;
    background-color: #e5e5e5 !important;
    border-radius: 0px !important;
    padding: 10px 20px !important;
    cursor: pointer !important;
}

/* detalles productos one section */
.detalle-one-section {
    background: #f6f6f6;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.dos-div {
    width: 80%;
    margin: 10% auto 5%;
    position: relative;
}

.dos-p {
    font-family: 'allumi', sans-serif;
    color: #1a1a1a;
    font-size: .9rem;
    margin-bottom: 40px;
    text-decoration: none;
}

.dos-div .row .cmd {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.dos-div2 {
    width: 20%;
    overflow: hidden;
}

.dos-div3-shadow {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.150));
    width: 70%;
}

.dos-div3 {
    width: auto;
    height: 400px;
    background: #fff;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dos-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dos-div4 {
    width: 100%;
    height: 100px;
    background: #fff;
}

.dos-img2 {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dos-container {
    margin-left: 10%;
}

.dos-p2 {
    font-family: 'khand', sans-serif;
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.dos-p3 {
    font-family: 'allumi', sans-serif;
    color: #a8a8a8;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.dos-p4 p {
    font-family: 'allumi', sans-serif;
    color: #1a1a1a;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.dos-div5 {
    margin-top: 10%;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dos-div6 {
    display: flex;
    align-items: center;
}

.dos-div6 button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.dos-div6 input {
    width: 40px;
    height: 20px;
    text-align: center;
    border: none;
    background: #eeeeee;
    padding: 5px;
}

/* Remover las flechas del input number en Chrome, Safari, Edge */
.dos-div6 input::-webkit-outer-spin-button,
.dos-div6 input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remover las flechas del input number en Firefox */
.dos-div6 input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.dos-btn {
    display: flex;
    background: #ff6e01;
    color: #fff;
    padding: 5px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    height: 25px;
    align-items: center;
}

/* detalles two section */
.detalle-two-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f6f6f6;
}

.dts-div {
    width: 80%;
    margin: 5% auto;
    position: relative;
}


/* Slider de categorías */
.categorias-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.categorias-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.categorias-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.categoria-slide {
    flex: 0 0 20%;
    padding: 0 10px;
    box-sizing: border-box;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 110, 1, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #ff6e01;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.slider-btn-prev {
    left: 10px;
}

.slider-btn-next {
    right: 10px;
}


.dos-pdfs-section {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
}

.dos-pdfs-container {
    margin-top: 10px;
}

.dos-pdf-btn-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dos-pdf-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff6e01 0%, #e55a00 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 110, 1, 0.2);
    min-width: 160px;
    justify-content: center;
}

.dos-pdf-btn:hover {
    background: linear-gradient(135deg, #e55a00 0%, #cc4d00 100%);
    box-shadow: 0 4px 8px rgba(255, 110, 1, 0.3);
}

.dos-pdf-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 110, 1, 0.2);
}

.dos-pdf-btn i {
    font-size: 16px;
    color: #fff;
}

.dos-pdf-btn span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .dos-pdf-btn-container {
        flex-direction: column;
        align-items: stretch;
    }

    .dos-pdf-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animación de aparición */
.dos-pdfs-section.fade-in {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Blog */

.blog-article {
    text-align: center;
}

.blog-header {
    margin-bottom: 2rem !important;
}

.breadcrumb {
    justify-content: center;
    background: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-meta {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.blog-date i {
    color: #ff6e01;
    margin-right: 0.5rem;
}

.blog-image {
    margin-bottom: 2.5rem !important;
    text-align: center;
}

.blog-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-content {
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    text-align: center;
    margin: 2rem 0 1rem 0;
    color: #333;
}

.blog-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #ff6e01;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
    text-align: center;
}

.blog-content ul,
.blog-content ol {
    max-width: 600px;
    margin: 1.5rem auto;
    text-align: left;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-footer {
    margin-top: 3rem !important;
    padding-top: 2rem !important;
    border-top: 2px solid #eee !important;
    text-align: center;
}

.blog-footer .row {
    justify-content: center;
    align-items: center;
}

.btn-outline-primary {
    border-color: #ff6e01;
    color: #ff6e01;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #ff6e01;
    border-color: #ff6e01;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 110, 1, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6e01, #ff8533);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a00, #ff6e01);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 110, 1, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 2rem;
    }

    .blog-content {
        font-size: 1rem;
        line-height: 1.6;
    }

    .blog-footer .row>div {
        text-align: center !important;
        margin-bottom: 1rem;
    }
}

/* Responsive para el slider de categorías */
@media (max-width: 992px) {
    .categoria-slide {
        flex: 0 0 33.333%;
        /* 3 categorías en tablets */
    }
}

@media (max-width: 768px) {
    .categoria-slide {
        flex: 0 0 50%;
        /* 2 categorías en móviles */
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .categoria-slide {
        flex: 0 0 100%;
        /* 1 categoría en móviles pequeños */
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
    }
}

/* media queries */
@media screen and (max-width: 1300px) and (min-width: 1100px) {

    .os-div {
        top: 60%;
        left: 40%;
    }

    .os-p {
        font-size: 2.5rem;
    }

    .os-p2 {
        width: 90%;
    }

    .ts-p {
        font-size: 1.2rem;
    }

    .ts-p2 {
        font-size: 6rem;
        margin-top: 5px;
    }

    .ts-div2 {
        margin-top: 90px;
    }

    .ts-div3 {
        justify-content: center;
        height: 250px;
    }

    .ts-img {
        height: 150px;
    }

    .ts-p3 {
        font-size: 0.9rem;
    }

    .ts-i {
        padding: 5px 10px;
        bottom: -12px;
        left: 45%;
        font-size: 0.8rem;
    }

    .ths-p {
        font-size: 1.2rem;
    }

    .ths-p2 {
        font-size: 6rem;
        top: -25px;
    }

    .ths-p3 {
        font-size: 0.8rem;
    }

    .ths-p4 {
        font-size: 0.7rem;
    }

    .ths-div3 {
        height: 525px;
    }

    .ths-div4,
    .ths-img {
        height: 250px;
    }

    .contacto-p {
        font-size: 1.4rem;
    }

    .contacto-p2 {
        font-size: 6rem;
    }

    .contacto-div3 {
        width: 100%;
    }

    .fs-p {
        font-size: 1.2rem;
    }

    .fs-p2 {
        font-size: 6rem;
        top: -25px;
    }

    .fs-img {
        width: 200px;
        height: 120px;
    }

    .pths-div2 {
        height: 250px;
    }

    .pths-img {
        height: 200px;
    }

    .pths-p {
        font-size: 0.8rem;
    }

    .dos-div3 {
        height: 360px;
        margin-left: 10%;
    }

    .dos-div4 {
        height: 70px;
    }

    .dos-div5 {
        width: 70%;
    }

    .contacto-img {
        height: 530px;
    }

    .footer-img {
        width: 200px;
    }

    .footer-ul {
        padding-left: 2rem;
    }

    .footer-div2 {
        width: 80%;
    }
}

@media screen and (max-width: 1099px) and (min-width: 768px) {

    .nav-logo {
        width: 100px;
    }

    .nav-a {
        font-size: 0.9rem;
        padding: 10px;
    }

    .nav-a2 {
        font-size: 0.9rem;
        padding: 5px 15px;
    }

    .os-div {
        top: 60%;
        left: 50%;
        width: 70%;
    }

    .os-p {
        font-size: 2rem;
    }

    .os-p2 {
        font-size: 0.9rem;
        width: 90%;
    }

    .ts-p {
        font-size: 1rem;
    }

    .ts-p2 {
        font-size: 5rem;
        margin-top: 5px;
    }

    .ts-div2 {
        margin-top: 90px;
    }

    .ts-div3 {
        height: 200px;
    }

    .ts-img {
        height: 100px;
    }

    .ts-p3 {
        font-size: 0.6rem;
    }

    .ts-i {
        padding: 5px 10px;
        bottom: -12px;
        left: 45%;
        font-size: 0.8rem;
    }

    .ths-p {
        font-size: 1rem;
    }

    .ths-p2 {
        font-size: 5rem;
        top: -20px;
    }

    .ths-div4 {
        height: 180px;
    }

    .ths-div3 {
        height: 400px;
    }

    .ths-img {
        height: 200px;
    }

    .ths-div4 .ths-img {
        height: 100px;
    }

    .ths-p3 {
        font-size: 0.7rem;
    }

    .ths-p4 {
        font-size: 0.6rem;
    }

    .ths-i {
        font-size: 0.8rem;
    }

    .contacto-img {
        height: 500px;
    }

    .contacto-p {
        padding-top: 40px;
        font-size: 0.9rem;
    }

    .contacto-p2 {
        font-size: 4rem;
    }

    .btn-send {
        padding: 5px 15px !important;
        font-size: 0.8rem !important;
        margin-top: 0 !important;
    }

    .contacto-div2 {
        width: 40%;
        right: 0%;
    }

    .contacto-p3 {
        font-size: 1.4rem;
    }

    .contacto-a i,
    .contacto-a p {
        font-size: 0.8rem;
    }

    .fs-p {
        font-size: 1rem;
    }

    .fs-p2 {
        font-size: 5rem;
        top: -20px;
    }

    .fs-img {
        width: 200px;
        height: 120px;
    }

    .fis-p {
        font-size: 1rem;
    }

    .fis-p2 {
        font-size: 5rem;
        top: -20px;
    }

    .fis-i1 {
        top: 27%;
        left: 47%;
    }

    .fis-i2 {
        top: 40%;
        left: 38%;
    }

    .fis-i3 {
        top: 35%;
        left: 54%;
    }

    .fis-p3 {
        font-size: 1.5rem;
    }

    .footer-div {
        width: 90%;
    }

    .footer-img {
        width: 100px;
    }

    .footer-ul {
        width: 130px;
    }

    .footer-ul a {
        margin: 0 auto 10px;
        display: block;
        text-align: center;
    }

    .footer-div2 {
        width: auto;
    }


    .pths-div {
        width: 90%;
    }

    .pths-div2 {
        height: 200px;
    }

    .pths-img {
        height: 150px;
    }

    .pths-p {
        font-size: 0.7rem;
    }

    .pths-p2 {
        font-size: 0.5rem;
    }

    .pths-i {
        font-size: 0.5rem;
    }

    .dos-div {
        width: 90%;
        margin: 20% auto 10%;
    }

    .dos-p {
        font-size: 0.8rem;
    }

    .dos-div3 {
        height: 300px;
        margin-left: 10%;
    }

    .dos-div4 {
        height: 50px;
    }

    .dos-p2 {
        font-size: 1.5rem;
    }

    .dos-p4 p {
        font-size: 0.8rem;
    }

    .dos-div5 {
        width: 90%;
    }


    .pos-div {
        position: absolute;
        top: 70%;
        left: 30%;
    }

    .pos-p {
        font-size: 2rem;
        margin-bottom: -100px;
    }

    .pos-p2 {
        font-size: 5rem;
    }


}

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

    .nav {
        justify-content: center;
    }

    .nav-logo {
        width: 80px;
    }

    .nav-a {
        font-size: 0.6rem;
        padding: 2px;
    }

    .nav-a2 {
        font-size: 0.7rem;
        padding: 2px 5px;
    }

    .nav-span {
        top: -10px;
        right: -10px;
    }

    .os-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .os-div {
        top: 60%;
        left: 50%;
        width: 90%;
        transform: translate(-50%, -50%);
    }

    .os-p {
        font-size: 1.5rem;
        margin-left: 0;
        text-align: center;
    }

    .os-p2 {
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .ts-p {
        font-size: 0.9rem;
        text-align: center;
    }

    .ts-p2 {
        font-size: 4rem;
        top: -20px;
    }

    .ts-div3 {
        height: 220px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .ts-img {
        height: 150px;
    }

    .ts-p3 {
        font-size: 0.8rem;
    }

    .ts-i {
        padding: 5px 10px;
        bottom: 10px;
        left: 45%;
        font-size: 0.8rem;
    }

    .ths-p {
        font-size: 0.9rem;
        text-align: center;
    }

    .ths-p2 {
        font-size: 4rem;
        top: -5px;
    }

    .ts-div2,
    .ths-div2 {
        margin-top: 50px;
    }

    .ths-div3,
    .ths-div4 {
        height: 220px;
        margin-bottom: 25px;
    }

    .ths-img {
        height: 150px !important;
    }

    .contacto-img {
        height: 700px;
    }

    .contacto-div {
        position: absolute;
        top: 35%;
        left: 50%;
        width: 80%;
        transform: translate(-50%, -50%);
    }

    .contacto-p {
        padding-top: 40px;
        font-size: 0.9rem;
    }

    .contacto-p2 {
        font-size: 4rem;
    }

    .contacto-div2 {
        width: 90%;
        top: 80%;
        right: 50%;
        transform: translate(50%, -50%);
    }

    .contacto-p3 {
        font-size: 1.4rem;
        text-align: center;
    }

    .contacto-div3 {
        margin: 10px auto;
        width: 90%;
    }

    .contactForm {
        margin: 10% auto 0;
    }

    .contacto-a i,
    .contacto-a p,
    .contacto-a2 {
        font-size: 0.7rem;
    }

    .btn-send {
        display: block !important;
        margin: 0 auto;
        float: none;
    }

    .fs-p {
        font-size: 0.9rem;
    }

    .fs-p2 {
        font-size: 4rem;
        top: -10px;
    }

    .fs-img {
        width: 120px;
        height: 80px;
    }

    .fs-div2 {
        margin: 50px auto 5%;
    }

    .footer-div {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-div2 {
        width: 100%;
        margin-top: 20px;
    }


    .footer-div3 {
        width: 50%;
        overflow: hidden;
    }

    .footer-ul {
        margin: 0 auto;
    }

    .footer-ul li a {
        justify-content: center;
    }

    .footer-a i,
    .footer-a p {
        font-size: 0.8rem;
    }

    .footer-a2 {
        font-size: 0.6rem;
    }

    .footer-p {
        font-size: 0.7rem;
    }

    .pos-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .pos-div {
        position: absolute;
        top: 80%;
        left: 35%;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: center;
    }

    .pos-p {
        font-size: 1.5rem;
        margin-bottom: -90px;
        z-index: 2;
    }

    .pos-p2 {
        font-size: 4rem;
    }

    .pts-div4 {
        width: 10%;
        min-width: 10%;
        height: 110px;
    }

    #marca {
        margin-bottom: 50px;
    }

    .pths-div2 {
        height: 250px;
    }

    .pths-img {
        height: 200px;
    }

    .dos-div {
        width: 90%;
        margin: 25% auto 10%;
    }

    .dos-div2 {
        width: 25%;
    }

    .dos-div3 {
        height: 230px;
        margin-left: 10%;
    }

    .dos-div4 {
        height: 50px;
    }

    .dos-p2 {
        margin-top: 25px;
    }

    .dos-div5 {
        width: 100%;
    }

    .fis-p {
        font-size: 1rem;
    }

    .fis-p2 {
        font-size: 4rem;
        top: -5px
    }

    .fis-p3 {
        font-size: 1rem;
    }

}