        :root {
            --primary: #1E63E9;
            --primary-dark: #1550C0;
            --primary-light: #4A82F0;
            --dark-blue: #0F1B2B;
            --black: #111111;
            --light-gray: #F2F4F8;
            --white: #ebe9e9;
            --muted: #6B7280;
            --border: #E5E7EB;
            --green: #25D366;
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--black);
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            line-height: 1.1;
        }

        p {
            font-family: 'Inter', sans-serif;
            line-height: 1.75;
            color: var(--muted);
        }

        a {
            text-decoration: none;
        }

        img {
            display: block;
            max-width: 100%;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
        }

        section {
            padding: 100px 0;
        }

        .label {
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 14px;
        }

        .section-title {
            font-size: clamp(26px, 4vw, 44px);
            color: var(--black);
            margin-bottom: 18px;
        }

        .section-sub {
            font-size: 17px;
            color: var(--muted);
            max-width: 580px;
            line-height: 1.7;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 15px 30px;
            border-radius: 3px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 13.5px;
            letter-spacing: 0.4px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(30, 99, 233, .35);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, .55);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, .08);
            border-color: var(--white);
            transform: translateY(-2px);
        }

        .btn-ghost-dark {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, .2);
        }

        .btn-ghost-dark:hover {
            background: rgba(255, 255, 255, .06);
            border-color: rgba(255, 255, 255, .4);
            transform: translateY(-2px);
        }

        .btn-green {
            background: var(--green);
            color: var(--white);
        }

        .btn-green:hover {
            background: #1ebe57;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(37, 211, 102, .4);
        }

        .anim {
            opacity: 0;
            transition: opacity .7s ease, transform .7s ease;
        }

        .anim-up {
            transform: translateY(44px);
        }

        .anim-left {
            transform: translateX(-44px);
        }

        .anim-right {
            transform: translateX(44px);
        }

        .anim-scale {
            transform: scale(.92);
        }

        .anim.in {
            opacity: 1;
            transform: none;
        }

        .d1 {
            transition-delay: .08s;
        }

        .d2 {
            transition-delay: .16s;
        }

        .d3 {
            transition-delay: .24s;
        }

        .d4 {
            transition-delay: .32s;
        }

        .d5 {
            transition-delay: .40s;
        }

        .d6 {
            transition-delay: .48s;
        }

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 22px 0;
            transition: all .4s ease;
        }

        .nav.scrolled {
            background: rgba(15, 27, 43, .97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 14px 0;
            box-shadow: 0 4px 40px rgba(0, 0, 0, .35);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .nav-logo-mark {
            width: 42px;
            height: 42px;

            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            border-radius: 6px;
        }

        .nav-logo-mark svg {
            width: 24px;
            height: 24px;
            color: #fff;
        }

        .nav-logo-text {
            line-height: 1;
        }

        .nav-logo-name {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 17px;
            color: var(--white);
            letter-spacing: 1.5px;
            display: block;
        }

        .nav-logo-tag {
            font-family: 'Inter', sans-serif;
            font-size: 9.5px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(30, 99, 233, .9);
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links a {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 12.5px;
            color: rgba(255, 255, 255, .75);
            letter-spacing: .4px;
            transition: color .25s;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
            background: none;
            border: none;
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all .3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--dark-blue);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 36px;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 22px;
            color: var(--white);
            letter-spacing: 1px;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--dark-blue);
        }

        .hero-photo {
            position: absolute;
            inset: 0;

            background-color: #091528;
            background-image:

                radial-gradient(ellipse 900px 700px at 85% 40%, rgba(30, 99, 233,.13) 0%, transparent 65%),

                radial-gradient(ellipse 500px 500px at -5% 80%, rgba(21, 80, 192,.1) 0%, transparent 60%),

                radial-gradient(circle, rgba(30, 99, 233,.18) 1px, transparent 1px),

                linear-gradient(150deg, #0d2148 0%, #091a38 40%, #060f20 100%);
            background-size: 100% 100%, 100% 100%, 36px 36px, 100% 100%;
        }

        .hero-geo-diagonal {
            position: absolute; inset: 0;
            pointer-events: none;
            overflow: hidden;
        }
        .hero-geo-diagonal::before {
            content: '';
            position: absolute;
            top: -200px; right: -100px;
            width: 700px; height: 700px;
            border: 1px solid rgba(30, 99, 233,.1);
            border-radius: 50%;
            transform: rotate(-15deg);
        }
        .hero-geo-diagonal::after {
            content: '';
            position: absolute;
            top: -100px; right: 50px;
            width: 500px; height: 500px;
            border: 1px solid rgba(30, 99, 233,.07);
            border-radius: 50%;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, rgba(15, 27, 43, .96) 35%, rgba(5, 15, 40, .75) 100%);
        }

        .hero-geo {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .hero-geo-line {
            position: absolute;
            background: rgba(30, 99, 233, .12);
        }

        .hero-geo-line-v {
            width: 1px;
            top: 0;
            bottom: 0;
            right: 38%;
        }

        .hero-geo-line-h {
            height: 1px;
            left: 0;
            right: 0;
            bottom: 28%;
        }

        .hero-geo-glow {
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(30, 99, 233, .12) 0%, transparent 70%);
            top: -100px;
            right: -150px;
            border-radius: 50%;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            padding-top: 80px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(30, 99, 233, .12);
            border: 1px solid rgba(30, 99, 233, .28);
            border-radius: 100px;
            padding: 7px 18px;
            margin-bottom: 36px;
        }

        .hero-badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--primary);
            animation: blink 2s ease infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .35
            }
        }

        .hero-badge span {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(92, 141, 255, .9);
        }

        .hero h1 {
            font-size: clamp(40px, 6.5vw, 76px);
            color: var(--white);
            margin-bottom: 26px;
            line-height: 1.03;
        }

        .hero h1 em {
            color: var(--primary);
            font-style: normal;
        }

        .hero-sub {
            font-size: clamp(15px, 1.8vw, 19px);
            color: rgba(255, 255, 255, .72);
            max-width: 600px;
            line-height: 1.72;
            margin-bottom: 48px;
        }

        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 72px;
        }

        .hero-indicators {
            display: flex;
            gap: 44px;
            flex-wrap: wrap;
        }

        .hero-ind {
            display: flex;
            align-items: center;
            gap: 13px;
        }

        .hero-ind-icon {
            width: 46px;
            height: 46px;
            border-radius: 8px;
            background: rgba(30, 99, 233, .1);
            border: 1px solid rgba(30, 99, 233, .22);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .hero-ind-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 13px;
            color: rgba(255, 255, 255, .88);
        }

        .trust-bar {
            background: #060f1f;
            border-top: 1px solid rgba(30, 99, 233,.2);
            border-bottom: 1px solid rgba(30, 99, 233,.15);
            padding: 0;
            overflow: hidden;
        }
        .trust-bar-inner {
            display: flex;
            align-items: stretch;
        }
        .trust-item {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 22px 28px;
            border-right: 1px solid rgba(255,255,255,.05);
            transition: background .3s ease;
        }
        .trust-item:last-child { border-right: none; }
        .trust-item:hover { background: rgba(30, 99, 233,.06); }

        .trust-icon {
            width: 38px; height: 38px;
            border-radius: 8px;
            background: rgba(30, 99, 233,.12);
            border: 1px solid rgba(30, 99, 233,.2);
            display: flex; align-items: center; justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }
        .trust-icon svg { width: 18px; height: 18px; }

        .trust-text {}
        .trust-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 13px;
            color: #fff;
            display: block;
            line-height: 1.2;
            margin-bottom: 2px;
        }
        .trust-sub {
            font-family: 'Inter', sans-serif;
            font-size: 11.5px;
            color: rgba(255,255,255,.45);
            display: block;
        }

        @media (max-width: 768px) {
            .trust-bar-inner { flex-wrap: wrap; }
            .trust-item {
                flex: 1 1 50%;
                border-right: 1px solid rgba(255,255,255,.05);
                border-bottom: 1px solid rgba(255,255,255,.05);
                padding: 16px 20px;
            }
            .trust-item:nth-child(even) { border-right: none; }
        }

        .sobre {
            background: var(--white);
        }

        .sobre-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 84px;
            align-items: center;
        }

        .sobre-img-wrap {
            position: relative;
        }

        .sobre-img {
            width: 100%;
            aspect-ratio: 4/5;
            border-radius: 4px;
            overflow: hidden;
            background: linear-gradient(140deg, #162040 0%, #0F1B2B 100%);
            display: flex;
            align-items: center;
            justify-content: center;

        }

        .sobre-img-placeholder {
            text-align: center;
            color: rgba(255, 255, 255, .2);
        }

        .sobre-img-placeholder svg {
            width: 72px;
            height: 72px;
            margin-bottom: 12px;
        }

        .sobre-img-placeholder p {
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .2);
        }

        .sobre-badge {
            position: absolute;
            bottom: 40px;
            right: -28px;
            background: var(--primary);
            color: var(--white);
            padding: 22px 30px;
            border-radius: 4px;
            box-shadow: 0 20px 60px rgba(30, 99, 233, .45);
        }

        .sobre-badge-num {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 38px;
            line-height: 1;
            display: block;
        }

        .sobre-badge-txt {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            opacity: .88;
        }

        .sobre-text .section-sub {
            margin-bottom: 40px;
        }

        .sobre-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .sobre-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 20px;
            background: var(--light-gray);
            border-radius: 4px;
            border-left: 3px solid var(--primary);
            transition: transform .3s;
        }

        .sobre-card:hover {
            transform: translateY(-3px);
        }

        .sobre-card-check {
            color: var(--primary);
            font-size: 18px;
            line-height: 1;
            flex-shrink: 0;
        }

        .sobre-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--black);
        }

        .servicos {
            background: var(--light-gray);
        }

        .section-header-center {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header-center .section-sub {
            margin: 0 auto;
        }

        .srv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .srv-card {
            background: var(--white);
            padding: 40px 32px;
            border-radius: 4px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: all .4s ease;
        }

        .srv-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .4s ease;
        }

        .srv-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 24px 64px rgba(0, 0, 0, .1);
            border-color: transparent;
        }

        .srv-card:hover::after {
            transform: scaleX(1);
        }

        .srv-icon {
            width: 56px;
            height: 56px;
            background: rgba(30, 99, 233, .07);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 24px;
            transition: all .4s ease;
        }

        .srv-card:hover .srv-icon {
            background: var(--primary);
            color: var(--white);
        }

        .srv-icon svg {
            width: 26px;
            height: 26px;
        }

        .srv-card h3 {
            font-size: 16.5px;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 6px;
        }

        .srv-tagline {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 12.5px;
            color: var(--primary);
            margin-bottom: 12px;
            font-style: italic;
        }

        .srv-card p {
            font-size: 14px;
            line-height: 1.65;
        }

        .srv-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 22px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: .5px;
            color: var(--primary);
            opacity: 0;
            transform: translateY(5px);
            transition: all .3s ease;
        }

        .srv-card:hover .srv-link {
            opacity: 1;
            transform: translateY(0);
        }

        .diferenciais {
            background: var(--dark-blue);
            position: relative;
            overflow: hidden;
        }

        .diferenciais::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(30, 99, 233, .1) 0%, transparent 65%);
            pointer-events: none;
        }

        .diferenciais .section-title {
            color: var(--white);
        }

        .diferenciais .label {
            color: rgba(92, 141, 255, .8);
        }

        .dif-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .dif-card {
            padding: 36px 28px;
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 4px;
            background: rgba(255, 255, 255, .025);
            transition: all .4s ease;
        }

        .dif-card:hover {
            background: rgba(30, 99, 233, .07);
            border-color: rgba(30, 99, 233, .28);
            transform: translateY(-4px);
        }

        .dif-num {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 11px;
            letter-spacing: 2px;
            color: var(--primary);
            display: block;
            margin-bottom: 16px;
        }

        .dif-card h3 {
            font-size: 15.5px;
            color: var(--white);
            margin-bottom: 10px;
        }

        .dif-card p {
            font-size: 14px;
            color: rgba(255, 255, 255, .5);
            line-height: 1.65;
        }

        .processo {
            background: var(--white);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
            margin-top: 64px;
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 27px;
            left: calc(12.5% + 14px);
            right: calc(12.5% + 14px);
            height: 2px;
            background: linear-gradient(90deg, var(--primary), rgba(30, 99, 233, .15));
        }

        .step {
            text-align: center;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .step-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 26px;
            box-shadow: 0 8px 28px rgba(30, 99, 233, .38);
        }

        .step h3 {
            font-size: 15.5px;
            color: var(--black);
            margin-bottom: 10px;
        }

        .step p {
            font-size: 13.5px;
            line-height: 1.6;
        }

        .segmentos {
            background: var(--light-gray);
        }

        .seg-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .seg-card {
            background: var(--white);
            padding: 30px 16px;
            border-radius: 4px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all .3s ease;
        }

        .seg-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 14px 44px rgba(30, 99, 233, .12);
        }

        .seg-icon {
            font-size: 34px;
            display: block;
            margin-bottom: 12px;
        }

        .seg-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: var(--black);
            line-height: 1.3;
        }

        .cta-impact {
            background: var(--black);
            position: relative;
            overflow: hidden;
        }

        .cta-impact::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
        }

        .cta-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(30, 99, 233, .09) 0%, transparent 65%);
            top: -200px;
            right: -100px;
            pointer-events: none;
        }

        .cta-inner {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 64px;
            align-items: center;
        }

        .cta-inner h2 {
            font-size: clamp(28px, 4vw, 50px);
            color: var(--white);
            margin-bottom: 16px;
        }

        .cta-inner h2 em {
            color: var(--primary);
            font-style: normal;
        }

        .cta-inner p {
            font-size: 17px;
            color: rgba(255, 255, 255, .6);
            max-width: 520px;
        }

        .cta-btns {
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 250px;
        }

        .cta-btns .btn {
            justify-content: center;
        }

        .contato { background: var(--dark-blue); position: relative; overflow: hidden; }
        .contato::before {
            content: '';
            position: absolute; bottom: -200px; left: -200px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(30, 99, 233,.1) 0%, transparent 65%);
            pointer-events: none;
        }

        .contato-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 72px;
            align-items: start;
        }

        .contato-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(30, 99, 233,.12);
            border: 1px solid rgba(30, 99, 233,.28);
            border-radius: 100px;
            padding: 7px 16px;
            margin-bottom: 28px;
        }
        .contato-badge svg { color: var(--primary); }
        .contato-badge span {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(92, 141, 255,.9);
        }

        .contato-info h2 {
            font-size: clamp(26px, 3.5vw, 40px);
            color: var(--white);
            margin-bottom: 18px;
            line-height: 1.1;
        }
        .contato-info h2 em { color: var(--primary); font-style: normal; }
        .contato-info > p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.72; margin-bottom: 36px; }

        .contato-items { display: flex; flex-direction: column; gap: 18px; }
        .contato-item { display: flex; align-items: center; gap: 14px; }
        .contato-item-icon {
            width: 40px; height: 40px; flex-shrink: 0;
            border-radius: 8px;
            background: rgba(30, 99, 233,.1);
            border: 1px solid rgba(30, 99, 233,.2);
            display: flex; align-items: center; justify-content: center;
            color: var(--primary);
        }
        .contato-item-icon svg { width: 18px; height: 18px; }
        .contato-item span {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 14px;
            color: rgba(255,255,255,.8);
        }

        .contato-form-wrap {
            background: rgba(255,255,255,.035);
            border: 1px solid rgba(255,255,255,.07);
            border-radius: 6px;
            padding: 44px 40px;
        }

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

        .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
        .form-group:last-child { margin-bottom: 0; }

        .form-group label {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: .5px;
            color: rgba(255,255,255,.7);
        }

        .form-group input:not([type="radio"]),
        .form-group select,
        .form-group textarea {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 4px;
            padding: 13px 16px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: var(--white);
            transition: border-color .25s, background .25s;
            outline: none;
            width: 100%;
        }
        .form-group input:not([type="radio"])::placeholder,
        .form-group textarea::placeholder { color: rgba(255,255,255,.3); }
        .form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
        .form-group select option { background: #0F1B2B; color: #fff; }
        .form-group input:not([type="radio"]):focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            background: rgba(30, 99, 233,.08);
        }
        .form-group textarea { resize: vertical; min-height: 110px; }

        .btn-form {
            width: 100%;
            justify-content: center;
            padding: 16px;
            font-size: 14px;
            letter-spacing: .5px;
            margin-top: 8px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 32px 0;
        }
        .form-success-icon {
            width: 56px; height: 56px;
            border-radius: 50%;
            background: rgba(37,211,102,.15);
            border: 1px solid rgba(37,211,102,.3);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 16px;
            color: #25D366;
        }
        .form-success h3 { font-size: 18px; color: var(--white); margin-bottom: 8px; }
        .form-success p { font-size: 14px; color: rgba(255,255,255,.55); }

        @media (max-width: 900px) {
            .contato-grid { grid-template-columns: 1fr; gap: 48px; }
        }
        @media (max-width: 600px) {
            .form-row { grid-template-columns: 1fr; }
            .contato-form-wrap { padding: 32px 24px; }
        }

        .depoimentos {
            background: var(--white);
        }

        .dep-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .dep-card {
            background: var(--light-gray);
            padding: 40px 32px;
            border-radius: 4px;
            border: 1px solid transparent;
            transition: all .35s ease;
        }

        .dep-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 55px rgba(0, 0, 0, .08);
            border-color: var(--border);
        }

        .dep-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 18px;
        }

        .dep-stars span {
            color: #F59E0B;
            font-size: 15px;
        }

        .dep-result {
            display: inline-block;
            background: rgba(30, 99, 233, .09);
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 10.5px;
            letter-spacing: 1px;
            padding: 4px 12px;
            border-radius: 100px;
            margin-bottom: 16px;
        }

        .dep-text {
            font-size: 14.5px;
            line-height: 1.78;
            color: #374151;
            font-style: italic;
            margin-bottom: 28px;
        }

        .dep-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .dep-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 15px;
            color: var(--white);
            flex-shrink: 0;

        }

        .dep-info h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--black);
        }

        .dep-info span {
            font-size: 13px;
            color: var(--muted);
        }

        .faq {
            background: var(--light-gray);
        }

        .faq-list {
            max-width: 768px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 4px;
            margin-bottom: 10px;
            border: 1px solid var(--border);
            overflow: hidden;
            transition: border-color .3s, box-shadow .3s;
        }

        .faq-item.open {
            border-color: var(--primary);
            box-shadow: 0 8px 32px rgba(30, 99, 233, .1);
        }

        .faq-q {
            width: 100%;
            padding: 22px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
        }

        .faq-q h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--black);
        }

        .faq-ico {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all .3s ease;
        }

        .faq-item.open .faq-ico {
            background: var(--primary);
            transform: rotate(45deg);
        }

        .faq-ico svg {
            width: 14px;
            height: 14px;
            stroke: var(--black);
        }

        .faq-item.open .faq-ico svg {
            stroke: var(--white);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .42s ease;
        }

        .faq-item.open .faq-a {
            max-height: 260px;
        }

        .faq-a-inner {
            padding: 2px 28px 24px;
            font-size: 15px;
            color: var(--muted);
            line-height: 1.72;
        }

        .nav-social {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-social-link {
            width: 34px; height: 34px;
            border-radius: 6px;
            border: 1px solid rgba(255,255,255,.15);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,.65);
            transition: all .25s ease;
        }
        .nav-social-link:hover {
            border-color: var(--primary);
            color: var(--white);
            background: rgba(30, 99, 233,.12);
        }
        .nav-social-link svg { width: 15px; height: 15px; }

        @media (max-width: 768px) {
            .nav-social { display: none; }
        }

        .redes {
            background: var(--black);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .redes::before {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(30, 99, 233,.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .redes-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
            flex-wrap: wrap;
        }

        .redes-text {}
        .redes-text .label { color: rgba(92, 141, 255,.75); }
        .redes-text h2 {
            font-size: clamp(22px, 3vw, 36px);
            color: var(--white);
            margin-bottom: 10px;
        }
        .redes-text p { font-size: 16px; color: rgba(255,255,255,.55); max-width: 460px; }

        .redes-btns { display: flex; gap: 14px; flex-wrap: wrap; }

        .btn-instagram {
            background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: var(--white);
        }
        .btn-instagram:hover {
            opacity: .9;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(220,39,67,.4);
        }

        .btn-facebook {
            background: #1877F2;
            color: var(--white);
        }
        .btn-facebook:hover {
            background: #166FE5;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(24,119,242,.4);
        }

        .footer {
            background: var(--dark-blue);
            padding: 72px 0 36px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr;
            gap: 56px;
            padding-bottom: 52px;
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            margin-bottom: 32px;
        }

        .footer-brand-name {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 20px;
            color: var(--white);
            letter-spacing: 1.5px;
            display: block;
            margin-bottom: 6px;
        }

        .footer-brand-name span {
            color: var(--primary);
        }

        .footer-slogan {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 12px;
            color: rgba(255, 255, 255, .4);
            letter-spacing: .5px;
            font-style: italic;
            margin-bottom: 28px;
            display: block;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-ci {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, .65);
        }

        .footer-ci svg {
            color: var(--primary);
            flex-shrink: 0;
        }

        .footer-ci a {
            color: rgba(255, 255, 255, .65);
            transition: color .25s;
        }

        .footer-ci a:hover {
            color: var(--white);
        }

        .footer-col h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 11px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, .55);
            transition: color .25s;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .back-top {
            position: fixed;
            bottom: 104px;
            right: 30px;
            z-index: 9998;
            width: 42px; height: 42px;
            border-radius: 50%;
            background: rgba(15, 27, 43,.85);
            border: 1px solid rgba(30, 99, 233,.3);
            backdrop-filter: blur(8px);
            display: flex; align-items: center; justify-content: center;
            color: var(--white);
            cursor: pointer;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity .3s, transform .3s, background .25s;
            pointer-events: none;
        }
        .back-top.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .back-top:hover {
            background: var(--primary);
            border-color: var(--primary);
        }
        .back-top svg { width: 18px; height: 18px; }

        .cookie-banner {
            position: fixed;
            bottom: 0; left: 0; right: 0;
            z-index: 10000;
            background: rgba(15, 27, 43,.97);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(30, 99, 233,.2);
            padding: 18px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            transform: translateY(100%);
            transition: transform .4s ease;
        }
        .cookie-banner.show { transform: translateY(0); }

        .cookie-text { flex: 1; min-width: 240px; }
        .cookie-text p {
            font-size: 13px;
            color: rgba(255,255,255,.7);
            line-height: 1.6;
        }
        .cookie-text a {
            color: var(--primary);
            text-decoration: underline;
        }
        .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
        .cookie-accept {
            padding: 9px 22px;
            background: var(--primary);
            color: #fff;
            border: none; border-radius: 3px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700; font-size: 12px;
            cursor: pointer;
            transition: background .25s;
        }
        .cookie-accept:hover { background: var(--primary-dark); }
        .cookie-decline {
            padding: 9px 16px;
            background: transparent;
            color: rgba(255,255,255,.5);
            border: 1px solid rgba(255,255,255,.15); border-radius: 3px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600; font-size: 12px;
            cursor: pointer;
            transition: all .25s;
        }
        .cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,.35); }

        .form-radio-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            padding: 4px 0;
        }
        .form-radio {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: rgba(255,255,255,.75);
            cursor: pointer;
        }
        .form-radio input[type="radio"] {
            width: 16px; height: 16px;
            accent-color: var(--primary);
            cursor: pointer;
            flex-shrink: 0;
        }

        .footer-copy {
            font-size: 12.5px;
            color: rgba(255, 255, 255, .3);
        }

        .footer-tag {
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .2);
        }

        .wa-fixed {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
        }

        .wa-btn {
            width: 62px;
            height: 62px;
            border-radius: 50%;
            background: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(37, 211, 102, .55);
            transition: all .3s ease;
            position: relative;
        }

        .wa-btn::before {
            content: '';
            position: absolute;
            inset: -7px;
            border-radius: 50%;
            border: 2px solid rgba(37, 211, 102, .28);
            animation: wa-pulse 2.2s ease infinite;
        }

        @keyframes wa-pulse {
            0% {
                transform: scale(1);
                opacity: 1
            }

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

        .wa-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 44px rgba(37, 211, 102, .65);
        }

        .wa-btn svg {
            width: 30px;
            height: 30px;
        }

        .wa-tip {
            position: absolute;
            right: calc(100% + 14px);
            top: 50%;
            transform: translateY(-50%);
            background: var(--black);
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 12px;
            white-space: nowrap;
            padding: 9px 16px;
            border-radius: 4px;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s;
        }

        .wa-tip::after {
            content: '';
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent;
            border-left-color: var(--black);
        }

        .wa-fixed:hover .wa-tip {
            opacity: 1;
        }

        @media (max-width: 1100px) {
            .seg-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 48px;
            }

            .steps::before {
                display: none;
            }
        }

        @media (max-width: 960px) {
            .srv-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .dif-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .sobre-grid {
                grid-template-columns: 1fr;
                gap: 56px;
            }

            .sobre-badge {
                right: 0;
            }

            .dep-grid {
                grid-template-columns: 1fr;
                max-width: 560px;
                margin: 0 auto;
            }

            .cta-inner {
                grid-template-columns: 1fr;
                gap: 44px;
            }

            .cta-btns {
                flex-direction: row;
                min-width: 0;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 72px 0;
            }

            .nav-links {
                display: none;
            }

            .nav-right .btn {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .srv-grid {
                grid-template-columns: 1fr;
                max-width: 440px;
                margin: 0 auto;
            }

            .dif-grid {
                grid-template-columns: 1fr;
            }

            .seg-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-indicators {
                gap: 20px;
            }

            .sobre-cards {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .steps {
                grid-template-columns: 1fr;
            }

            .cta-btns {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .hero-btns {
                flex-direction: column;
            }

            .seg-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .wa-fixed {
                bottom: 20px;
                right: 20px;
            }
        }

.nav-drop {
    position: relative;
}

.nav-drop > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-drop > a svg {
    width: 11px;
    height: 11px;
    transition: transform .25s ease;
}

.nav-drop:hover > a svg,
.nav-drop:focus-within > a svg {
    transform: rotate(180deg);
}

.nav-drop-menu {
    position: absolute;
    top: 100%;
    left: -18px;
    min-width: 240px;
    background: rgba(15, 27, 43, .98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(30, 99, 233, .22);
    border-radius: 6px;
    padding: 10px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 1001;
}

.nav-drop::after {

    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-drop-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(6px);
}

.nav-drop-menu li {
    margin: 0;
}

.nav-drop-menu a {
    display: block;
    padding: 11px 22px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .75);
    transition: all .2s ease;
    letter-spacing: .3px;
}

.nav-drop-menu a:hover {
    background: rgba(30, 99, 233, .14);
    color: #fff;
    padding-left: 26px;
}

.nav-drop-menu .nav-drop-all {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 8px;
    padding-top: 8px;
}

.nav-drop-menu .nav-drop-all a {
    color: var(--primary-light);
    font-size: 12px;
}

.mobile-menu-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.mobile-menu-group-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(92, 141, 255, .8);
}

.mobile-menu-group a {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--dark-blue);
    padding: 170px 0 90px;
}

.page-hero .hero-content {
    padding-top: 0;
    max-width: 820px;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1.06;
}

.page-hero h1 em {
    color: var(--primary);
    font-style: normal;
}

.page-hero .hero-sub {
    margin-bottom: 38px;
}

.page-hero .hero-btns {
    margin-bottom: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .5px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .55);
    transition: color .25s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .bc-sep {
    color: rgba(255, 255, 255, .25);
}

.breadcrumb .bc-current {
    color: var(--primary-light);
}

.frentes {
    background: var(--light-gray);
}

.frente-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.frente-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
}

