.footer-link,
.mega-item,
.whatsapp-btn,
a {
    text-decoration: none
}

:root {
    --primary: #0b6bcb;
    --primary-rgb: 11, 107, 203;
    --primary-dark: #0952a5;
    --text-main: #0d141c;
    --text-muted: #334e68;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #334155;
    --slate-500: #586980;
    --slate-400: #cbd5e1;
    --slate-300: #e2e8f0;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9
}

body {
    font-family: Inter, sans-serif;
    color: var(--text-main);
    background-color: #fff;
    -webkit-font-smoothing: antialiased
}

.font-display,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif
}

.dropdown-menu-mega,
.dropdown-menu-mega h6,
.dropdown-menu-mega p,
.nav-link-custom {
    font-family: Inter, sans-serif !important
}

.container-xl-custom {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%
}

@media (min-width:640px) {
    .container-xl-custom {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
}

.hover-text-primary:hover,
.nav-link-hover:hover,
.text-primary-custom {
    color: var(--primary) !important
}

.bg-primary-custom {
    background-color: var(--primary) !important
}

.text-slate-600 {
    color: var(--slate-600) !important
}

.text-slate-500 {
    color: var(--slate-500) !important
}

.text-slate-300 {
    color: var(--slate-300) !important
}

.header-fixed-height {
    height: 80px
}

.header-blur {
    background-color: rgba(255, 255, 255, .95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #e7edf3
}

.nav-link-hover {
    color: var(--slate-600);
    font-weight: 500;
    transition: color .15s ease-in-out
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    font-weight: 700
}

.btn-hover-effect {
    transition: .3s
}

.btn-hover-effect:hover {
    background-color: #2563eb !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, .3)
}

.shadow-lg-blue {
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, .2), 0 4px 6px -2px rgba(59, 130, 246, .1)
}

.hero-bg {
    background: linear-gradient(to bottom, #fff, #f8fafc)
}

.animate-ping {
    animation: 1s cubic-bezier(0, 0, .2, 1) infinite ping
}

@keyframes ping {

    100%,
    75% {
        transform: scale(2);
        opacity: 0
    }
}

.group-hover-zoom {
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer
}

.group-hover-zoom img {
    transition: transform .7s cubic-bezier(.4, 0, .2, 1);
    transform-origin: center
}

.group-hover-zoom:hover img {
    transform: scale(1.05)
}

.interactive-card {
    transition: .3s;
    border: 1px solid var(--slate-100)
}

.icon-box-transition {
    background-color: #eff6ff;
    color: var(--primary);
    transition: background-color .3s, color .3s
}

.watermark-transition {
    opacity: .05;
    transition: opacity .3s
}

.interactive-card:hover {
    border-color: #bfdbfe
}

.interactive-card:hover .icon-box-transition {
    background-color: var(--primary);
    color: #fff
}

.interactive-card:hover .watermark-transition {
    opacity: .1 !important
}

.bg-search-section {
    background-color: rgba(14, 117, 221, .05)
}

.search-container-shadow {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
    border: 1px solid var(--slate-200)
}

.search-input {
    border: none;
    background: 0 0;
    padding-top: .75rem;
    padding-bottom: .75rem
}

.search-input:focus {
    outline: 0;
    box-shadow: none
}

.card-dark-gradient {
    background: linear-gradient(to bottom, var(--slate-800), var(--slate-900));
    border: 1px solid var(--slate-700)
}

.watermark-transition-dark {
    opacity: .1;
    transition: opacity .3s
}

.card-dark-gradient:hover .watermark-transition-dark {
    opacity: .2 !important
}

.card-pop-out {
    transition: .3s;
    z-index: 10
}

.hover-shadow-glow:hover {
    box-shadow: 0 25px 50px -12px rgba(14, 117, 221, .05);
    border-color: rgba(14, 117, 221, .4)
}

.bg-gradient-slate {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9)
}

.bg-gradient-blue-light {
    background: linear-gradient(135deg, #eff6ff, #fff)
}

.card-pricing-hover {
    transition: .3s;
    border: 1px solid var(--slate-200)
}

.card-pricing-hover:hover {
    box-shadow: 0 10px 15px -3px rgba(14, 117, 221, .2);
    border-color: rgba(14, 117, 221, .3)
}

.card-pricing-pop {
    transition: .3s;
    border: 1px solid #bfdbfe
}

.card-pricing-pop:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1);
    z-index: 5
}

