/********** Template CSS **********/
:root {
    --primary: #263c8e;
    --secondary: #F7FAFF;
    --light: #F7FAFF;
    --dark: #1D1D27;
    --blueEnvio: #263c8e;
}


/*** 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;
}

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


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


@keyframes bounce {
    0% {
        transform: translateY(5);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(5);
    }
}

.btn.jumping {
    animation: bounce 1s infinite;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.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;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: var(--blueEnvio) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--blueEnvio) !important;
    font-weight: 800;
}

.navbar-light .navbar-brand h1 {
    color: #263c8f;
}

.navbar-light .navbar-brand img {
    max-height: 90px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 80px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #000000;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        background: #FFFFFF;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--blueEnvio);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Hero Header ***/
.hero-header {
    background:
        url(../img/bg-dot.png),
        url(../img/bg-dot.png),
        url(../img/bg-tree.png),
        url(../img/bg-bottom-hero2.png);
    background-position:
        10px 10px,
        bottom 190px right 10px,
        left 45% bottom -1px,
        center bottom -1px;
    background-repeat: no-repeat;
}
.hero-header-sm {
    min-height: 200px;
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 4rem;
}
.hero-header-sm > .container {
    width: 100%;
}
@media (min-width: 992px) {
    /* El wrapper del navbar es position:absolute, por eso height=0.
       Le damos altura real para que el contenido de sección arranque debajo del nav. */
    .nav-wrapper {
        min-height: 92px;
    }
    /* El hero del home está diseñado para quedar DETRÁS del navbar: lo jalamos de vuelta. */
    .hero-header:not(.hero-header-sm) {
        margin-top: -92px;
    }
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** Service ***/
.service-item {
    position: relative;
    height: 350px;
    padding: 30px 25px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/icon-shape-primary.png) center center no-repeat;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--primary);
    background: url(../img/icon-shape-white.png);
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--light);
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #DDDDDD;
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Testimonial ***/
.newsletter,
.testimonial {
    background:
        url(../img/bg-top.png),
        url(../img/bg-bottom.png);
    background-position:
        left top,
        right bottom;
    background-repeat: no-repeat;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--light) !important;
    border-color: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #888888;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}


/*** Team ***/
.team-item {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.team-item::after {
    position: absolute;
    content: "";
    top: 3rem;
    right: 3rem;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item small {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover small {
    color: var(--light);
}


/*** Project Portfolio ***/
#portfolio-flters .btn {
    position: relative;
    display: inline-block;
    margin: 10px 4px 0 4px;
    transition: .5s;
}

#portfolio-flters .btn::after {
    position: absolute;
    content: "";
    right: -1px;
    bottom: -1px;
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 50px solid #FFFFFF;
}

#portfolio-flters .btn:hover,
#portfolio-flters .btn.active {
    color: var(--light);
    background: var(--primary);
}

.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}
.tachado-text{
    text-decoration: line-through;
}
.cursor-pointer{
	cursor:pointer;
}
/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

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

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

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

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

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

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.down-icon {
    position: absolute;
    right: 15px;
    top: 37%;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.d-flexCenter {
    justify-content: center;
}

.form-control:disabled,
.form-control:read-only {
    background-color: transparent !important;
    opacity: 1
}

.formatoCotizacion {
    color: #000000;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
    padding: 10;
    text-align: left;
}

.background-gris{
    background-color: #E4E3EF !important;
}

.divCot {
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
    text-align: left;
}

.div-block-day-general {
    display: flex;
}

.div-block-day {
    width: 14.28%;
    margin-right: 2px;
}

.icon-contact {
    font-size: 32px;
    color: #f36d30 !important;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #f36d30b0 !important;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.card-contact {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    display: grid;
    align-items: center;
}

.div-oculto {
    display: none;
}

.delete-pack {
    position: absolute;
    right: 13px;
    top: 19px;
    cursor: pointer;
}

@media(max-width:512px) {
    .div-block-day {
        width: 31.33% !important;
        display: inline-block !important
    }

    .div-block-day-general {
        display: block !important;
    }
}


.type-of-help-data {
    display: flex;
    flex-direction: column;
}

.type-of-help-title {
    text-align: center;
    margin: 35px 0px 20px;
    line-height: 15px;
}

.type-of-help-title h1 {
    font-size: 1.75em;
    /* margin-bottom: 0px; */
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}

.type-of-help-title h2 {
    font-size: 1em;
    /* font-family: ; */
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    color: #888;
}

.type-of-help-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 90%;
    margin: auto;
    text-align: center;
    grid-gap: 20px;
}