.frente-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.frente-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .12);
    border-color: transparent;
}

.frente-card:hover::after {
    transform: scaleX(1);
}

.frente-icon {
    width: 62px;
    height: 62px;
    background: rgba(30, 99, 233, .08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 26px;
    transition: all .4s ease;
}

.frente-card:hover .frente-icon {
    background: var(--primary);
    color: var(--white);
}

.frente-icon svg {
    width: 30px;
    height: 30px;
}

.frente-card h3 {
    font-size: 21px;
    color: var(--black);
    margin-bottom: 12px;
}

.frente-card > p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.frente-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}

.frente-tags span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .4px;
    color: var(--muted);
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 13px;
}

.frente-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    color: var(--primary);
    transition: gap .25s ease;
}

.frente-card:hover .frente-link {
    gap: 12px;
}

.frente-list {
    margin-bottom: 26px;
}

.frente-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    padding: 5px 0;
}

.frente-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.destaques-bar {
    background: var(--dark-blue);
}

.destaques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 960px) {
    .frente-grid {
        grid-template-columns: 1fr;
    }

    .destaques-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .frente-card {
        padding: 34px 26px;
    }

    .page-hero {
        padding: 140px 0 72px;
    }
}

.legal {
    background: var(--white);
    padding: 170px 0 100px;
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--black);
    margin-bottom: 10px;
}