.hover-translate-x:hover,
.mega-item:hover {
    transform: translateX(5px)
}

.offer-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-bottom-left-radius: .5rem;
    z-index: 10
}

.bg-premium-dark {
    background: linear-gradient(135deg, #111827, #1f2937, #0f172a);
    color: #fff
}

.bg-carbon-pattern {
    background-image: url('../img/patterns/carbon-fibre.png');
    opacity: .1
}

.methodology-bg-shape {
    background: linear-gradient(to bottom right, #eff6ff, transparent);
    border-bottom-left-radius: 9999px;
    pointer-events: none
}

.step-line {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 66%;
    height: 2px;
    background: linear-gradient(90deg, #bfdbfe, #60a5fa, #bfdbfe);
    border-top: 1px dashed #cbd5e1;
    z-index: 0
}

.step-icon-circle {
    width: 6rem;
    height: 6rem;
    background: #fff;
    border: 4px solid #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    transition: border-color .3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1)
}

.step-item:hover .step-icon-circle {
    border-color: var(--primary)
}

.step-number-badge {
    position: absolute;
    top: -.5rem;
    right: -.5rem;
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .875rem;
    border: 2px solid #fff
}

.footer-dark,
.resource-card {
    position: relative;
    overflow: hidden
}

.bg-background-alt,
.card-partner-hover {
    background-color: #f8fafc
}

.card-partner-hover {
    transition: .5s;
    overflow: hidden;
    border: 1px solid var(--slate-100)
}

.card-partner-hover:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25)
}

.partner-bg-icon {
    opacity: .1;
    transition: opacity .3s, transform .3s
}

.card-partner-hover:hover .partner-bg-icon {
    opacity: .2;
    transform: scale(1.1)
}

.bg-gradient-hardware {
    background: linear-gradient(135deg, #0f172a, #1e293b, #000)
}

.hardware-stat-box {
    background-color: rgba(255, 255, 255, .05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: background-color .2s
}

.hardware-stat-box:hover {
    background-color: rgba(255, 255, 255, .1)
}

.grid-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E")
}

.resource-card {
    border-radius: 1.5rem
}

.btn-outline-custom {
    color: #fff;
    border: 1px solid var(--slate-600);
    transition: .3s
}

.footer-link,
.hover-text-white {
    transition: color .2s
}

.btn-outline-custom:hover {
    border-color: #fff;
    background-color: #fff;
    color: #000
}

@keyframes pulse-slow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(14, 117, 221, .7)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(14, 117, 221, 0)
    }
}

.animate-pulse-btn {
    animation: 2s infinite pulse-slow
}

.footer-dark {
    background-color: #0b1120;
    color: #cbd5e1;
    border-top: 1px solid #1e293b
}

.footer-watermark-circle {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(14, 117, 221, .03);
    border: 1px solid rgba(14, 117, 221, .05);
    pointer-events: none;
    z-index: 0
}

.footer-watermark-dot {
    position: absolute;
    bottom: 5%;
    left: 60%;
    width: 1.75rem;
    height: 1.75rem;
    background-color: #64748b;
    opacity: .05;
    border-radius: 50%
}

.footer-link {
    color: #94a3b8
}

.footer-link:hover,
.step-item.active .step-label {
    color: var(--primary)
}

.hover-text-white:hover {
    color: #fff !important
}

.footer-input {
    background-color: #1e293b;
    border: 1px solid #334155;
    color: #fff
}

.footer-input:focus {
    border-color: var(--primary);
    box-shadow: none
}

.bg-glass-dark {
    background-color: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1)
}

.notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 1rem;
    height: 1rem;
    background-color: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%
}

.ambient-glow-blue,
.ambient-glow-orange,
.ambient-glow-red {
    width: 600px;
    height: 600px;
    z-index: 0;
    pointer-events: none
}

.mask-gradient-left {
    mask-image: linear-gradient(to right, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%)
}

@media (min-width:1024px) {
    .container-xl-custom {
        padding-left: 2rem;
        padding-right: 2rem
    }

    .lg-py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem
    }
}