.type-of-help-cards .card {
    width: 90%;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #f36d30 !important;
    margin: 30px 0px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.type-of-help-cards .card:hover {
    border: 1px solid #f36d30 !important;
    background-color: #f36d30 !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.type-of-help-cards .card img {
    width: 70px;
}

.type-of-help-cards .card span {
    font-size: 15px;
    color: #f36d30;
    font-weight: 700;
}

.type-of-help-cards .card:hover span {
    font-size: 15px;
    color: white;
    font-weight: 700;
}

/*Responsive Code*/
@media screen and (max-width: 1200px) {

    .type-of-help-cards {
        grid-template-columns: 1fr 1fr;
        width: 90%;
        gap: 40px;
    }

    .type-of-help-cards .card {
        width: 100%;
        margin: 0;
        /* height: auto; */
    }
}

@media screen and (max-width: 700px) {
    .type-of-help-cards {
        grid-template-columns: 1fr;
        width: 90%;
        gap: 60px;
    }

    .type-of-help-cards .card {
        width: 100%;
        margin: 0;
        /* height: auto; */
    }

    .type-of-help-cards {
        gap: 20px;
    }
}

/* for fields  */
@media screen and (max-width: 1000px) {

    .type-of-help-title h1 {
        font-size: 30px;
    }

    .type-of-help-title h2 {
        font-size: 14px;
    }
}

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

    .type-of-help-title h1 {
        font-size: 24px;
    }

    .type-of-help-title h2 {
        font-size: 12px;
    }
    .table-screens-desktop{display: none!important;}
    .table-screens-movil{display: inline-table !important;}
}

@media screen and (max-width:450px) {
    .type-of-help-title h1 {
        font-size: 18px;
        letter-spacing: 0px;
    }

    .type-of-help-title h2 {
        font-size: 12px;
    }
}

.drop-zone {
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    flex: 1 1 auto;
    -webkit-box-pack: center;
    justify-content: center;
    z-index: 1;
}

.descript-line p{
    margin-bottom: 10px;
    color: black;
    font-family: "MockFlowFont";
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.close-div-icon{
    right: 30px;
    top: 50%;
    transform: translate(10px, -50%);
}

.style-label-1{
    background: #edecec;
    padding: 10px;
    width: 100%;
    font-size: 14px;
}

.icon-whatsapp {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #25d366;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 112px;
    right: 38px;
    z-index: 9999999;
}
.pulse {
    animation: pulse-animation 2s infinite;
}
.ul-info-cotiza{
    list-style: none;
    padding: initial;
}
.ul-info-cotiza li{
    padding: 5px 0px;
}
.table-screens-desktop{display: inline-table;}
.table-screens-movil{display: none;}
.form-control:disabled, .inp-readonly{
    background-color: #f1f1f1 !important;
}
.div-contact-height{
    height: 230px;
}
.div-block-new-pack .card-header a{
    color:white!important;
}
.carousel-indicators [data-bs-target] {
    background-color: #f36d30 !important;
}
.carousel-indicators {
    bottom: -50px;
}
.carousel-control-prev, .carousel-control-next{
    color: #f36d30;
}
.carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus {
    color: #263c8f;
}
.card-header {
    background-color: #263c8f;
    color: white;
}
.card-footer {
    background-color: #263c8f;
    color:white;
}
.icon-house-color{
    color:#f36d30;
    cursor: pointer;
}
.icon-house-color:hover{
    color:#263c8f;
}
.paragraph-card{
    width: 80%;
    margin: auto;
}
.cards-slider-address{
    width: 70%;
    margin: auto;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link{
    background: #f36d30;
    color: white;
    font-weight: 500;
}
.nav-tabs .nav-link{
    color: #263c8f;
}
#my-account .nav-pills{
   width: 25%; 
}
#my-account .tab-content{
    width: 75%; 
}
.center-div-block{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
@keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.8);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

@media(max-width:512px) {
    #my-account .nav-pills{
        width: 100%; 
     }
     #my-account .tab-content{
         width: 100%; 
     }
    .center-div-block {
        position: relative;
        top: 0%;
        left: 0%;
        transform: translate(0%, 0%);
        width: 100%;
    }
    .page-content {
        padding: 12px!important;
    }
}