.legal-updated {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 44px;
}

.legal-content h2 {
    font-size: 20px;
    color: var(--black);
    margin: 40px 0 14px;
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.seg-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1100px) {
    .seg-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .seg-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.qe-hero .hero-content {
    max-width: 100%;
    padding-top: 0;
}

.qe-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.qe-hero-text .hero-sub {
    margin-bottom: 34px;
}

.qe-panel-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.qe-panel-wrap::before {
    content: '';
    position: absolute;
    inset: -8% -6%;
    background: radial-gradient(ellipse at 60% 45%, rgba(30, 99, 233, .28) 0%, transparent 65%);
    filter: blur(10px);
    pointer-events: none;
}

.qe-panel {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5));
    animation: qe-float 7s ease-in-out infinite;
}

@keyframes qe-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.qe-led {
    animation: qe-led-blink 2.6s ease-in-out infinite;
}
.qe-led-2 { animation-delay: .6s; }
.qe-led-3 { animation-delay: 1.2s; }
.qe-led-4 { animation-delay: 1.8s; }

@keyframes qe-led-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

@media (max-width: 960px) {
    .qe-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .qe-panel-wrap { order: -1; }
    .qe-panel { max-width: 320px; }
}

.beneficios {
    background: var(--white);
}

.benef-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.benef-card {
    padding: 38px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.benef-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.benef-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .1);
    border-color: transparent;
}