.ambient-glow-blue {
    background: radial-gradient(circle, rgba(14, 117, 221, .12) 0, rgba(255, 255, 255, 0) 70%)
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

.animate-float {
    animation: 6s ease-in-out infinite float-y;
    display: inline-block
}

.ambient-glow-orange {
    background: radial-gradient(circle, rgba(245, 158, 11, .12) 0, rgba(255, 255, 255, 0) 70%)
}

.ambient-glow-red {
    background: radial-gradient(circle, rgba(220, 38, 38, .12) 0, rgba(255, 255, 255, 0) 70%)
}

.nav-link-parent:hover::after,
.whatsapp-container:hover .whatsapp-close {
    opacity: 1
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px)
    }

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

html {
    scrollbar-gutter: stable
}

.dropdown-toggle::after {
    display: inline-block !important;
    color: var(--primary, #0e75dd) !important;
    margin-left: .5em;
    vertical-align: .255em
}

.dropdown-menu-mega {
    border-top: none !important;
    border: 1px solid rgba(226, 232, 240, .8);
    border-radius: 1rem;
    box-shadow: 0 20px 40px -5px rgba(15, 23, 42, .1);
    padding: 2rem;
    background: #fff;
    margin-top: 1rem !important
}

.mega-icon,
.mega-item {
    display: flex;
    border-radius: .75rem
}

.mega-item {
    align-items: start;
    gap: 1.25rem;
    padding: 1rem;
    transition: transform .2s, background .2s
}

.mega-item:hover {
    background-color: var(--slate-50, #f8fafc)
}

.mega-icon {
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #eff6ff;
    color: var(--primary, #0e75dd)
}

.feature-item,
.nav-link-custom {
    align-items: center;
    display: flex
}

.mega-icon .material-symbols-outlined {
    font-size: 28px
}

.mega-icon.icon-purple {
    background-color: #e0e7ff;
    color: #6366f1
}

.mega-icon.icon-green {
    background-color: #dcfce7;
    color: #16a34a
}

.mega-icon.icon-orange {
    background-color: #ffedd5;
    color: #f97316
}

.mega-content h6 {
    margin: 0 0 .25rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--slate-900, #0f172a);
    font-size: .95rem
}

.mega-content p {
    margin: 0;
    font-size: .85rem;
    color: var(--slate-500, #64748b);
    line-height: 1.4
}

.nav-link-custom {
    font-weight: 600;
    color: #334155;
    padding: .5rem .75rem;
    border-radius: .5rem;
    transition: color .2s;
    font-size: .95rem;
    height: 100%
}

.nav-item.dropdown:hover .nav-link-custom,
.nav-link-custom:hover {
    color: var(--primary, #0e75dd);
    background-color: rgba(14, 117, 221, .05)
}

.nav-link-parent::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    border-top-color: #0d6efd !important;
    opacity: 1 !important
}

.nav-item.dropdown:hover .nav-link-parent::after {
    transform: rotate(180deg);
    transition: transform .2s
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.blinking-dot {
    animation: 2s ease-in-out infinite blink
}

.blink {
    animation: 1.5s linear infinite blinker
}

@keyframes blinker {
    50% {
        opacity: .3
    }
}

.hover-translate-x,
.tld-row {
    transition: transform .2s, box-shadow .2s
}

.ring-2-primary {
    box-shadow: 0 0 0 2px var(--primary), 0 10px 15px -3px rgba(0, 0, 0, .1)
}

.bg-green-100 {
    background-color: #dcfce7 !important
}

.bg-blue-50 {
    background-color: #eff6ff !important
}

.bg-slate-950 {
    background-color: #020617 !important
}

.text-emerald-500 {
    color: #10b981 !important
}

.text-emerald-600 {
    color: #059669 !important
}

.text-emerald-700 {
    color: #047857 !important
}

.bg-emerald-400 {
    background-color: #34d399 !important
}

.bg-emerald-500 {
    background-color: #10b981 !important
}

.btn-emerald {
    background-color: #10b981;
    border-color: #10b981;
    color: #fff
}

.btn-emerald:hover {
    background-color: #059669;
    border-color: #059669;
    color: #fff
}

.shadow-emerald {
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, .4)
}

@keyframes scan {
    0% {
        top: 10%;
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        top: 90%;
        opacity: 0
    }
}

.tld-row:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .1) !important;
    z-index: 5;
    position: relative
}

.hover-lift:hover,
.hover-translate-y-n2:hover {
    transform: translateY(-5px)
}

.sidebar-brand::after,
.sidebar-brand::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    content: '';
    left: 0
}

.hover-lift {
    transition: transform .3s, box-shadow .3s
}

.hover-lift:hover {
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, .1) !important
}

