
:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --light: #F7F7F7;
    --dark: #404A3D;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


/*** Button **/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}
/*
.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}*/

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*.carousel-item img {
    width: 100%;*/ /* Asegura que la imagen ocupe todo el ancho posible */
/*height: 500px;*/ /* Altura fija */
/*object-fit: cover;
}*/

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
}

.page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}

    .page-header .breadcrumb-item + .breadcrumb-item::before {
        color: var(--light);
    }

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 18px;
        color: var(--light);
    }


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

    .section-title::before {
        position: absolute;
        width: calc(100% + 80px);
        height: 2px;
        top: 5px;
        left: -40px;
        background: var(--primary);
        z-index: -1;
    }

    .section-title::after {
        position: absolute;
        width: calc(100% + 120px);
        height: 2px;
        bottom: 6px;
        left: -60px;
        background: var(--primary);
        z-index: -1;
    }

    .section-title.text-start::before {
        width: calc(100% + 40px);
        left: 0;
    }

    .section-title.text-start::after {
        width: calc(100% + 60px);
        left: 0;
    }


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

    .service-item .service-img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 8px;
        overflow: hidden;
        z-index: -1;
    }

        .service-item .service-img img {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            object-fit: cover;
            border-radius: 10px;
        }

        .service-item .service-img::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, .5);
            border-radius: 10px;
            z-index: 1;
        }

        .service-item .service-img::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: #FFFFFF;
            transition: .5s ease-out;
            z-index: 2;
        }

    .service-item:hover .service-img::after {
        width: 0;
        left: auto;
        right: 0;
    }

    .service-item .service-text .service-icon {
        width: 140px;
        height: 140px;
        padding: 15px;
        margin-top: -70px;
        margin-bottom: 40px;
        background: #FFFFFF;
        border-radius: 140px;
        overflow: hidden;
        box-shadow: 0 0 60px rgba(0, 0, 0, .1);
    }

    .service-item .service-text h5,
    .service-item .service-text p {
        transition: .5s;
    }

    .service-item:hover .service-text h5,
    .service-item:hover .service-text p {
        color: #FFFFFF;
    }

    .service-item .service-text .btn {
        color: var(--secondary);
        background: #FFFFFF;
        box-shadow: 0 0 45px rgba(0, 0, 0, .25);
    }

        .service-item .service-text .btn:hover {
            color: var(--dark);
            background: var(--secondary);
        }



.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

    .product-item .product-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .5);
        opacity: 0;
        padding-top: 60px;
        transition: .5s;
    }

    .product-item:hover .product-overlay {
        opacity: 1;
        padding-top: 0;
    }


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

    .team-item .btn {
        border-color: transparent;
        box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    }


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

    .testimonial-img::after {
        position: absolute;
        content: "\f10d";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 200px;
        color: #EEEEEE;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .testimonial-img img {
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 100px;
    }

        .testimonial-img img:nth-child(1) {
            top: 0;
            left: 0;
        }

        .testimonial-img img:nth-child(2) {
            top: 60%;
            left: 20%;
        }

        .testimonial-img img:nth-child(3) {
            top: 20%;
            left: 60%;
        }

        .testimonial-img img:nth-child(4) {
            bottom: 0;
            right: 0;
        }

        .testimonial-img img .animated.pulse {
            animation-duration: 2s;
        }

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin-right: 15px;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        border-radius: 45px;
        box-shadow: 0 0 45px rgba(0, 0, 0, .2);
        font-size: 22px;
        transition: .5s;
    }

        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            background: var(--secondary);
            color: var(--dark);
        }


/*** Footer ***/
.footer {
    color: #f8fcf7;
}

    .footer .btn.btn-link {
        display: block;
        margin-bottom: 5px;
        padding: 0;
        text-align: left;
        color: #f6f8f5;
        font-weight: normal;
        text-transform: capitalize;
        transition: .3s;
    }

        .footer .btn.btn-link::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 10px;
        }

        .footer .btn.btn-link:hover {
            color: var(--light);
            letter-spacing: 1px;
            box-shadow: none;
        }