.benef-card:hover::after { transform: scaleX(1); }

.benef-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(30, 99, 233, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 22px;
    transition: background .4s ease, color .4s ease;
}

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

.benef-icon svg { width: 26px; height: 26px; }

.benef-card h3 {
    font-size: 17px;
    color: var(--black);
    margin-bottom: 10px;
}

.benef-card p {
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .benef-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .benef-grid { grid-template-columns: 1fr; }
}

.fabrica {
    background: var(--light-gray);
}

.fab-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.fab-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.fab-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .12);
    border-color: transparent;
}

.fab-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(30, 99, 233, .22) 0%, transparent 60%),
        linear-gradient(150deg, #16233c 0%, #0f1b2b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

.fab-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 99, 233, .1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 99, 233, .1) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .6;
}

.fab-media svg {
    position: relative;
    width: 46px;
    height: 46px;
    color: var(--primary-light);
    transition: transform .45s ease, filter .45s ease;
}

.fab-card:hover .fab-media svg {
    transform: scale(1.12);
    filter: drop-shadow(0 0 12px rgba(30, 99, 233, .6));
}

.fab-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 24px 26px;
}

.fab-body h3 {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 9px;
}

.fab-body p {
    font-size: 13.5px;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 18px;
}

.fab-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .4px;
    color: var(--primary);
    transition: gap .25s ease;
}