.hover-bg-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important
}

.bg-slate-700,
.hover-bg-slate-700:hover {
    background-color: #334155 !important
}

.hover-border-dark:hover {
    border-color: #0f172a !important;
    color: #0f172a !important
}

.hover-translate-y-n2 {
    transition: transform .3s
}

.focus-ring:focus {
    box-shadow: 0 0 0 4px rgba(14, 117, 221, .1);
    border-color: var(--primary)
}

.text-indigo-400 {
    color: #818cf8 !important
}

.text-indigo-500 {
    color: #6366f1 !important
}

.text-indigo-600 {
    color: #4f46e5 !important
}

.text-indigo-700 {
    color: #4338ca !important
}

.bg-indigo-50 {
    background-color: #eef2ff !important
}

.bg-indigo-500 {
    background-color: #6366f1 !important
}

.bg-indigo-600 {
    background-color: #4f46e5 !important
}

.border-indigo-100 {
    border-color: #e0e7ff !important
}

.border-indigo-200 {
    border-color: #c7d2fe !important
}

.border-indigo-300 {
    border-color: #a5b4fc !important
}

.btn-indigo {
    background-color: #4f46e5;
    border-color: #4f46e5;
    color: #fff
}

.btn-indigo:hover {
    background-color: #4338ca;
    border-color: #4338ca;
    color: #fff
}

.btn-outline-indigo {
    border: 2px solid #4f46e5;
    color: #4f46e5;
    background: 0 0
}

.btn-outline-indigo:hover {
    background: #4f46e5;
    color: #fff
}

.shadow-indigo,
.shadow-lg-indigo {
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, .4)
}

.btn-isredes-primary {
    background-color: #0f172a;
    color: #fff;
    border: none;
    transition: .3s
}

.btn-isredes-primary:hover {
    background-color: #4f46e5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, .4)
}

.shadow-premium {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .03), 0 2px 4px rgba(0, 0, 0, .05), 0 12px 24px rgba(0, 0, 0, .05)
}

.card:hover .shadow-premium {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .03), 0 4px 8px rgba(0, 0, 0, .05), 0 20px 40px rgba(0, 0, 0, .1)
}

.hover-translate-y:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04) !important
}

.hover-up-small {
    transition: transform .2s
}

.hover-up-small:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1 !important
}

.transform-y-1 {
    animation: 6s ease-in-out infinite float
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

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

.blinking-cursor {
    animation: 1s step-end infinite blink-cursor
}

@keyframes blink-cursor {
    50% {
        opacity: 0
    }
}

.bg-slate-900 {
    background-color: #0f172a !important
}

.text-amber {
    color: #f59e0b !important
}

.text-amber-dark {
    color: #d97706 !important
}

.bg-amber {
    background-color: #f59e0b !important
}

.bg-amber-100 {
    background-color: #fef3c7 !important
}

.border-amber {
    border-color: #f59e0b !important
}

.border-amber-200 {
    border-color: #fde68a !important
}

.border-amber-300 {
    border-color: #fcd34d !important
}

.btn-amber {
    background-color: #f59e0b;
    border-color: #f59e0b;
    color: #fff
}

.btn-amber:hover {
    background-color: #d97706;
    border-color: #d97706;
    color: #fff
}

.shadow-amber {
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, .4)
}

.hover-border-amber:hover {
    border-color: #f59e0b !important;
    color: #f59e0b !important
}

.bg-slate-800,
.hover-bg-slate-800:hover {
    background-color: #1e293b !important
}

.text-slate-900 {
    color: #0f172a !important
}

.border-slate-700 {
    border-color: #334155 !important
}

.btn-slate-900 {
    background-color: #0f172a;
    border-color: #0f172a;
    color: #fff
}

.btn-slate-900:hover {
    background-color: #1e293b;
    border-color: #1e293b;
    color: #fff
}

.btn-outline-slate-900 {
    color: #0f172a;
    border: 2px solid #0f172a;
    background: 0 0
}

.btn-outline-slate-900:hover {
    background: #0f172a;
    color: #fff
}

.hover-bg-slate-900:hover {
    background-color: #0f172a !important;
    color: #fff !important
}

.btn-transparent {
    background: 0 0
}

.shadow-sm-hover:hover {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important
}

.x-small {
    font-size: .8rem;
    line-height: 1.2
}

.text-danger {
    color: #dc2626 !important
}