.product-section {
    padding: 7rem 0;
}

    .product-section .product-item {
        text-align: center;
        text-decoration: none;
        display: block;
        position: relative;
        padding-bottom: 50px;
        cursor: pointer;
        border-bottom: 3px solid rgba(237,34,40,0.79);
        /*height: 480px !important;*/
    }

        .product-section .product-item .product-thumbnail {
            width: 100% !important; /*Para que todas las imágenes ocupen el mismo ancho dentro de su contenedor */
            height: 300px !important; /*Puedes ajustar este valor según lo necesites */
            object-fit: cover; /*Recorta la imagen para que llene el espacio sin deformarse */
            display: block;
            margin: 0 auto;
            margin-bottom: 30px;
            position: relative;
            top: 0;
            -webkit-transition: .3s all ease;
            -o-transition: .3s all ease;
            transition: .3s all ease;
        }

        .product-section .product-item h3 {
            font-weight: 600;
            font-size: 16px;
        }

        .product-section .product-item strong {
            font-weight: 800 !important;
            font-size: 18px !important;
        }

        .product-section .product-item h3, .product-section .product-item strong {
            color: #2f2f2f;
            text-decoration: none;
        }

        .product-section .product-item .icon-cross {
            position: absolute;
            width: 35px;
            height: 35px;
            display: inline-block;
            background: #2f2f2f;
            bottom: 15px;
            left: 50%;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            margin-bottom: -17.5px;
            border-radius: 50%;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: .3s all ease;
            -o-transition: .3s all ease;
            transition: .3s all ease;
        }

            .product-section .product-item .icon-cross img {
                position: absolute;
                left: 50%;
                top: 50%;
                -webkit-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
            }

        .product-section .product-item:before {
            bottom: 0;
            left: 0;
            right: 0;
            position: absolute;
            content: "";
            background: rgba(237,34,40,0.79); /*Color de la animacion en productos en hover*/
            height: 0%;
            z-index: -1;
            border-radius: 10px;
            -webkit-transition: .3s all ease;
            -o-transition: .3s all ease;
            transition: .3s all ease;
        }

        .product-section .product-item:hover .product-thumbnail {
            top: -25px;
        }

        .product-section .product-item:hover .icon-cross {
            bottom: 0;
            opacity: 1;
            visibility: visible;
        }

        .product-section .product-item:hover:before {
            height: 70%;
        }

.untree_co-section {
    padding: 7rem 0;
}

