        :root {
            --orange: #F5820A;
            --orange-light: #FFA040;
            --orange-pale: #FFF3E6;
            --navy: #40484F;
            --page: #40484F;
            --navy-mid: #2C3E6B;
            --blue-soft: #EEF2FF;
            --gray-light: #F7F8FC;
            --gray-mid: #8892A4;
            --white: #FFFFFF;
            --text: #1A2540;
            --text-soft: #5A6478;
        }

        .d-none {
            display: none !important;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: auto;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text);
            background: var(--white);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        .logo-text {
            font-family: 'Sora', sans-serif;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 60px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            transition: padding 0.3s ease, box-shadow 0.3s ease;
            animation: navSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        body.nav-open {
            overflow: hidden;
        }

        .nav-brand {
            display: inline-flex;
            align-items: center;
            line-height: 0;
        }

        nav.scrolled {
            padding: 10px 60px;
            box-shadow: 0 4px 24px rgba(26, 37, 64, 0.08);
        }

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

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

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-soft);
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--orange);
        }

        .nav-toggle {
            display: none;
            width: 46px;
            height: 46px;
            border: 0;
            border-radius: 14px;
            background: rgba(26, 37, 64, 0.06);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .nav-toggle:hover {
            background: rgba(245, 130, 10, 0.12);
        }

        .nav-toggle span {
            width: 18px;
            height: 2px;
            border-radius: 999px;
            background: var(--navy);
            transition: transform 0.25s ease, opacity 0.2s ease;
        }

        body.nav-open .nav-toggle span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        body.nav-open .nav-toggle span:nth-child(2) {
            opacity: 0;
        }

        body.nav-open .nav-toggle span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav-cta {
            background: var(--orange) !important;
            color: white !important;
            padding: 9px 20px;
            border-radius: 50px;
            font-weight: 600 !important;
            font-size: 0.84rem !important;
        }


        /* SHARED */
        section {
            padding: 100px 60px;
            scroll-margin-top: 80px;
        }

        .section-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-label {
            font-family: 'Sora', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 700;
            color: var(--navy);
            letter-spacing: -0.8px;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-soft);
            line-height: 1.7;
            max-width: 560px;
            font-weight: 300;
        }

        /* REVEAL */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