.bg-danger {
    background-color: #dc2626 !important
}

.btn-danger {
    background-color: #dc2626;
    border-color: #dc2626;
    color: #fff
}

.btn-danger:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    color: #fff
}

.shadow-red {
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, .4)
}

.text-teal {
    color: #0d9488 !important
}

.bg-teal-100 {
    background-color: #ccfbf1 !important
}

.bg-indigo-100 {
    background-color: #e0e7ff !important
}

.hover-translate-x-2:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08) !important
}

.bg-opacity-05 {
    background-color: rgba(255, 255, 255, .05) !important
}

.animate-float-delay {
    animation: 6s ease-in-out 3s infinite float
}

@keyframes pulse-ring {
    0% {
        transform: scale(.8);
        opacity: .5
    }

    100% {
        transform: scale(1.3);
        opacity: 0
    }
}

.group:hover .group-hover-opacity {
    opacity: 1 !important
}

.group-hover-opacity {
    transition: opacity .2s
}

.legal-text {
    line-height: 1.7;
    font-size: .95rem
}

.legal-text h2 {
    margin-top: 2rem !important;
    margin-bottom: 1rem !important
}

.wizard-wrapper {
    min-height: calc(100vh - 70px);
    background-color: var(--slate-100);
    padding-bottom: 3rem
}

.sidebar-brand {
    background-color: #0f172a;
    background: linear-gradient(160deg, #0e75dd 0, #020617 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 25px rgba(0, 0, 0, .1)
}

.sidebar-brand::before {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 25 L50 0 L100 25 L50 50 Z M0 75 L50 100 L100 75 L100 25 L50 50 L0 25 Z' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1.5'/%3E%3Cpath d='M50 50 L50 100' stroke='rgba(255,255,255,0.06)' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    background-position: center top;
    z-index: 1
}

.sidebar-brand::after {
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, .15) 0, transparent 60%), radial-gradient(circle at 100% 100%, rgba(14, 117, 221, .4) 0, transparent 50%);
    z-index: 2
}

.sidebar-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 3rem;
    color: #fff
}

.feature-item {
    gap: 1.25rem;
    margin-bottom: 2rem
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1)
}

.wizard-main {
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: flex-start
}

.wizard-card {
    background: #fff;
    padding: 3.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .08);
    width: 100%;
    max-width: 1000px;
    border: 1px solid var(--slate-200)
}

.stepper-container {
    margin-bottom: 3rem;
    position: relative
}

.stepper-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--slate-200);
    z-index: 0;
    transform: translateY(-50%)
}

.card-option,
.login-card,
.step-item {
    position: relative
}

.step-item {
    z-index: 1;
    background: #fff;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default
}

.step-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--slate-200);
    color: var(--slate-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .5rem;
    background: #fff;
    transition: .3s
}

.step-label {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--slate-400);
    letter-spacing: .5px
}

.step-item.active .step-circle {
    border-color: var(--primary);
    color: #fff;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(14, 117, 221, .15)
}

.step-item.completed .step-circle {
    border-color: #10b981;
    color: #fff;
    background: #10b981
}

.step-item.completed .step-label {
    color: #10b981
}

.card-option {
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: .2s;
    background: #fff
}

.card-option:hover {
    border-color: #cbd5e1;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .05)
}

.btn-check:checked+.card-option {
    border-color: var(--primary);
    background-color: #f8fbff;
    box-shadow: 0 10px 20px -5px rgba(14, 117, 221, .1);
    border-width: 1px
}

.btn-check:checked+.card-option::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    z-index: 10;
    background-color: var(--primary, #000);
    -webkit-mask-image: url("../icons/check_circle.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("../icons/check_circle.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center
}

.nav-pills-custom {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center
}

.cookie-overlay,
.login-section {
    align-items: center;
    display: flex
}

.nav-pills-custom .nav-link {
    background: #f1f5f9;
    color: var(--slate-500);
    font-weight: 600;
    border-radius: 50rem;
    padding: .6rem 1.75rem;
    margin: 0 .25rem;
    font-size: .95rem;
    border: 1px solid transparent
}

.nav-pills-custom .nav-link.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(14, 117, 221, .3)
}

.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: .75rem 2rem !important;
    font-size: 1rem !important;
    border-radius: .5rem
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(14, 117, 221, .25)
}

.group-hover-scale:hover,
.whatsapp-btn:hover {
    transform: scale(1.1)
}