@media (max-width: 768px) { /* Para dispositivos con un ancho máximo de 768px (tablets y móviles) */
    .product-section .product-item .product-thumbnail {
        height: 200px !important; /* Reduce la altura de las imágenes en móviles */
    }
    

}
    
    @media (max-width: 480px) { /* Para dispositivos más pequeños, como teléfonos */
        .product-section .product-item .product-thumbnail {
            height: 180px !important; /* Aún más pequeño para pantallas reducidas */
        }
    }

    /* Estilo para el contenedor de las tabs */
    .tabs {
        display: flex;
        justify-content: space-around;
        margin-bottom: 0;
        border-bottom: none; /* Eliminar el borde para que no haya separación */
    }

    /* Estilo para las tabs (enlace) */
    .tab-link {
        flex: 1; /* Hace que cada tab ocupe el mismo ancho */
        text-align: center; /* Centra el texto */
        background-color: transparent;
        color: #000;
        border: none;
        padding: 10px 0; /* Ajusta el padding */
        font-size: 1em;
        cursor: pointer;
        position: relative;
        transition: background-color 0.3s, color 0.3s;
    }

    /* Estilo para la tab activa */
    .tab-link {
        flex: 1;
        text-align: center;
        background-color: transparent;
        color: #000;
        border: none;
        padding: 10px 0;
        font-size: 1em;
        cursor: pointer;
        position: relative;
        transition: background-color 0.3s, color 0.3s;
        border-radius: 10px 10px 0 0; /* Esquinas superiores redondeadas */
        border-bottom: 1px solid #ccc; /* Línea debajo de las pestañas */
    }

        .tab-link.active {
            background-color: #E60E1D;
            color: white;
            padding: 15px 0;
            border-radius: 10px 10px 0 0; /* Mantener esquinas redondeadas cuando está activa */
        }

        .tab-link:hover::after {
            width: 100%;
        }

        .tab-link.active::after {
            width: 100%;
            background: transparent; /* Quita la línea para la activa */
        }




    



    .before-footer-section {
        padding: 7rem 0 12rem 0 !important;
    }

    .site-blocks-table {
        overflow: auto;
    }

        .site-blocks-table .product-thumbnail {
            width: 200px;
        }

        .site-blocks-table .btn {
            padding: 2px 10px;
        }

        .site-blocks-table thead th {
            padding: 30px;
            text-align: center;
            border-width: 0px !important;
            vertical-align: middle;
            color: rgba(0, 0, 0, 0.8);
            font-size: 18px;
        }

        .site-blocks-table td {
            padding: 20px;
            text-align: center;
            vertical-align: middle;
            color: rgba(0, 0, 0, 0.8);
        }

        .site-blocks-table tbody tr:first-child td {
            border-top: 1px solid #3b5d50 !important;
        }

        .site-blocks-table .btn {
            background: none !important;
            color: #000000;
            border: none;
            height: auto !important;
        }

    .site-block-order-table th {
        border-top: none !important;
        border-bottom-width: 1px !important;
    }

    .site-block-order-table td, .site-block-order-table th {
        color: #000000;
    }

    .couponcode-wrap input {
        border-radius: 10px !important;
    }

    .text-primary {
        color: #3b5d50 !important;
    }

    .thankyou-icon {
        position: relative;
        color: #3b5d50;
    }

        .thankyou-icon:before {
            position: absolute;
            content: "";
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(59, 93, 80, 0.2);
        }

    .white-bold-text {
        color: white;
        font-weight: bold;
    }

    .custom-navbar {
        background: #3b5d50 !important;
        padding-top: 20px;
        padding-bottom: 20px;
    }

        .custom-navbar .navbar-brand {
            font-size: 32px;
            font-weight: 600;
        }

            .custom-navbar .navbar-brand > span {
                opacity: .4;
            }

        .custom-navbar .navbar-toggler {
            border-color: transparent;
        }

            .custom-navbar .navbar-toggler:active, .custom-navbar .navbar-toggler:focus {
                -webkit-box-shadow: none;
                box-shadow: none;
                outline: none;
            }

    @media (min-width: 992px) {
        .custom-navbar .custom-navbar-nav li {
            margin-left: 15px;
            margin-right: 15px;
        }
    }

    .custom-navbar .custom-navbar-nav li a {
        font-weight: 500;
        color: #ffffff !important;
        opacity: .5;
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease;
        position: relative;
    }

    @media (min-width: 768px) {
        .custom-navbar .custom-navbar-nav li a:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 8px;
            right: 8px;
            background: #f9bf29;
            height: 5px;
            opacity: 1;
            visibility: visible;
            width: 0;
            -webkit-transition: .15s all ease-out;
            -o-transition: .15s all ease-out;
            transition: .15s all ease-out;
        }
    }

    .custom-navbar .custom-navbar-nav li a:hover {
        opacity: 1;
    }

        .custom-navbar .custom-navbar-nav li a:hover:before {
            width: calc(100% - 16px);
        }

    .custom-navbar .custom-navbar-nav li.active a {
        opacity: 1;
    }

        .custom-navbar .custom-navbar-nav li.active a:before {
            width: calc(100% - 16px);
        }

    .custom-navbar .custom-navbar-cta {
        margin-left: 0 !important;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    @media (min-width: 768px) {
        .custom-navbar .custom-navbar-cta {
            margin-left: 40px !important;
        }
    }

    .custom-navbar .custom-navbar-cta li {
        margin-left: 0px;
        margin-right: 0px;
    }

        .custom-navbar .custom-navbar-cta li:first-child {
            margin-right: 20px;
        }

    .hero {
        background: #3b5d50;
        padding: calc(4rem - 30px) 0 0rem 0;
    }

    @media (min-width: 768px) {
        .hero {
            padding: calc(4rem - 30px) 0 4rem 0;
        }
    }

    @media (min-width: 992px) {
        .hero {
            padding: calc(8rem - 30px) 0 8rem 0;
        }
    }

    .hero .intro-excerpt {
        position: relative;
        z-index: 4;
    }

    @media (min-width: 992px) {
        .hero .intro-excerpt {
            max-width: 450px;
        }
    }

    .hero h1 {
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 30px;
    }

    @media (min-width: 1400px) {
        .hero h1 {
            font-size: 54px;
        }
    }

    .hero p {
        color: rgba(255, 255, 255, 0.5);
        margin-botom: 30px;
    }

    .hero .hero-img-wrap {
        position: relative;
    }

        .hero .hero-img-wrap img {
            position: relative;
            top: 0px;
            right: 0px;
            z-index: 2;
            max-width: 780px;
            left: -20px;
        }

    @media (min-width: 768px) {
        .hero .hero-img-wrap img {
            right: 0px;
            left: -100px;
        }
    }

    @media (min-width: 992px) {
        .hero .hero-img-wrap img {
            left: 0px;
            top: -80px;
            position: absolute;
            right: -50px;
        }
    }

    @media (min-width: 1200px) {
        .hero .hero-img-wrap img {
            left: 0px;
            top: -80px;
            right: -100px;
        }
    }

    .hero .hero-img-wrap:after {
        content: "";
        position: absolute;
        width: 255px;
        height: 217px;
        background-image: url("../images/dots-light.svg");
        background-size: contain;
        background-repeat: no-repeat;
        right: -100px;
        top: -0px;
    }

    @media (min-width: 1200px) {
        .hero .hero-img-wrap:after {
            top: -40px;
        }
    }

    .btn {
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 3px;
        color: #ffffff;
        /*background: #2f2f2f;*/
        border-color: #2f2f2f;
    }

        .btn:hover {
            color: #ffffff;
            background: #222222;
            border-color: #222222;
        }

        .btn:active, .btn:focus {
            outline: none !important;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .btn.btn-primary {
            background: #0d6efd;
            border-color: #3b5d50;
        }

            .btn.btn-primary:hover {
                background: #314d43;
                border-color: #314d43;
            }

        .btn.btn-secondary {
            /*color: #2f2f2f;*/
            background: #f9bf29;
            border-color: #f9bf29;
        }

            .btn.btn-secondary:hover {
                background: #f8b810;
                border-color: #f8b810;
            }

        .btn.btn-white-outline {
            background: transparent;
            border-width: 2px;
            border-color: rgba(255, 255, 255, 0.3);
        }

            .btn.btn-white-outline:hover {
                border-color: white;
                color: #ffffff;
            }

    /*.sidebar {
    height: 100vh;
    top: 0;
    left: 0;
    width: 250px;
    padding: 1rem;
    background-color: #ffffff;
}

    .sidebar h5 {
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 1rem;
    }

    .sidebar .form-label {
        font-size: 0.9rem;
        color: #555;
        font-weight: bold;
    }

    .sidebar .form-select {
        font-size: 0.9rem;
        color: #333;
        margin-bottom: 1rem;
       
        box-shadow: none;
    }*/

    .product-container {
        display: flex;
        flex-direction: row;
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .product-images {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .product-images img {
            max-width: 100%;
            border-radius: 10px;
        }

    .thumbnail-container {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
        margin: 0 5px;
        cursor: pointer;
        border-radius: 10px;
        border: 2px solid transparent;
        transition: border-color 0.3s;
    }

        .thumbnail:hover {
            border-color: #007bff;
        }

    .product-details {
        flex: 0.5;
        margin-left: 20px;
    }

        .product-details h1 {
            font-size: 2em;
            margin-bottom: 5px;
        }

        .product-details .price {
            font-size: 1.5em;
            color: #007bff;
            margin-bottom: 10px;
        }

        .product-details .description {
            margin-bottom: 5px;
        }

        .product-details .features {
            list-style-type: none;
            padding: 0;
        }

            .product-details .features li {
                background: url('img/checkmark.png') no-repeat left center;
                padding-left: 25px;
                margin-bottom: 10px;
            }

    .custom-center {
        margin-left: auto;
        margin-right: auto;
    }

    /* Clase para iconos pequeños */
    .icono-pequeno {
        font-size: 1rem !important; /* Tamaño pequeño */
    }

    /* Clase para iconos medianos */
    .icono-mediano {
        font-size: 1.5rem !important; /* Tamaño mediano */
    }

    /* Clase para iconos grandes */
    .icono-grande {
        font-size: 2rem !important; /* Tamaño grande */
    }

    .product-card {
        width: 300px;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        background-color: #fff;
    }

    .availability {
        font-size: 16px;
        font-weight: bold;
    }

    .price-section {
        margin: 20px 0;
    }

    .old-price {
        text-decoration: line-through;
        color: #888;
        display: block;
    }

    .new-price {
        font-size: 28px;
        font-weight: bold;
        color: #333;
    }

    .color-section {
        margin: 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .color-section label {
            margin-bottom: 0;
        }

    .clear-link {
        font-size: 14px;
        color: #007bff;
        text-decoration: none;
    }

    .quantity-section {
        margin: 20px 0;
    }

        .quantity-section label {
            display: block;
        }

    .additional-links {
        text-align: center;
    }

        .additional-links a {
            color: #666;
            text-decoration: none;
            margin: 0 10px;
            font-size: 14px;
        }

            .additional-links a:hover {
                text-decoration: underline;
            }

    .btn-block {
        width: 100%;
        border-radius: 5px;
    }

    .promotion-section {
        border-top: 1px solid #e0e0e0;
        padding-top: 15px;
    }

    .promotion-label {
        background-color: #ff0000;
        color: white;
        padding: 5px 10px;
        display: inline-block;
        margin-bottom: 10px;
    }

    .payment-options {
        border: 1px solid #ddd;
        padding: 15px;
        border-radius: 5px;
    }

        .payment-options p {
            margin: 0;
            padding: 5px 0;
        }

    .cash-payment .cash-price {
        color: #ff0000;
        font-size: 24px;
        font-weight: bold;
        display: block;
    }

    .cash-payment .cash-black {
        color: black !important;
        font-size: 20px !important;
        font-weight: bold !important;
        display: block !important;
    }

    .cash-payment .semanales {
        color: black;
        font-size: 15px;
        font-weight: bold;
        display: block;
    }

    .cash-payment .old-cash-price {
        text-decoration: line-through;
        color: #888;
        font-size: 14px;
    }

    .loan-payment .loan-price {
        color: #ff0000;
        font-size: 24px;
        font-weight: bold;
        display: block;
    }

    .loan-payment .loan-period {
        font-size: 14px;
        color: #888;
    }

    .loan-calculator {
        color: #007bff;
        text-decoration: none;
    }

        .loan-calculator:hover {
            text-decoration: underline;
        }

    .form-container {
        max-width: 800px; /* Anchura máxima del contenedor del formulario */
        margin: 0 auto; /* Centrar el contenedor del formulario en la pantalla */
    }

   

    .letrasPequeñas {
        font-size: 4px;
    }

    .navbar-brand-img {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Aplica los estilos solo al modal con ID #loginId */
    #loginId .modal-dialog {
        max-width: 400px !important; /* Ancho máximo */
        max-height: 800px !important;
        margin: 1.5rem auto !important; /* Margen superior/inferior */
    }
.btn-wsp {
    position: fixed !important;
    width: 60px !important;
    height: 60px !important;
    line-height: 63px !important;
    bottom: 25px !important;
    right: 25px !important;
    background: #25d366 !important;
    color: white !important;
    border-radius: 50px !important;
    text-align: center !important;
    font-size: 25px !important;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3) !important;
    z-index: 100 !important;
    transition: all 300ms ease !important;
}

    .btn-wsp:hover {
        background: #20ba5a !important;
    }


    .btn-wsp i {
        color: inherit !important;
    }
@media only screen and (min-width:320px) and (max-width:768px) {
    .btn-wsp {
        width: 55px !important;
        height: 55px !important;
        line-height: 55px;
       
    }
        .btn-wsp i {
            font-size: 30px !important; /* Ajusta este valor según el tamaño que desees para móviles */
        }
}