.rc-anchor-invisible{
    display: none !important;
}
.grecaptcha-badge{
    
    display: none !important;
}
        /* HERO */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 60px 80px;
            background-image:
                url('../img/elocker.svg'),
                linear-gradient(135deg, #eef2ff 0%, #fff8f0 50%, #f0f6ff 100%);
            background-repeat: no-repeat, no-repeat;
            background-position: right 0px top 280px, center;
            background-size: 58%, cover;
            overflow: hidden;
            position: relative;
        }

        .hero-bg-c {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }

        .hero-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 560px);
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        .hero-copy>* {
            animation: slideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .hero-copy>*:nth-child(1) {
            animation-delay: 0.05s
        }

        .hero-copy>*:nth-child(2) {
            animation-delay: 0.15s
        }

        .hero-copy>*:nth-child(3) {
            animation-delay: 0.25s
        }

        .hero-copy>*:nth-child(4) {
            animation-delay: 0.35s
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-32px)
            }

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

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px)
            }

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

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--orange-pale);
            color: var(--orange);
            font-size: 0.78rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 50px;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .hero-label::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--orange);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

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

            50% {
                opacity: 0.5;
                transform: scale(1.4)
            }
        }

        .hero-title {
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--navy);
            letter-spacing: -1.5px;
            margin-bottom: 20px;
        }

        .hero-title .accent {
            color: var(--orange);
        }

        .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-soft);
            line-height: 1.7;
            max-width: 480px;
            margin-bottom: 36px;
            font-weight: 300;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--orange);
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 0.92rem;
            text-decoration: none;
            transition: all 0.25s;
            box-shadow: 0 8px 24px rgba(245, 130, 10, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
            transform: skewX(-20deg);
        }

        .btn-primary:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(245, 130, 10, 0.4);
        }

        .btn-primary:hover::after {
            animation: shimmer 0.6s ease forwards;
        }

        @keyframes shimmer {
            from {
                left: -100%
            }

            to {
                left: 150%
            }
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            color: var(--navy);
            padding: 14px 28px;
            border-radius: 50px;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 0.92rem;
            text-decoration: none;
            border: 1.5px solid rgba(26, 37, 64, 0.15);
            transition: all 0.25s;
        }

        .btn-secondary:hover {
            border-color: var(--orange);
            color: var(--orange);
            transform: translateY(-2px);
        }

        /* PARA QUIEN */
        #paraquien {
            background: var(--page);
        }

        .paraquien-header {
            text-align: center;
            margin-bottom: 52px;
        }

        .paraquien-header .section-subtitle {
            margin: 0 auto;
        }

        /* SECTOR TABS — card style, vertical */
        .sector-tabs {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .sector-tab {
            padding: 16px 18px;
            border-radius: 16px;
            border: 1.5px solid rgba(26, 37, 64, 0.1);
            background: white;
            color: var(--text-soft);
            font-family: 'Sora', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            min-width: 88px;
            box-shadow: 0 2px 8px rgba(26, 37, 64, 0.05);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .sector-tab:hover {
            border-color: var(--orange);
            color: var(--orange);
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(245, 130, 10, 0.15);
        }

        .sector-tab.active {
            background: var(--page);
            color: white;
            border-color: var(--orange);
            box-shadow: 0 8px 24px rgba(245, 130, 10, 0.35);
            animation: tabGlow 2s ease-in-out infinite;
        }

        .sector-tab-dark {
            background: var(--page);
            color: white;
            border-color: rgba(26, 37, 64, 0.85);
        }

        .sector-tab-dark:hover {
            background: var(--page);
            color: white;
            border-color: #243457;
        }

        .sector-tab-dark .tab-svg path,
        .sector-tab-dark .tab-svg line,
        .sector-tab-dark .tab-svg rect,
        .sector-tab-dark .tab-svg circle,
        .sector-tab-dark .tab-svg polyline {
            stroke: white;
        }

        .sector-tab-dark svg {
    width: 100px;
    height: 80px;
            display: block;
        }

        .sector-tab-dark svg .op {
            fill: rgba(255, 255, 255, 0.14);
        }

        .sector-tab-dark svg .prim_stroke {
            stroke: white;
        }

        .sector-tab-dark svg .prim_fill {
            fill: white;
        }

        .sector-tab-dark {
            min-width: 120px;
        }

        @keyframes tabGlow {

            0%,
            100% {
                box-shadow: 0 8px 24px rgba(245, 130, 10, 0.3)
            }

            50% {
                box-shadow: 0 8px 32px rgba(245, 130, 10, 0.55)
            }
        }

        .sector-tab .tab-svg {
            width: 36px;
            height: 36px;
        }

        .sector-tab .tab-svg path,
        .sector-tab .tab-svg line,
        .sector-tab .tab-svg rect,
        .sector-tab .tab-svg circle,
        .sector-tab .tab-svg polyline {
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Sector content */
        .sector-content {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            background: white;
            border-radius: 20px;
            padding: 48px;
            box-shadow: 0 8px 40px rgba(26, 37, 64, 0.06);
            animation: fadeIn 0.3s ease;
        }

        .sector-content.active {
            background: var(--page);
            display: grid;
        }

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

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

        .sector-icon-wrap {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: var(--navy);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .sector-icon-wrap svg {
            width: 74px;
            height: 100px;
            display: block;
            max-width: 100%;
        }

        .sector-icon-wrap svg circle{
            stroke: currentColor;
            stroke-width: 0;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .sector-icon-wrap svg .op {
            fill: rgba(255, 255, 255, 0.14);
        }

        .sector-icon-wrap svg .prim_stroke {
            stroke: white;
        }

        .sector-icon-wrap svg .prim_fill {
        }

        .sector-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
            letter-spacing: -0.4px;
        }

        .sector-tagline {
            font-size: 0.85rem;
            color: var(--orange);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .sector-desc {
            color: var(--text-soft);
            line-height: 1.7;
            font-size: 0.95rem;
            font-weight: 300;
        }

        .sector-bullets {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .sector-bullets li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 16px;
            background: var(--gray-light);
            border-radius: 10px;
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.4;
        }

        .sector-bullets li::before {
            content: '✓';
            color: var(--orange);
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
            margin-top: 1px;
        }

        /* PRESENCIA REGIONAL */
        #presencia {
            background: var(--navy);
            color: white;
        }

        .presencia-inner {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .presencia-inner .section-label {
            color: var(--orange-light);
        }

        .presencia-inner .section-title {
            color: white;
            max-width: 600px;
            margin: 0 auto 12px;
        }

        .presencia-inner .section-subtitle {
            color: rgba(255, 255, 255, 0.6);
            margin: 0 auto 52px;
        }

        .countries-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 820px;
            margin: 0 auto;
        }

        .country-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            min-width: 180px;
            transition: all 0.3s ease;
            animation: cardFloat 3s ease-in-out infinite;
        }

        .country-card:nth-child(2) {
            animation-delay: 0.4s
        }

        .country-card:nth-child(3) {
            animation-delay: 0.8s
        }

        .country-card:nth-child(4) {
            animation-delay: 1.2s
        }

        .country-card:nth-child(5) {
            animation-delay: 1.6s
        }

        @keyframes cardFloat {

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

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

        .country-card:hover {
            background: rgba(245, 130, 10, 0.12);
            border-color: rgba(245, 130, 10, 0.4);
            transform: translateY(-4px) !important;
        }

        .country-flag {
            font-size: 2rem;
            line-height: 1;
        }

        .country-info {
            text-align: left;
        }

        .country-info h4 {
            font-family: 'Sora', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: white;
            margin-bottom: 3px;
        }

        .country-info span {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .country-info .sede {
            color: var(--orange);
            font-weight: 600;
        }

        .country-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
            animation: dotPulse 2s ease-in-out infinite;
            box-shadow: 0 0 8px rgba(245, 130, 10, 0.6);
        }

        @keyframes dotPulse {

            0%,
            100% {
                box-shadow: 0 0 4px rgba(245, 130, 10, 0.4)
            }

            50% {
                box-shadow: 0 0 14px rgba(245, 130, 10, 0.9)
            }
        }

        /* QUIENES SOMOS */
        #nosotros {
            background: var(--navy);
            color: white;
        }

        #nosotros .section-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        #nosotros .section-label {
            color: var(--orange-light);
        }

        #nosotros .section-title {
            color: white;
        }

        #nosotros .section-subtitle {
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 32px;
        }

        .access-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }

        .access-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.85);
            padding: 10px 16px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 500;
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .access-chip.visible {
            opacity: 1;
            transform: scale(1);
        }

        .access-chip:nth-child(1) {
            transition-delay: 0.1s
        }

        .access-chip:nth-child(2) {
            transition-delay: 0.2s
        }

        .access-chip:nth-child(3) {
            transition-delay: 0.3s
        }

        .access-chip:nth-child(4) {
            transition-delay: 0.4s
        }

        .access-chip svg path,
        .access-chip svg circle,
        .access-chip svg line,
        .access-chip svg rect {
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
        }

        .nosotros-img {
            width: 100%;
            border-radius: 16px;
        }

        /* CONFIARON */
        #clientes {
            background: var(--gray-light);
            padding: 72px 60px;
        }

        .clientes-inner {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .clientes-label {
            font-family: 'Sora', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray-mid);
            margin-bottom: 36px;
        }

        .marquee-wrapper {
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: marqueeScroll 80s linear infinite;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        @keyframes marqueeScroll {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        .marquee-reverse {
            animation-direction: reverse !important;
        }

        .marquee-logos {
            display: flex;
            gap: 14px;
            padding-right: 14px;
            align-items: center;
        }

        .country-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            font-family: 'Sora', sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
            color: white;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .logos-static-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            align-items: center;
        }

        .logo-pill-s {
            padding: 10px 20px;
            background: white;
            border-radius: 12px;
            border: 1.5px solid rgba(26, 37, 64, 0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            height: 70px;
        }

        .logo-pill-s:hover {
            border-color: rgba(245, 130, 10, 0.3);
            box-shadow: 0 4px 16px rgba(245, 130, 10, 0.1);
            transform: translateY(-2px);
        }

        .logo-pill-s svg {
            display: block;
    height: 32px;
        }

        .logo-pill {
            padding: 12px 22px;
            background: white;
            border-radius: 12px;
            border: 1.5px solid rgba(26, 37, 64, 0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            min-width: 110px;
            height: 52px;
        }

        .logo-pill:hover {
            border-color: rgba(245, 130, 10, 0.3);
            box-shadow: 0 4px 16px rgba(245, 130, 10, 0.1);
            transform: translateY(-2px);
        }

        .logo-pill svg {
            display: block;
        }

        /* PRODUCTOS */
        #productos {
            background: white;
        }

        .producto-tabs {
            display: flex;
            gap: 0;
            border-bottom: 2px solid rgba(26, 37, 64, 0.08);
            margin-bottom: 40px;
        }

        .producto-tab {
            padding: 14px 28px;
            font-family: 'Sora', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-soft);
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all 0.2s;
        }

        .producto-tab:hover {
            color: var(--orange);
        }

        .producto-tab.active {
            color: var(--orange);
            border-bottom-color: var(--orange);
        }

        .producto-content {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .producto-content.active {
            display: grid;
        }

        .producto-content h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
            letter-spacing: -0.4px;
        }

        .producto-tagline {
            font-size: 0.85rem;
            color: var(--orange);
            font-weight: 600;
            margin-bottom: 16px;
        }

        .producto-desc {
            font-size: 0.95rem;
            color: var(--text-soft);
            line-height: 1.7;
            margin-bottom: 24px;
            font-weight: 300;
        }

        .producto-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .producto-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.88rem;
            color: var(--text-soft);
        }

        .producto-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }

        .prod-img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(26, 37, 64, 0.1);
        }

        /* APLICACIONES */
        #aplicaciones {
            background:
                radial-gradient(circle at top right, rgba(245, 130, 10, 0.08), transparent 26%),
                linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
        }

        .applications-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            margin-top: 52px;
        }

        .application-card {
            position: relative;
            padding: 30px 28px 28px;
            border-radius: 22px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: var(--navy);
            box-shadow: 0 20px 44px rgba(26, 37, 64, 0.18);
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .application-card::after {
            content: '';
            position: absolute;
            inset: auto -30% -45% auto;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 130, 10, 0.18), transparent 70%);
            pointer-events: none;
        }

        .application-card:hover {
            transform: translateY(-8px);
            border-color: rgba(245, 130, 10, 0.28);
            box-shadow: 0 26px 56px rgba(26, 37, 64, 0.28);
        }

        .application-card:nth-child(2),
        .application-card:nth-child(5) {
            animation: applicationFloat 5.2s ease-in-out infinite;
        }

        .application-card:nth-child(3),
        .application-card:nth-child(6) {
            animation: applicationFloat 5.2s ease-in-out infinite 1.2s;
        }

        @keyframes applicationFloat {
            0%,
            100% {
                transform: translateY(0);
            }

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

        .application-icon {
            width: 82px;
            height: 82px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
        }

        .application-icon svg {
            width: 46px;
            height: 46px;
            display: block;
        }

        .application-icon .prim_stroke {
            stroke: rgba(255, 255, 255, 0.92);
        }

        .application-icon .prim_fill {
            fill: rgba(255, 255, 255, 0.92);
        }

        .application-icon .op {
            opacity: 0.28;
        }

        .application-accent {
            width: 54px;
            height: 4px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--orange), var(--orange-light));
            margin-bottom: 16px;
        }

        .application-card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
            letter-spacing: -0.4px;
        }

        .application-lead {
            font-family: 'Sora', sans-serif;
            font-size: 0.84rem;
            font-weight: 700;
            line-height: 1.5;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 14px;
        }

        .application-card p {
            position: relative;
            z-index: 1;
            font-size: 0.95rem;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.72);
            font-weight: 400;
        }

        /* FEATURES */
        #features {
            background: var(--gray-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 52px;
        }

        .feature-card {
            padding: 36px 32px;
            border-radius: 20px;
            border: 1.5px solid rgba(26, 37, 64, 0.08);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            background: white;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            border-radius: 0 0 20px 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .feature-card.f1::before {
            background: var(--orange);
        }

        .feature-card.f2::before {
            background: #6366F1;
        }

        .feature-card.f3::before {
            background: #22C55E;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(26, 37, 64, 0.1);
            border-color: transparent;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .f1 .feature-card-icon {
            background: var(--orange-pale);
        }

        .f2 .feature-card-icon {
            background: #EEF0FF;
        }

        .f3 .feature-card-icon {
            background: #F0FFF4;
        }

        .feature-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 0.88rem;
            color: var(--text-soft);
            line-height: 1.65;
            font-weight: 300;
        }

        .feature-card-icon svg path,
        .feature-card-icon svg circle,
        .feature-card-icon svg polyline {
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .f1 .feature-card-icon svg * {
            stroke: #F5820A;
        }

        .f2 .feature-card-icon svg * {
            stroke: #6366F1;
        }

        .f3 .feature-card-icon svg * {
            stroke: #22C55E;
        }

        /* CONTACTO */
        #contacto {/*
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);*/
            background: var(--navy);
            color: white;
            position: relative;
            overflow: hidden;
        }

        #contacto::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: var(--orange);
            opacity: 0.07;
        }

        .contacto-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .contacto-left .section-label {
            color: var(--orange-light);
        }

        .contacto-left .section-title {
            color: white;
        }

        .contacto-left .section-subtitle {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 36px;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25D366;
            color: white;
            padding: 16px 28px;
            border-radius: 50px;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.25s;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
            margin-bottom: 16px;
            width: fit-content;
            position: relative;
            overflow: hidden;
        }

        .whatsapp-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: skewX(-20deg);
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-btn:hover::after {
            animation: shimmer 0.6s ease forwards;
        }

        .contacto-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 28px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 36px;
        }

        .contact-form h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 14px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 14px;
        }

        .form-group label {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-soft);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 16px;
            border: 1.5px solid rgba(26, 37, 64, 0.12);
            border-radius: 10px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            color: var(--text);
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            background: var(--gray-light);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--orange);
            background: white;
            box-shadow: 0 0 0 3px rgba(245, 130, 10, 0.12);
        }

        .form-group textarea {
            resize: none;
            height: 100px;
        }

        .form-submit {
            width: 100%;
            padding: 14px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 0.92rem;
            cursor: pointer;
            transition: all 0.25s;
            box-shadow: 0 6px 20px rgba(245, 130, 10, 0.25);
            position: relative;
            overflow: hidden;
        }

        .form-submit::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: skewX(-20deg);
        }

        .form-submit:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
        }

        .form-submit:hover::after {
            animation: shimmer 0.6s ease forwards;
        }

        .contact-form .alert {
            display: block;
            margin-top: 16px;
            padding: 12px 14px;
            border-radius: 14px;
            font-size: 0.84rem;
            line-height: 1.35;
            color: var(--navy);
            background: #F3F6FB;
            border: 1px solid rgba(26, 37, 64, 0.12);
            box-shadow: 0 10px 24px rgba(26, 37, 64, 0.06);
        }

        .contact-form .alert.alert-success {
            background: rgba(38, 166, 91, 0.10);
            border-color: rgba(38, 166, 91, 0.22);
            color: #1F7A43;
        }

        .contact-form .alert.alert-danger {
            background: rgba(229, 57, 53, 0.10);
            border-color: rgba(229, 57, 53, 0.22);
            color: #A61E1A;
        }

        /* FOOTER */
        footer {
            background: var(--navy);
            color: rgba(255, 255, 255, 0.4);
            padding: 28px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.8rem;
        }

        /* WA FLOAT */
        .wa-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 56px;
            height: 56px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            z-index: 200;
            animation: waFloat 2.5s ease-in-out infinite;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .wa-float:hover {
            animation: none;
            transform: scale(1.15) !important;
            box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5) !important;
        }

        @keyframes waFloat {

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

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

        /* ═══════════════════════════════════════
   MOBILE — max-width: 768px
   Desktop untouched above this breakpoint
═══════════════════════════════════════ */
        @media (max-width: 768px) {

            /* NAV */
            nav {
                padding: 14px 20px;
            }

            nav img {
                height: 26px !important;
            }

            .nav-toggle {
                display: inline-flex;
            }

            .nav-links {
                position: fixed;
                top: 72px;
                left: 20px;
                right: 20px;
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding: 18px;
                border-radius: 22px;
                background: rgba(255, 255, 255, 0.98);
                border: 1px solid rgba(26, 37, 64, 0.08);
                box-shadow: 0 20px 40px rgba(26, 37, 64, 0.14);
                backdrop-filter: blur(18px);
                transform: translateY(-12px);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.25s ease, transform 0.25s ease;
                z-index: 110;
            }

            body.nav-open .nav-links {
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
            }

            .nav-links li {
                list-style: none;
            }

            .nav-links a {
                display: block;
                padding: 12px 14px;
                border-radius: 14px;
                font-size: 0.95rem;
                background: rgba(26, 37, 64, 0.03);
            }

            .nav-links a:hover {
                background: rgba(245, 130, 10, 0.1);
            }

            .nav-cta {
                text-align: center;
                padding: 14px 20px;
            }

            /* SECTIONS */
            section {
                padding: 64px 20px;
            }

            /* HERO */
            #hero {
                padding: 100px 20px 260px;
                min-height: auto;
                background-position: center bottom 12px, center;
                background-size: min(78vw, 340px) auto, cover;
                background-attachment: scroll, scroll;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 0;
                text-align: center;
            }

            .hero-title {
                font-size: 2rem;
                letter-spacing: -1px;
            }

            .hero-subtitle {
                font-size: 0.95rem;
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                justify-content: center;
            }

            .hero-label {
                margin: 0 auto 20px;
            }

            /* PARA QUIEN */
            .paraquien-header {
                margin-bottom: 36px;
            }

            .sector-tabs {
                gap: 8px;
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 8px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .sector-tabs::-webkit-scrollbar {
                display: none;
            }

            .sector-tab {
                min-width: 72px;
                padding: 12px 12px;
                font-size: 0.7rem;
                flex-shrink: 0;
            }

            .tab-svg {
                width: 28px !important;
                height: 28px !important;
            }

            .sector-content {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 28px 20px;
            }

            .sector-icon-wrap {
                width: 60px;
                height: 60px;
                border-radius: 14px;
                margin-bottom: 14px;
            }

            .sector-icon-wrap svg {
                width: 36px;
                height: 36px;
            }

            .sector-content h3 {
                font-size: 1.3rem;
            }

            /* PRESENCIA */
            #presencia {
                padding: 64px 20px;
            }

            .presencia-inner .section-title {
                font-size: 1.6rem;
            }

            .countries-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 12px;
                max-width: 100% !important;
            }

            .country-card {
                padding: 12px 14px;
                gap: 10px;
                min-width: 0;
            }

            .country-card svg {
                width: 34px !important;
                height: 24px !important;
            }

            .country-info h4 {
                font-size: 0.85rem;
            }

            .country-info span {
                font-size: 0.7rem;
            }

            /* QUIENES SOMOS */
            #nosotros .section-inner {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .nosotros-img {
                border-radius: 12px;
                max-height: 280px;
                object-fit: cover;
                object-position: center;
            }

            .access-methods {
                gap: 8px;
            }

            .access-chip {
                font-size: 0.75rem;
                padding: 8px 12px;
            }

            .access-chip svg {
                width: 14px !important;
                height: 14px !important;
            }

            /* CLIENTES */
            #clientes {
                padding: 52px 0;
            }

            .clientes-inner {
                padding: 0 20px;
            }

            .clientes-label {
                margin-bottom: 28px;
            }

            /* PRODUCTOS */
            #productos {
                padding: 64px 20px;
            }

            .producto-tabs {
                overflow-x: auto;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .producto-tabs::-webkit-scrollbar {
                display: none;
            }

            .producto-tab {
                white-space: nowrap;
                flex-shrink: 0;
                font-size: 0.82rem;
                padding: 12px 18px;
            }

            .producto-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .prod-img {
                max-height: 260px;
                object-fit: cover;
                object-position: center;
                border-radius: 14px;
            }

            .producto-content h3 {
                font-size: 1.3rem;
            }

            .producto-desc {
                font-size: 0.9rem;
            }

            /* APLICACIONES */
            #aplicaciones {
                padding: 64px 20px;
            }

            .applications-grid {
                grid-template-columns: 1fr;
                gap: 18px;
                margin-top: 36px;
            }

            .application-card {
                padding: 24px 22px;
                border-radius: 18px;
            }

            .application-icon {
                width: 72px;
                height: 72px;
                border-radius: 20px;
                margin-bottom: 18px;
            }

            .application-icon svg {
                width: 40px;
                height: 40px;
            }

            .application-card h3 {
                font-size: 1.2rem;
            }

            .application-card p {
                font-size: 0.9rem;
                line-height: 1.7;
            }

            /* FEATURES */
            #features {
                padding: 64px 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-top: 36px;
            }

            .feature-card {
                padding: 28px 24px;
            }

            /* CONTACTO */
            #contacto {
                padding: 64px 20px;
            }

            .contacto-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contacto-left .section-title {
                font-size: 1.6rem;
            }

            .contact-form {
                padding: 24px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

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

            /* FOOTER */
            footer {
                padding: 20px;
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            /* SECTION TITLES */
            .section-title {
                font-size: 1.7rem;
                letter-spacing: -0.5px;
            }

            .section-subtitle {
                font-size: 0.92rem;
            }

            /* WA FLOAT */
            .wa-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 16px;
            }

            .wa-float svg {
                width: 24px;
                height: 24px;
            }
        }

        /* Small phones */
        @media (max-width: 380px) {
            .hero-title {
                font-size: 1.75rem;
            }

            .sector-tab {
                min-width: 64px;
                font-size: 0.65rem;
            }

            .countries-grid {
                grid-template-columns: 1fr !important;
            }
        }
        /* PARA QUIEN overrides */
        .paraquien-header .section-title {
            color: var(--white);
        }

        .paraquien-header .section-subtitle {
            color: rgba(255, 255, 255, 0.78);
        }

        .sector-tabs-shell {
            position: relative;
        }

        .sector-tabs {
            gap: 14px;
            margin-bottom: 42px;
        }

        .sector-scroll-indicator {
            display: none;
        }

        .sector-tab,
        .sector-tab-dark {
            appearance: none;
            min-width: 108px;
            padding: 6px 0px 0px;
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            color: rgba(255, 255, 255, 0.72);
            justify-content: flex-start;
            letter-spacing: 0.01em;
            transition: color 0.25s ease, transform 0.25s ease;
        }