.auth-toggle {
    background: #f1f5f9;
    padding: 4px;
    border-radius: 8px;
    display: inline-flex;
    border: 1px solid #e2e8f0
}

.auth-toggle .btn {
    border-radius: 6px;
    padding: 6px 20px;
    font-weight: 600;
    font-size: .85rem;
    border: none;
    color: #64748b;
    transition: .2s
}

.auth-toggle .btn.active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .08)
}

.login-section {
    min-height: calc(100vh - 80px);
    background-color: var(--slate-100);
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
    justify-content: center;
    padding: 2rem 1rem
}

.login-card {
    background: #fff;
    width: 100%;
    max-width: 450px;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-200);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
    padding: 3rem;
    overflow: hidden
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #60a5fa)
}

.login-card .input-group-text {
    background-color: #f8fafc;
    border: 1px solid var(--slate-200);
    color: var(--slate-500);
    border-right: none
}

.login-card .input-group .form-control {
    border-left: none
}

.login-card .input-group:focus-within .input-group-text {
    background-color: #fff;
    border-color: var(--primary)
}

.login-card .form-label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .5rem
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, .75);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    animation: .3s forwards fadeIn
}

.cookie-card {
    background-color: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
    width: 100%;
    padding: 2rem;
    position: relative;
    transform: translateY(20px);
    animation: .3s .1s forwards slideUp;
    max-width: 100%
}

.cookie-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.cookie-option-row {
    background-color: var(--slate-100);
    border: 1px solid transparent;
    transition: .2s
}

.cookie-option-row:hover {
    background-color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .05)
}

.cookie-scroll-content::-webkit-scrollbar {
    width: 6px
}

.cookie-scroll-content::-webkit-scrollbar-thumb {
    background-color: var(--slate-300);
    border-radius: 4px
}

.d-none {
    display: none !important
}

.shrink-0 {
    flex-shrink: 0
}

.footer-input::placeholder {
    color: #cbd5e1 !important;
    opacity: 1
}

.footer-input:focus {
    background-color: rgba(255, 255, 255, .1) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 .25rem rgba(var(--primary-rgb), .25)
}

.hover-bg-white:hover,
.hover-text-primary:hover {
    color: var(--bs-primary) !important
}

.footer-switch .form-check-input {
    background-color: rgba(255, 255, 255, .25) !important;
    border-color: rgba(255, 255, 255, .4) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e") !important
}

.footer-switch .form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    opacity: 1
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 100 900;
    src: url('../fonts/inter.woff2') format('woff2');
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 300 700;
    src: url('../fonts/space.woff2') format('woff2');
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

.group-hover-border-opacity-100:hover {
    border-color: var(--bs-primary) !important
}

.hover-bg-white:hover {
    background-color: #fff !important
}

.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    font-family: sans-serif
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
    transition: .3s;
    position: relative
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: #fff !important
}

.whatsapp-close {
    background: rgba(0, 0, 0, .5);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
    transition: opacity .3s;
    user-select: none
}

.whatsapp-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background: red;
    border-radius: 50%;
    border: 2px solid #fff
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .7)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

.whatsapp-pulse {
    animation: 2s infinite pulse-green
}

.whatsapp-container:hover .whatsapp-pulse {
    animation: none
}

.payment-card {
    cursor: pointer;
    transition: .2s;
    border: 2px solid #e2e8f0;
    background-color: #fff;
    border-radius: 1rem;
    position: relative
}

.payment-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .05)
}

.payment-card.border-primary {
    border-color: #0d6efd !important;
    background-color: #f8fafc !important
}

@media (max-width:768px) {

    .banner-principal,
    .hero,
    .hero-section,
    section[class*=hero] {
        min-height: auto !important;
        height: auto !important;
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .display-1,
    .display-2,
    .display-3,
    .display-4,
    h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word
    }

    .form-control,
    input,
    select,
    textarea {
        font-size: 16px !important
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }

    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

@media (min-width:768px) {
    .cookie-card {
        max-width: 700px;
        padding: 3rem
    }

    .pc-btn-text,
    .pc-left-icon {
        display: block !important
    }

    .mobile-btn-icon {
        display: none !important
    }
}

.responsive-bg-icon {
    width: 180px;
    height: 180px;
    margin-top: -20px;
    margin-right: -40px;
    transform: rotate(-15deg)
}

.custom-ssl-decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: .1;
    transform: rotate(15deg);
    width: 80px !important;
    height: 80px !important;
    top: 0;
    right: 0
}