.fab-card:hover .fab-more { gap: 11px; }

@media (max-width: 1100px) {
    .fab-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .fab-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .fab-grid { grid-template-columns: 1fr; }
}

.timeline-section { background: var(--dark-blue); position: relative; overflow: hidden; }
.timeline-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(30, 99, 233, .1) 0%, transparent 65%);
    pointer-events: none;
}
.timeline-section .section-title { color: var(--white); }
.timeline-section .label { color: rgba(92, 141, 255, .8); }
.timeline-section .section-sub { color: rgba(255, 255, 255, .55); }

.timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(8.33% + 14px);
    right: calc(8.33% + 14px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(30, 99, 233, .18));
}

.tl-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.tl-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 8px 28px rgba(30, 99, 233, .4);
    border: 4px solid var(--dark-blue);
}

.tl-step h3 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.25;
}

.tl-step p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .timeline { grid-template-columns: repeat(3, 1fr); gap: 44px 0; }
    .timeline::before { display: none; }
}
@media (max-width: 680px) {
    .timeline { grid-template-columns: repeat(2, 1fr); }
}

.why {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 22px 22px;
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    transition: transform .3s ease, box-shadow .3s ease;
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
}

.why-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(30, 99, 233, .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-check svg { width: 14px; height: 14px; }

.why-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    padding-top: 3px;
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .why-grid { grid-template-columns: 1fr; }
}

.galeria { background: var(--light-gray); }

.gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gal-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
}

.gal-media {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 65% 35%, rgba(30, 99, 233, .22) 0%, transparent 60%),
        linear-gradient(150deg, #16233c 0%, #0f1b2b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .6s cubic-bezier(.2, .7, .2, 1);

}

.gal-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 99, 233, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 99, 233, .08) 1px, transparent 1px);
    background-size: 26px 26px;
}

.gal-media svg {
    position: relative;
    width: 44px;
    height: 44px;
    color: rgba(92, 141, 255, .85);
}

.gal-item:hover .gal-media { transform: scale(1.09); }

.gal-label {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 30px 18px 15px;
    background: linear-gradient(transparent, rgba(15, 27, 43, .92));
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .3px;
    color: #fff;
}

.gal-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(30, 99, 233, 0);
    transition: background .4s ease;
}

.gal-item:hover .gal-overlay { background: rgba(30, 99, 233, .12); }

@media (max-width: 768px) {
    .gal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
    .gal-grid { grid-template-columns: 1fr; }
}
