.btn-shine {
    position: relative;
    overflow: hidden !important;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -10px;
    bottom: -10px;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine-sweep 3s infinite;
}

@keyframes shine-sweep {
    0% {
        left: -200%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-shine:hover::after {
    animation: shine-sweep-hover 1s infinite;
}

@keyframes shine-sweep-hover {
    0% {
        left: -200%;
    }

    100% {
        left: 200%;
    }
}

.img-lobo {
    width: 110%;
    max-width: 550px;
    height: auto;
    max-height: 750px;
    display: inline-block;
    margin: 0;
    z-index: 1;
    position: relative;
    vertical-align: bottom;
}

@media (min-width: 992px) {
    .img-lobo {
        max-width: 800px;
    }
}

.btn-crece {
    transition: all 0.3s ease-in-out !important;
}

.btn-crece:hover {
    transform: scale(1.08);
    box-shadow: 0px 10px 25px rgba(31, 193, 11, 0.5) !important;
}

.btn-soporte-flotante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white !important;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-soporte-flotante .icon {
    font-size: 28px;
    line-height: 1;
}

.btn-soporte-flotante .texto-soporte {
    font-weight: 700;
    font-size: 15px;
}

.btn-soporte-flotante:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    background-color: #1ebe57;
}

@media (max-width: 767px) {
    .btn-soporte-flotante {
        padding: 15px;
        bottom: 20px;
        right: 20px;
    }

    .btn-soporte-flotante .icon {
        font-size: 32px;
    }
}

.tarjeta-latido {
    animation: latido-tarjeta 3s infinite ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes latido-tarjeta {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 30px rgba(31, 193, 11, 0.2);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}


:root {
    --esac-green: #00d632;
    --esac-dark: #0f212d;
    --esac-darker: #001C2A;
    --esac-light-bg: #eef6f5;
    --esac-blue-bg: #E0FEF8;
}

html {
    overflow-x: hidden;
    width: 100vw;
}

body.landing-page,
body.landing-page h1,
body.landing-page h2,
body.landing-page h3,
body.landing-page h4,
body.landing-page h5,
body.landing-page h6,
body.landing-page .display-1,
body.landing-page .display-2,
body.landing-page .display-3,
body.landing-page .display-4,
body.landing-page .display-5,
body.landing-page .display-6,
body.landing-page .lead,
body.landing-page .btn,
body.landing-page p,
body.landing-page a,
body.landing-page span,
body.landing-page li {
    font-family: 'Inter', sans-serif !important;
}

body.landing-page {
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    background-color: var(--esac-dark);
    background-image: url('../../images/resources/landingfondo.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.nk-app-root,
.nk-main,
.nk-wrap {
    overflow-x: hidden;
    width: 100%;
}

.text-esac-green {
    color: var(--esac-green) !important;
}

.btn-esac-green {
    background-color: var(--esac-green);
    color: #000;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.btn-esac-green:hover {
    background-color: #00b52a;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 214, 50, 0.2);
}

.btn-outline-esac {
    border: 2px solid var(--esac-green);
    color: var(--esac-green);
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-esac:hover {
    background-color: rgba(0, 214, 50, 0.1);
    color: var(--esac-green);
}

.section-dark {
    background-color: rgba(18, 40, 54, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
}

.nk-content>section:first-child,
.nk-content>section:last-child {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: blur(2px);
    background-color: rgba(18, 40, 54, 0.7);
}

.section-light {
    background-color: var(--esac-light-bg);
    color: #11202D;
}

.section-blue {
    background-color: var(--esac-blue-bg);
    color: #11202D;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.glass-card {
    background: rgb(183 234 255 / 5%);
    border: 1px solid rgb(255 255 255 / 28%);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.527);
    transform: translateY(-10px);
}

.pricing-card {
    background-color: #152b39;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.esac-accordion .accordion-item {
    background-color: #152b39;
    border: 1px solid #007DB9;
    border-radius: 8px !important;
    margin-bottom: 1rem;
}

.esac-accordion .accordion-button {
    background-color: transparent;
    color: white;
    font-weight: 600;
    box-shadow: none;
    padding: 1.25rem 1.5rem;
}

.esac-accordion .accordion-button::after {
    display: none;
}

.esac-accordion .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: transparent;
    box-shadow: none;
}

.esac-accordion .accordion-body {
    color: #ffffff;
    padding-top: 0;
    padding-left: 2.5rem;
    padding-bottom: 1.5rem;
}

.nk-header.is-dark.bg-transparent {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050 !important;
    background-color: rgba(19, 48, 62, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease-in-out;
}

.header-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 1.2rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.header-links a:hover {
    color: white;
}

.edu-tabs .nav-link {
    background-color: rgba(21, 43, 57, 0.08);
    color: #475569;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: none;
}

.icono-wsp {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    display: flex;
}

.edu-tabs .nav-link.active .icono-wsp,
.edu-tabs .nav-link:hover .icono-wsp {
    width: 22px;
    opacity: 1;
}

#v-pills-tabContent {
    min-height: 520px;
    display: flex;
    align-items: center;
    width: 100%;
}

#v-pills-tabContent .tab-pane {
    width: 100%;
}

@media (max-width: 991px) {
    #v-pills-tabContent {
        min-height: 300px;
    }
}

.edu-tabs .nav-link.active {
    background-color: #152b39;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dash-carousel-container {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.dash-item {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 65%;
    cursor: pointer;
}

.dash-item.left {
    left: 0;
    z-index: 1;
    transform: scale(0.85) translateX(-20%);
    opacity: 0.6;
}

.dash-item.center {
    left: 50%;
    transform: translateX(-50%) scale(1.15);
    z-index: 3;
    opacity: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0);
}

.dash-item.right {
    left: auto;
    right: 0;
    z-index: 1;
    transform: scale(0.85) translateX(20%);
    opacity: 0.6;
}

.dash-controls {
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.dash-btn {
    pointer-events: auto;
    background: #e2e8f000;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px #e2e8f000;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f000;
    text-decoration: none !important;
}

.dash-btn:hover {
    background: #13303E;
    transform: scale(1.1);
    color: #FFFFFF !important;
}

.dash-dots-container {
    bottom: 0;
}

.dash-dot {
    width: 10px;
    height: 10px;
    background-color: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dash-dot.active {
    background-color: #475569;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .dash-carousel-container {
        height: 280px;
    }

    .dash-item {
        width: 85%;
    }

    .dash-item.left {
        transform: scale(0.8) translateX(-15%);
    }

    .dash-item.right {
        transform: scale(0.8) translateX(15%);
    }

    .dash-btn {
        width: 35px;
        height: 35px;
    }

    .dash-dots-container {
        bottom: -20px;
    }
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.browser-mockup {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.browser-mockupcarrusel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.browser-header {
    background: #40C1FF29;
    padding: 10px 15px;
    display: flex;
    gap: 6px;
}

.browser-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #13303E;
}

.browser-carrusel {
    background: #163D506B;
    padding: 10px 15px;
    display: flex;
    gap: 6px;
}

.browser-carrusel .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #13303E;
}

.ciclo-toggle+label {
    background: transparent;
    color: #fff;
}

.ciclo-toggle:checked+label {
    background-color: var(--esac-green) !important;
    color: #000 !important;
}

.pt-6 {
    padding-top: 5rem !important;
}

#menu-movil-desplegable {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--esac-darker, #001C2A);
    padding: 1.5rem;
    z-index: 1050;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#menu-movil-desplegable.activo {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation: deslizarMenu 0.3s ease-out forwards;
}

@keyframes deslizarMenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#contenedor-planes-landing {
    min-height: 450px;
}

.efecto-celular {
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    will-change: transform;
}

.efecto-celular:hover {
    transform: translateY(-20px);
    filter: drop-shadow(0px 15px 20px rgba(0, 0, 0, 0.26));
}

#como-funciona .glass-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

#v-pills-tips .dash-controls {
    width: calc(100% + 160px) !important;
    left: -80px;
}

@media (max-width: 768px) {
    #v-pills-tips .dash-controls {
        width: calc(100% + 20px) !important;
        left: -10px;
    }
}

.controles-dashboard {
    width: calc(100% + 280px) !important;
    left: -140px;
    padding: 0 !important;
}

@media (max-width: 992px) {
    .controles-dashboard {
        width: calc(100% + 40px) !important;
        left: -20px;
    }
}

.nk-header {
    position: sticky !important;
    top: 0;
    z-index: 1050 !important;
}