.custom-ssl-decor i,
.custom-ssl-decor svg {
    width: 100% !important;
    height: 100% !important;
    display: block
}

.laptop-screen {
    width: 100%;
    height: auto;
    aspect-ratio: 460/280
}

.laptop-base {
    width: 113%;
    height: 20px
}

@media (min-width:992px) {
    .lg-translate-y-n4 {
        transform: translateY(-1rem)
    }

    .hover-trigger:hover .dropdown-menu {
        display: block;
        margin-top: 0 !important;
        top: 100%;
        animation: .2s ease-in fadeIn
    }

    .dropdown-menu-mega {
        min-width: 700px;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: .2s;
        top: 100%
    }

    .dropdown-mega-wide {
        min-width: 900px
    }

    .nav-item.dropdown:hover .dropdown-menu-mega {
        visibility: visible;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        margin-top: 0 !important
    }

    .border-end-lg {
        border-right: 1px solid #e2e8f0 !important
    }

    .responsive-bg-icon {
        width: 300px;
        height: 300px;
        margin-top: 48px;
        margin-right: 48px
    }

    .custom-ssl-decor {
        width: 200px !important;
        height: 200px !important;
        top: -45px;
        right: -20px
    }

    .laptop-screen {
        width: 460px !important;
        height: 280px !important;
        aspect-ratio: auto
    }

    .laptop-base {
        width: 520px !important;
        height: 20px !important
    }
}

@media (max-width:991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 1.5rem;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
        border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 1rem;
        border-top: 1px solid #f1f5f9;
        max-height: 85vh;
        overflow-y: auto
    }

    .dropdown-menu-mega {
        border: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
        margin-top: 0 !important;
        border-top: none;
        background: 0 0
    }

    .mega-item,
    .nav-item {
        padding: .5rem 0
    }

    .mega-icon {
        width: 32px;
        height: 32px
    }

    .mega-icon .material-symbols-outlined {
        font-size: 20px
    }

    .nav-item {
        border-bottom: 1px solid #f8fafc
    }

    .nav-item:last-child {
        border-bottom: none
    }

    .wizard-wrapper {
        padding: 1rem
    }

    .wizard-main {
        padding: 0;
        margin-top: -2rem;
        z-index: 10;
        position: relative
    }

    .wizard-card {
        padding: 2rem;
        width: 100%;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .05)
    }

    .sidebar-brand {
        padding-bottom: 4rem;
        border-radius: 1.5rem 1.5rem 0 0;
        box-shadow: none
    }

    .sidebar-content {
        padding: 3rem 2rem
    }

    .stepper-line {
        display: none
    }

    .rack-mobile-scale {
        transform: scale(.8);
        margin-top: -20px;
        margin-bottom: -20px
    }

    .app-mobile-scale {
        transform: scale(.75);
        margin-top: -60px;
        margin-bottom: -60px
    }

    .ecommerce-mobile-scale {
        transform: scale(.75);
        margin-top: 10px;
        margin-bottom: -30px;
        margin-left: -20px
    }

    .software-mobile-scale {
        transform: scale(.75);
        margin-top: -30px;
        margin-bottom: -30px
    }

    .maintenance-mobile-scale,
    .salud-web-mobile-scale {
        transform: scale(.85);
        margin-top: -20px;
        margin-bottom: -20px
    }

    .support-mobile-scale {
        transform: scale(.8);
        margin-top: -30px;
        margin-bottom: -30px
    }
}

.article-content h2 {
    font-weight: 700;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem
}

.article-content h3 {
    font-weight: 600;
    color: #334155;
    margin-top: 1.5rem;
    margin-bottom: .75rem;
    font-size: 1.4rem
}

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

.article-content ol,
.article-content ul,
.blog-content ol,
.blog-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem
}

.article-content li,
.blog-content li {
    margin-bottom: .5rem
}

.article-content code {
    background: #f1f5f9;
    padding: .2rem .4rem;
    border-radius: 4px;
    color: #ef4444;
    font-size: .9em;
    font-family: monospace
}

.article-content pre {
    background: #1e293b;
    color: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1.5rem
}

.blog-content h2 {
    color: #0f172a;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem
}

.blog-content h3 {
    color: #1e293b;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem
}

.blog-content strong {
    color: #0f172a;
    font-weight: 600
}