/* ═══════════════════════════════════════════════
   PROMO POPUP — UI v2
   ═══════════════════════════════════════════════ */

.popup-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 15, 40, 0.72);
    backdrop-filter: blur(5px);
    display: none; justify-content: center; align-items: flex-start;
    padding: 2rem 1rem;
    overflow-y: auto;
    z-index: 1050;
    opacity: 0; transition: opacity .4s ease;
}
.popup-overlay.active { display: flex; opacity: 1; }

.popup-content {
    background: #fff;
    border-radius: 22px;
    max-width: 500px; width: 100%;
    margin: auto;
    position: relative; overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,.38), 0 0 0 1px rgba(255,255,255,.08);
    transform: scale(.85) translateY(28px);
    opacity: 0;
    transition: transform .5s cubic-bezier(.175,.885,.32,1.275), opacity .4s ease;
}
.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Three.js canvas bg */
.promo-visual {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0; opacity: .12; pointer-events: none;
}

/* ── Header ────────────────────────────────── */
.promo-header {
    position: relative; z-index: 1;
    background: linear-gradient(135deg, #1a2a6c 0%, #263c8e 50%, #c94b1a 100%);
    padding: 1.35rem 3.5rem 1.1rem 1.5rem;
    text-align: left;
}
.promo-header::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0; height: 18px;
    background: #fff;
    clip-path: ellipse(56% 100% at 50% 100%);
}
.promo-header-eyebrow {
    display: inline-flex; align-items: center; gap: .35rem;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.28);
    border-radius: 50px; padding: .18rem .75rem;
    font-size: .65rem; font-weight: 700; color: #fff;
    letter-spacing: .07em; text-transform: uppercase;
    margin-bottom: .5rem;
}
.promo-header-eyebrow i { font-size: .6rem; }
.promo-header-title {
    font-size: 1.55rem; font-weight: 800; color: #fff;
    line-height: 1.15; margin: 0 0 .25rem;
}
.promo-header-sub {
    font-size: .78rem; color: rgba(255,255,255,.72);
    margin: 0; line-height: 1.45;
}

/* Close button */
.promo-close-btn {
    position: absolute; top: .85rem; right: .85rem;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
    color: #fff; font-size: .82rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .25s; z-index: 2;
    line-height: 1;
}
.promo-close-btn:hover { background: rgba(255,255,255,.32); transform: rotate(90deg); }

/* ── Image ─────────────────────────────────── */
.promo-img-wrap {
    position: relative; z-index: 1;
    line-height: 0; margin-top: -2px;
}
.promo-image {
    width: 100%; display: block;
    height: auto;
}

/* ── Footer / CTA ──────────────────────────── */
.promo-footer {
    position: relative; z-index: 1;
    padding: 1rem 1.5rem 1.35rem;
    display: flex; flex-direction: column; align-items: center; gap: .55rem;
    background: #fff;
}
.promo-cta-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
    width: 100%; padding: .78rem 1.5rem;
    background: linear-gradient(90deg, #f36c30 0%, #d95a20 100%);
    color: #fff; font-weight: 700; font-size: .88rem;
    border-radius: 50px; border: none; cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(243,108,48,.38);
    transition: transform .15s, box-shadow .15s, color .15s;
}
.promo-cta-btn:hover {
    color: #fff; transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243,108,48,.48);
}
.promo-skip {
    background: none; border: none; cursor: pointer;
    font-size: .75rem; color: #9ca3af; padding: .1rem;
    transition: color .15s; text-decoration: underline; text-underline-offset: 3px;
}
.promo-skip:hover { color: #4b5563; }

/* ── Animaciones ───────────────────────────── */
@keyframes bounceIn {
    0%   { transform: scale(.3) translateY(28px); opacity: 0; }
    60%  { transform: scale(1.04) translateY(-4px); opacity: 1; }
    80%  { transform: scale(.97) translateY(2px); }
    100% { transform: scale(1) translateY(0); }
}

/* ── Mobile ────────────────────────────────── */
@media (max-width: 540px) {
    .popup-overlay { padding: 1rem .5rem; }
    .popup-content { border-radius: 18px; }
    .promo-header { padding: 1.1rem 3rem .95rem 1.1rem; }
    .promo-header-title { font-size: 1.3rem; }
    .promo-footer { padding: .85rem 1rem 1.1rem; }
}