/*
        .sector-tab::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0;
            height: 3px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--orange), #ffd09a);
            transform: translateX(-50%);
            transition: width 0.25s ease;
        }*/

        .sector-tab:hover,
        .sector-tab-dark:hover {
            background: transparent;
            color: var(--white);
            border-color: transparent;
            box-shadow: none;
            transform: translateY(-3px);
        }

        .sector-tab.active,
        .sector-tab-dark.active {
            background: transparent;
            color: var(--white);
            border-color: transparent;
            box-shadow: none;
            animation: none;
        }

        .sector-tab.active::after {
            width: 56px;
        }

        .sector-tab-icon,
        .sector-tab > svg {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 62px;
            pointer-events: none;
        }

        .sector-tab-icon svg,
        .sector-tab > svg,
        .sector-tab-dark svg {
            width: 122px;
            height: 96px;
            display: block;
            transform-origin: center;
            animation: sectorIconZoomIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
            transition: transform 0.25s ease;
        }

        .sector-tab:hover .sector-tab-icon svg,
        .sector-tab:hover > svg,
        .sector-tab.active .sector-tab-icon svg,
        .sector-tab.active > svg {
            transform: scale(1.09);
        }

        .sector-tab.is-animating .sector-tab-icon svg,
        .sector-tab.is-animating > svg {
            animation: sectorIconZoomIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .sector-tab:nth-child(1) .sector-tab-icon svg,
        .sector-tab:nth-child(1) > svg {
            animation-delay: 0.05s;
        }

        .sector-tab:nth-child(2) .sector-tab-icon svg,
        .sector-tab:nth-child(2) > svg {
            animation-delay: 0.12s;
        }

        .sector-tab:nth-child(3) .sector-tab-icon svg,
        .sector-tab:nth-child(3) > svg {
            animation-delay: 0.19s;
        }

        .sector-tab:nth-child(4) .sector-tab-icon svg,
        .sector-tab:nth-child(4) > svg {
            animation-delay: 0.26s;
        }

        .sector-tab:nth-child(5) .sector-tab-icon svg,
        .sector-tab:nth-child(5) > svg {
            animation-delay: 0.33s;
        }

        .sector-tab:nth-child(6) .sector-tab-icon svg,
        .sector-tab:nth-child(6) > svg {
            animation-delay: 0.4s;
        }

        .sector-tab:nth-child(7) .sector-tab-icon svg,
        .sector-tab:nth-child(7) > svg {
            animation-delay: 0.47s;
        }

        @keyframes sectorIconZoomIn {
            from {
                opacity: 0;
                transform: scale(0.72);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }
/*
        .sector-tab svg path,
        .sector-tab svg line,
        .sector-tab svg rect,
        .sector-tab svg circle,
        .sector-tab svg polyline,
        .sector-tab svg ellipse {
            stroke: currentColor;
            transition: stroke 0.25s ease, fill 0.25s ease;
        }*/

        .sector-tab svg .op {
            fill: rgba(255, 255, 255, 0.12);
        }

        .sector-tab svg .prim_stroke {
            stroke: currentColor;
        }

        .sector-tab svg .prim_fill {
            fill: currentColor;
        }

        .sector-tab-label,
        .sector-tab > span:last-child {
            display: block;
            line-height: 1.25;
            text-align: center;
        }

        .sector-content {
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
            gap: 42px;
            background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 28px;
            padding: 44px 46px;
            box-shadow: 0 18px 60px rgba(12, 20, 37, 0.18);
        }

        .sector-content.active {
            background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
        }

        .sector-icon-wrap {
            width: 96px;
            height: 96px;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(245, 130, 10, 0.12), rgba(26, 37, 64, 0.08));
            color: var(--navy);
            margin-bottom: 22px;
        }

        .sector-icon-wrap svg {
            width: 72px;
            height: 72px;
        }

        .sector-icon-wrap svg .op {
            fill: rgba(245, 130, 10, 0.14);
        }

        .sector-icon-wrap svg .prim_stroke {
            stroke: var(--navy);
        }

        .sector-icon-wrap svg .prim_fill {
            fill: var(--navy);
        }

        .sector-content h3 {
            font-size: 1.75rem;
            color: var(--navy);
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .sector-tagline {
            font-size: 0.8rem;
            color: var(--orange);
            font-weight: 700;
            letter-spacing: 1.4px;
        }

        .sector-desc {
            color: #4e596d;
            line-height: 1.75;
            font-size: 1rem;
            font-weight: 400;
            max-width: 560px;
        }

        .sector-bullets li {
            padding: 15px 18px;
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid rgba(26, 37, 64, 0.08);
            border-radius: 16px;
            font-size: 0.95rem;
            color: var(--navy);
            line-height: 1.55;
            box-shadow: 0 10px 24px rgba(26, 37, 64, 0.06);
        }

        @media (max-width: 991px) {
            .sector-tabs-shell {
                position: relative;
                margin-bottom: 42px;
            }

            .sector-tabs {
                --sector-tabs-gap: 10px;
                --sector-tabs-side-space: 20px;
                display: flex;
                gap: var(--sector-tabs-gap);
                overflow-x: auto;
                padding-bottom: 8px;
                padding-inline: var(--sector-tabs-side-space);
                margin-bottom: 0;
                box-sizing: border-box;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                scroll-snap-type: x mandatory;
                overscroll-behavior-inline: contain;
            }

            .sector-tab,
            .sector-tab-dark {
                flex: 0 0 var(--sector-tab-mobile-width, calc((100% - var(--sector-tabs-gap)) / 2));
                width: var(--sector-tab-mobile-width, calc((100% - var(--sector-tabs-gap)) / 2));
                min-width: var(--sector-tab-mobile-width, calc((100% - var(--sector-tabs-gap)) / 2));
                max-width: var(--sector-tab-mobile-width, calc((100% - var(--sector-tabs-gap)) / 2));
                padding: 6px 10px 14px 30px;
                font-size: 0.72rem;
                box-sizing: border-box;
                scroll-snap-align: none;
            }

            .sector-tab:nth-child(odd) {
                scroll-snap-align: start;
            }

            .sector-tab-icon,
            .sector-tab > svg {
                min-height: 56px;
            }

            .sector-tab-icon svg,
            .sector-tab > svg,
            .sector-tab-dark svg {
                width: 98px;
                height: 74px;
            }

            .sector-tabs-shell::before,
            .sector-tabs-shell::after {
                content: none;
            }

            .sector-scroll-indicator {
                position: absolute;
                top: 38%;
                transform: translateY(-50%);
                width: 38px;
                height: 38px;
                border: 0;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(255, 255, 255, 0.96);
                border-radius: 999px;
                color: rgba(68, 76, 91, 0.88);
                cursor: pointer;
                z-index: 2;
                opacity: 0;
                pointer-events: none;
                box-shadow: 0 8px 22px rgba(10, 19, 37, 0.16);
                transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
            }

            .sector-scroll-indicator span {
                width: 10px;
                height: 10px;
                display: block;
                border-top: 2px solid currentColor;
                border-right: 2px solid currentColor;
            }

            .sector-scroll-indicator-left {
                left: 2px;
                opacity: 0;
                pointer-events: none;
            }

            .sector-tabs-shell.is-scrollable:not(.at-start) .sector-scroll-indicator-left {
                opacity: 1;
                pointer-events: auto;
            }

            .sector-scroll-indicator-left span {
                transform: rotate(-135deg);
            }

            .sector-scroll-indicator-right {
                right: 2px;
            }

            .sector-tabs-shell.is-scrollable:not(.at-end) .sector-scroll-indicator-right {
                opacity: 1;
                pointer-events: auto;
            }

            .sector-scroll-indicator-right span {
                transform: rotate(45deg);
            }

            .sector-scroll-indicator:active {
                transform: translateY(-50%) scale(0.96);
            }

            .sector-scroll-indicator:hover {
                box-shadow: 0 10px 24px rgba(10, 19, 37, 0.2);
            }

            .sector-scroll-indicator:disabled {
                opacity: 0 !important;
                pointer-events: none;
            }

            .sector-content {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 28px 20px;
            }

            .sector-icon-wrap {
                width: 72px;
                height: 72px;
                border-radius: 18px;
                margin-bottom: 16px;
            }

            .sector-icon-wrap svg {
                width: 52px;
                height: 52px;
            }

            .sector-content h3 {
                font-size: 1.35rem;
            }
        }

        @media (max-width: 380px) {
            .sector-tabs {
                --sector-tabs-gap: 8px;
                --sector-tabs-side-space: 16px;
            }

            .sector-tab,
            .sector-tab-dark {
                font-size: 0.68rem;
            }

            .sector-tab-icon svg,
            .sector-tab > svg,
            .sector-tab-dark svg {
                width: 90px;
                height: 68px;
            }
        }

        /* Floating widgets: keep chat above the reCAPTCHA badge */
        .grecaptcha-badge {
            z-index: 9998 !important;
            bottom: 188px !important;
        }

        iframe[src*="cliengo"],
        #cliengo-chat,
        #converse-chat,
        .converse-chat {
            z-index: 9999 !important;
            bottom: 24px !important;
        }
@media (min-width: 1420px) {
    #hero {
        background-position: right 40px top 120px, center;
        background-size: 52%, cover;
    }
}
