:root {
            --royal: #053188;
            --royal-mid: #193d87;
            --royal-dark: #00154a;
            --cyan: #01d7fb;
            --cyan-soft: #7aeeff;
            --gold: #c9a84c;
            --gold-light: #f0d080;
            --cream: #f0f6ff;
            --white: #ffffff;
            --gray: #5a6a8a;
            --light: #e8f0fd;
            --danger: #dc2626;
            --green: #16a34a;
        }

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

        html {
            scroll-behavior: smooth;
        }

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

        /* ── TICKER ── */
        .ticker-bar {
            background: linear-gradient(90deg, var(--royal-dark), var(--royal));
            color: var(--gold-light);
            padding: 8px 0;
            display: flex;
            align-items: center;
            font-size: 13px;
            gap: 0;
            overflow: hidden;
        }

        .ticker-clock {
            background: var(--cyan);
            color: var(--royal-dark);
            font-weight: 700;
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            flex-shrink: 0;
            font-size: 12px;
            letter-spacing: 0.5px;
        }

        .ticker-clock span {
            font-size: 15px;
            font-weight: 800;
        }

        .ticker-scroll-wrapper {
            flex: 1;
            overflow: hidden;
            position: relative;
            padding: 0 16px;
        }

        .ticker-scroll-wrapper::before,
        .ticker-scroll-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 40px;
            z-index: 2;
        }

        .ticker-scroll-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--royal), transparent);
        }

        .ticker-scroll-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--royal), transparent);
        }

        .ticker-track {
            display: flex;
            gap: 60px;
            animation: ticker 30s linear infinite;
            white-space: nowrap;
        }

        .ticker-track span::before {
            content: '✦ ';
            color: var(--gold);
        }

        @keyframes ticker {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ── NAVBAR ── */
        nav {
            background: var(--white);
            border-bottom: 3px solid var(--cyan);
            padding: 14px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 24px rgba(10, 35, 66, .10);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text {
            line-height: 1.1;
        }

        .logo-text strong {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            color: var(--royal);
        }

        .logo-text small {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--cyan);
            font-weight: 600;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--royal);
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 0.3px;
            transition: color .2s;
        }

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

        .nav-cta {
            background: linear-gradient(135deg, var(--royal), var(--royal-mid));
            color: var(--white);
            border: none;
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            letter-spacing: 0.5px;
            transition: background .2s, transform .15s;
        }

        .nav-cta:hover {
            background: var(--cyan);
            color: var(--royal-dark);
            transform: translateY(-1px);
        }

        /* ── HERO ── */
        .hero {
            min-height: 90vh;
            background: linear-gradient(135deg, var(--royal-dark) 0%, var(--royal) 60%, var(--royal-mid) 100%);
            display: grid;
            grid-template-columns: 1fr 1fr;
            overflow: hidden;
            position: relative;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(1, 215, 251, .10), transparent 60%);
            pointer-events: none;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(45deg,
                    rgba(1, 215, 251, .06) 0px,
                    rgba(1, 215, 251, .06) 1px,
                    transparent 1px,
                    transparent 40px);
        }

        .hero-content {
            padding: 80px 64px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(1, 215, 251, .12);
            border: 1px solid rgba(1, 215, 251, .45);
            color: var(--cyan-soft);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 100px;
            width: fit-content;
            margin-bottom: 28px;
            animation: fadeUp .6s ease both;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(42px, 5vw, 68px);
            color: var(--white);
            line-height: 1.08;
            margin-bottom: 24px;
            animation: fadeUp .6s .1s ease both;
        }

        .hero h1 em {
            font-style: normal;
            color: var(--cyan);
            text-shadow: 0 0 30px rgba(1, 215, 251, .35);
        }

        .hero-desc {
            font-size: 17px;
            color: rgba(255, 255, 255, .7);
            line-height: 1.7;
            max-width: 460px;
            margin-bottom: 40px;
            animation: fadeUp .6s .2s ease both;
            font-weight: 300;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeUp .6s .3s ease both;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--royal);
            padding: 15px 32px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
            box-shadow: 0 8px 24px rgba(201, 168, 76, .30);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(201, 168, 76, .45);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            padding: 15px 32px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border: 1.5px solid rgba(255, 255, 255, .3);
            cursor: pointer;
            transition: border-color .2s, background .2s;
        }

        .btn-outline:hover {
            border-color: var(--gold);
            background: rgba(201, 168, 76, .08);
        }

        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            padding: 60px;
        }

        .hero-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            width: 100%;
            max-width: 420px;
        }

        .hero-card {
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(1, 215, 251, .22);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 24px 20px;
            text-align: center;
            transition: transform .3s, background .3s;
            animation: fadeUp .6s ease both;
        }

        .hero-card:nth-child(1) {
            animation-delay: .15s;
        }

        .hero-card:nth-child(2) {
            animation-delay: .25s;
            margin-top: 24px;
        }

        .hero-card:nth-child(3) {
            animation-delay: .35s;
        }

        .hero-card:nth-child(4) {
            animation-delay: .45s;
            margin-top: 24px;
        }

        .hero-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, .12);
        }

        .hero-card .icon {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .hero-card h4 {
            color: var(--cyan-soft);
            font-size: 13px;
            font-weight: 600;
        }

        .hero-card p {
            color: rgba(255, 255, 255, .5);
            font-size: 11px;
            margin-top: 4px;
        }

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

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

        /* ── STATS BAR ── */
        .stats-bar {
            background: linear-gradient(90deg, var(--royal-dark), var(--royal-mid), var(--royal-dark));
            padding: 28px 48px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 900;
            color: var(--cyan);
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, .75);
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: .7;
            margin-top: 4px;
        }

        .stat-div {
            width: 1px;
            height: 48px;
            background: rgba(1, 215, 251, .25);
        }

        /* ── SECTIONS ── */
        section {
            padding: 96px 48px;
        }

        .section-label {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--cyan);
            font-weight: 700;
            margin-bottom: 12px;
            filter: drop-shadow(0 0 6px rgba(1, 215, 251, .35));
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(30px, 3.5vw, 46px);
            color: var(--royal);
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 16px;
            color: var(--gray);
            max-width: 560px;
            line-height: 1.7;
            font-weight: 300;
        }

        /* ── SERVIÇOS ── */
        #servicos {
            background: var(--white);
        }

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

        .services-header .section-desc {
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .service-card {
            border: 2px solid transparent;
            background: var(--cream);
            border-radius: 20px;
            padding: 36px 28px;
            transition: all .3s;
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--royal-dark), var(--royal));
            opacity: 0;
            transition: opacity .3s;
            border-radius: inherit;
        }

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

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 48px rgba(10, 35, 66, .18);
        }

        .service-card>* {
            position: relative;
            z-index: 1;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--royal), var(--royal-mid));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 20px;
            transition: background .3s;
        }

        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, .15);
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--royal);
            margin-bottom: 8px;
            transition: color .3s;
        }

        .service-card p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.65;
            transition: color .3s;
        }

        .service-card:hover h3,
        .service-card:hover p {
            color: var(--white);
        }

        /* ── PRODUTOS ── */
        #produtos {
            background: var(--cream);
        }

        .products-layout {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 80px;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .product-card {
            background: var(--white);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(10, 35, 66, .07);
            display: flex;
            align-items: center;
            gap: 16px;
            transition: box-shadow .3s, transform .3s;
        }

        .product-card:hover {
            box-shadow: 0 8px 32px rgba(10, 35, 66, .1);
            transform: translateY(-2px);
        }

        .product-emoji {
            font-size: 28px;
            flex-shrink: 0;
        }

        .product-card h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--royal);
        }

        .product-card p {
            font-size: 12px;
            color: var(--gray);
            margin-top: 3px;
        }

        /* ── DIFERENCIAIS ── */
        #diferenciais {
            background: linear-gradient(135deg, var(--royal-dark), var(--royal));
        }

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

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

        .diff-header .section-label {
            color: var(--gold);
        }

        .diff-header .section-desc {
            color: rgba(255, 255, 255, .6);
            margin: 0 auto;
        }

        .diff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .diff-card {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(1, 215, 251, .2);
            border-radius: 18px;
            padding: 36px 28px;
            text-align: center;
            transition: background .3s;
        }

        .diff-card:hover {
            background: rgba(255, 255, 255, .09);
        }

        .diff-card .icon {
            font-size: 40px;
            margin-bottom: 16px;
        }

        .diff-card h3 {
            color: var(--cyan-soft);
            font-size: 17px;
            margin-bottom: 10px;
        }

        .diff-card p {
            color: rgba(255, 255, 255, .55);
            font-size: 14px;
            line-height: 1.6;
            font-weight: 300;
        }

        /* ── CADASTRO PRESTADORES ── */
        #cadastro {
            background: linear-gradient(135deg, var(--cream) 50%, #e8f4fd 100%);
            position: relative;
            overflow: hidden;
        }

        #cadastro::before {
            content: '🏛️';
            font-size: 280px;
            position: absolute;
            right: -40px;
            top: -40px;
            opacity: .04;
            pointer-events: none;
        }

        .cadastro-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: start;
            max-width: 1100px;
            margin: 0 auto;
        }

        .cadastro-info h2 {
            margin-bottom: 20px;
        }

        .cadastro-info p {
            margin-bottom: 24px;
        }

        .roles-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 24px;
        }

        .role-tag {
            background: var(--white);
            border: 1.5px solid rgba(10, 35, 66, .1);
            border-radius: 10px;
            padding: 10px 14px;
            font-size: 13px;
            font-weight: 500;
            color: var(--royal);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: border-color .2s, background .2s;
        }

        .role-tag:hover {
            border-color: var(--gold);
            background: #fefdf7;
        }

        .role-tag .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--cyan);
            flex-shrink: 0;
        }

        /* FORM */
        .form-card {
            background: var(--white);
            border-radius: 24px;
            padding: 48px 40px;
            box-shadow: 0 24px 80px rgba(10, 35, 66, .12);
            border-top: 4px solid var(--cyan);
        }

        .form-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            color: var(--royal);
            margin-bottom: 8px;
        }

        .form-card p {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 32px;
        }

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

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .5px;
            color: var(--royal);
            margin-bottom: 6px;
            text-transform: uppercase;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #e5e7eb;
            border-radius: 10px;
            font-family: inherit;
            font-size: 14px;
            color: var(--royal);
            background: var(--cream);
            transition: border-color .2s, box-shadow .2s;
            outline: none;
            -webkit-appearance: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(1, 215, 251, .15);
            background: var(--white);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 90px;
        }

        .form-submit {
            width: 100%;
            background: var(--royal);
            color: var(--white);
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: .5px;
            transition: background .2s, transform .15s;
            margin-top: 8px;
            font-family: inherit;
        }

        .form-submit:hover {
            background: var(--royal-mid);
            transform: translateY(-1px);
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 24px;
        }

        .form-success .checkmark {
            font-size: 56px;
            margin-bottom: 16px;
        }

        .form-success h4 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: var(--green);
            margin-bottom: 8px;
        }

        .form-success p {
            color: var(--gray);
            font-size: 14px;
        }

        /* ── CONTATO ── */
        #contato {
            background: var(--white);
        }

        .contato-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 32px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--royal);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-item h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--royal);
            margin-bottom: 4px;
        }

        .contact-item p {
            font-size: 14px;
            color: var(--gray);
        }

        .map-placeholder {
            background: linear-gradient(135deg, var(--royal-dark), var(--royal), var(--royal-mid));
            border-radius: 20px;
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 12px;
            color: rgba(255, 255, 255, .7);
            font-size: 48px;
        }

        .map-placeholder span {
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--gold);
        }

        /* ── FOOTER ── */
        footer {
            background: var(--royal-dark);
            color: rgba(255, 255, 255, .6);
            padding: 64px 48px 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand .logo-text strong {
            color: var(--white);
            font-size: 20px;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            margin-top: 16px;
            font-weight: 300;
        }

        .footer-col h5 {
            color: var(--cyan);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
        }

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

        .footer-col ul li a {
            color: rgba(255, 255, 255, .55);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
        }

        .footer-col ul li a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 24px;
            padding-right: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            flex-wrap: wrap;
            gap: 12px;
        }

        /* ── TOAST ── */
        .toast {
            position: fixed;
            bottom: 32px;
            right: 32px;
            background: var(--royal);
            color: var(--white);
            padding: 16px 24px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
            z-index: 999;
            transform: translateY(100px);
            opacity: 0;
            transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
            border-left: 4px solid var(--cyan);
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }



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

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

        .hamburger.open span:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }

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

        .hamburger.open span:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 21, 74, .97);
            z-index: 200;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 36px;
        }

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

        .mobile-menu a {
            color: var(--white);
            font-size: 22px;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 1px;
            transition: color .2s;
        }

        .mobile-menu a:hover {
            color: var(--cyan);
        }

        .mobile-menu .close-btn {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
        }

        .mobile-menu .cta-mobile {
            background: var(--cyan);
            color: var(--royal-dark) !important;
            padding: 14px 36px;
            border-radius: 12px;
            font-weight: 800 !important;
            font-size: 16px !important;
            margin-top: 8px;
        }

        /* ── TABLET (≤1024px) ── */
        @media (max-width: 1024px) {
            nav {
                padding: 12px 28px;
            }

            .nav-links {
                gap: 20px;
            }

            .nav-links a {
                font-size: 13px;
            }

            .hero-content {
                padding: 60px 40px;
            }

            .hero-cards {
                max-width: 360px;
            }

            section {
                padding: 80px 36px;
            }

            .products-layout {
                gap: 48px;
            }

            .cadastro-layout {
                gap: 48px;
            }

            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr 1fr;
                gap: 32px;
            }
        }

        /* ── MOBILE LANDSCAPE / SMALL TABLET (≤768px) ── */
        @media (max-width: 768px) {

            /* Nav */
            nav {
                padding: 12px 20px;
            }

            .nav-links {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            /* Ticker */
            .ticker-clock {
                padding: 0 12px;
                font-size: 11px;
            }

            .ticker-clock span {
                font-size: 13px;
            }

            .ticker-bar {
                font-size: 12px;
            }

            /* Hero */
            .hero {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .hero-content {
                padding: 56px 24px 48px;
            }

            .hero-visual {
                display: none;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-desc {
                font-size: 15px;
            }

            .hero-actions {
                flex-direction: column;
                gap: 12px;
            }

            .hero-actions .btn-primary,
            .hero-actions .btn-outline {
                text-align: center;
            }

            /* Stats */
            .stats-bar {
                padding: 20px 16px;
                gap: 12px;
                flex-wrap: wrap;
            }

            .stat-num {
                font-size: 28px;
            }

            .stat-div {
                display: none;
            }

            .stat {
                min-width: calc(50% - 12px);
            }

            /* Sections */
            section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 28px;
            }

            /* Services */
            .services-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .service-card {
                padding: 24px 18px;
            }

            .service-card h3 {
                font-size: 15px;
            }

            /* Products */
            .products-layout {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .products-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }

            /* Diferenciais */
            .diff-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .diff-card {
                padding: 24px 18px;
            }

            /* Cadastro */
            .cadastro-layout {
                grid-template-columns: 1fr;
                gap: 36px;
            }

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

            .form-card {
                padding: 32px 24px;
            }

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

            /* Contato */
            .contato-layout {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .map-placeholder {
                height: 220px;
            }

            /* Footer */
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            footer {
                padding: 48px 20px 24px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 6px;
                padding-right: 0;
            }

            /* FAB */
            .toast {
                bottom: 20px;
                right: 16px;
                left: 16px;
                font-size: 13px;
            }
        }

        /* ── MOBILE PORTRAIT (≤480px) ── */
        @media (max-width: 480px) {
            nav {
                padding: 10px 16px;
            }

            .logo-icon img,
            .logo-icon {
                width: 44px !important;
                height: 44px !important;
            }

            .logo-text strong {
                font-size: 15px;
            }

            /* Hero */
            .hero-content {
                padding: 48px 18px 40px;
            }

            .hero h1 {
                font-size: 30px;
            }

            .hero-badge {
                font-size: 10px;
                padding: 5px 12px;
            }

            .hero-desc {
                font-size: 14px;
            }

            /* Stats — 1 column */
            .stat {
                min-width: 100%;
            }

            /* Services — 1 column */
            .services-grid {
                grid-template-columns: 1fr;
            }

            .services-header {
                margin-bottom: 40px;
            }

            /* Products */
            .products-grid {
                grid-template-columns: 1fr;
            }

            /* Diferenciais */
            .diff-grid {
                grid-template-columns: 1fr;
            }

            /* Form */
            .form-card {
                padding: 28px 18px;
            }

            .form-card h3 {
                font-size: 20px;
            }

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

            /* Contato */
            .contact-item {
                gap: 12px;
            }

            .contact-icon {
                width: 42px;
                height: 42px;
                font-size: 18px;
            }

            /* Footer */
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .stat-num {
                font-size: 26px;
            }

            /* Section label/title */
            .section-title {
                font-size: 26px;
            }

            .section-desc {
                font-size: 14px;
            }
        }

        /* ── VERY SMALL (≤360px) ── */
        @media (max-width: 360px) {
            .hero h1 {
                font-size: 26px;
            }

            .hero-content {
                padding: 40px 14px 32px;
            }

            section {
                padding: 48px 14px;
            }

            .form-card {
                padding: 22px 14px;
            }

            nav {
                padding: 10px 12px;
            }
        }

        /* ── RIGHT FAB STACK ── */
        .fab-stack {
            position: fixed;
            right: 24px;
            bottom: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            z-index: 998;
        }

        .fab-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            cursor: pointer;
            border: none;
            transition: transform .2s, box-shadow .2s;
            text-decoration: none;
            flex-shrink: 0;
        }

        .fab-btn:hover {
            transform: scale(1.1);
        }

        .fab-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .5px;
            text-transform: uppercase;
            color: var(--gray);
            margin-top: 2px;
            text-align: center;
        }

        .fab-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .fab-top {
            background: var(--royal-mid);
            color: var(--white);
            box-shadow: 0 4px 16px rgba(5, 49, 136, .35);
            animation: none;
        }

        .fab-top:hover {
            box-shadow: 0 8px 24px rgba(5, 49, 136, .5);
        }



        .fab-chat {
            background: linear-gradient(135deg, var(--royal), var(--cyan));
            color: var(--white);
            box-shadow: 0 4px 20px rgba(1, 215, 251, .4);
            animation: chatPulse 2.8s infinite;
            position: relative;
        }

        .fab-chat::after {
            content: '';
            position: absolute;
            top: -3px;
            right: -3px;
            width: 14px;
            height: 14px;
            background: #ef4444;
            border-radius: 50%;
            border: 2px solid var(--white);
            animation: dotBlink 1.5s ease-in-out infinite;
        }

        @keyframes chatPulse {

            0%,
            100% {
                box-shadow: 0 4px 20px rgba(1, 215, 251, .4);
            }

            50% {
                box-shadow: 0 4px 36px rgba(1, 215, 251, .75);
            }
        }

        @keyframes dotBlink {

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

            50% {
                opacity: .6;
                transform: scale(.8);
            }
        }

        /* ── CHAT MODAL ── */
        .chat-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 21, 74, .55);
            backdrop-filter: blur(4px);
            z-index: 1000;
            align-items: flex-end;
            justify-content: flex-end;
            padding: 24px;
        }

        .chat-overlay.open {
            display: flex;
        }

        .chat-box {
            width: 380px;
            max-width: calc(100vw - 32px);
            height: 540px;
            max-height: calc(100vh - 120px);
            background: var(--white);
            border-radius: 24px;
            box-shadow: 0 32px 80px rgba(0, 21, 74, .35);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            animation: chatSlideUp .35s cubic-bezier(.34, 1.4, .64, 1) both;
            border: 1.5px solid rgba(1, 215, 251, .25);
        }

        @keyframes chatSlideUp {
            from {
                opacity: 0;
                transform: translateY(40px) scale(.96);
            }

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

        .chat-header {
            background: linear-gradient(135deg, var(--royal-dark), var(--royal));
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .chat-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cyan), var(--royal-mid));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            border: 2px solid rgba(1, 215, 251, .5);
        }

        .chat-header-info {
            flex: 1;
        }

        .chat-header-info strong {
            color: var(--white);
            font-size: 15px;
            display: block;
        }

        .chat-header-info span {
            font-size: 11px;
            color: var(--cyan);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .chat-header-info span::before {
            content: '';
            width: 7px;
            height: 7px;
            background: #22c55e;
            border-radius: 50%;
            display: inline-block;
            animation: blink .9s ease-in-out infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .4
            }
        }

        .chat-close {
            background: rgba(255, 255, 255, .12);
            border: none;
            color: var(--white);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s;
            flex-shrink: 0;
        }

        .chat-close:hover {
            background: rgba(255, 255, 255, .22);
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: #f4f7ff;
            scroll-behavior: smooth;
        }

        .chat-messages::-webkit-scrollbar {
            width: 4px;
        }

        .chat-messages::-webkit-scrollbar-track {
            background: transparent;
        }

        .chat-messages::-webkit-scrollbar-thumb {
            background: rgba(5, 49, 136, .2);
            border-radius: 4px;
        }

        .msg {
            max-width: 82%;
            padding: 11px 15px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.55;
            animation: msgIn .25s ease both;
        }

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

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

        .msg.bot {
            background: var(--white);
            color: var(--royal);
            border-bottom-left-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
            align-self: flex-start;
        }

        .msg.user {
            background: var(--royal);
            color: var(--white);
            border-bottom-right-radius: 4px;
            align-self: flex-end;
        }

        .msg-time {
            font-size: 10px;
            opacity: .5;
            margin-top: 4px;
            display: block;
        }

        .typing-dots {
            display: flex;
            gap: 5px;
            align-items: center;
            padding: 4px 2px;
        }

        .typing-dots span {
            width: 7px;
            height: 7px;
            background: var(--royal-mid);
            border-radius: 50%;
            animation: bounce .9s ease-in-out infinite;
        }

        .typing-dots span:nth-child(2) {
            animation-delay: .15s;
        }

        .typing-dots span:nth-child(3) {
            animation-delay: .3s;
        }

        @keyframes bounce {

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

            40% {
                transform: translateY(-7px);
            }
        }

        .chat-suggestions {
            padding: 8px 16px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            background: #f4f7ff;
            border-top: 1px solid rgba(5, 49, 136, .06);
            flex-shrink: 0;
        }

        .suggestion-chip {
            background: var(--white);
            border: 1.5px solid rgba(5, 49, 136, .15);
            color: var(--royal);
            font-size: 12px;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 100px;
            cursor: pointer;
            transition: all .2s;
            white-space: nowrap;
            font-family: inherit;
        }

        .suggestion-chip:hover {
            border-color: var(--cyan);
            background: rgba(1, 215, 251, .07);
            color: var(--royal);
        }

        .chat-input-area {
            padding: 14px 16px;
            background: var(--white);
            border-top: 1px solid rgba(5, 49, 136, .08);
            display: flex;
            gap: 10px;
            align-items: center;
            flex-shrink: 0;
        }

        .chat-input {
            flex: 1;
            border: 1.5px solid rgba(5, 49, 136, .15);
            border-radius: 100px;
            padding: 10px 18px;
            font-family: inherit;
            font-size: 14px;
            color: var(--royal);
            outline: none;
            background: #f4f7ff;
            transition: border-color .2s;
        }

        .chat-input:focus {
            border-color: var(--cyan);
            background: var(--white);
        }

        .chat-input::placeholder {
            color: var(--gray);
            font-size: 13px;
        }

        .chat-send {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--royal), var(--cyan));
            border: none;
            color: var(--white);
            font-size: 17px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform .2s, box-shadow .2s;
            flex-shrink: 0;
        }

        .chat-send:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 14px rgba(1, 215, 251, .4);
        }

        .chat-send:disabled {
            opacity: .5;
            cursor: not-allowed;
            transform: none;
        }

        .chat-actions {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .chat-action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0 16px;
            border-radius: 999px;
            background: #25d366;
            color: #082414;
            font-weight: 800;
            font-size: 13px;
            text-decoration: none;
            box-shadow: 0 10px 20px rgba(37, 211, 102, .22);
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .chat-action-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 28px rgba(37, 211, 102, .3);
        }

        @media (max-width: 480px) {
            .fab-stack {
                right: 16px;
                bottom: 20px;
                gap: 10px;
            }

            .fab-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .chat-overlay {
                padding: 0;
                align-items: flex-end;
                justify-content: center;
            }

            .chat-box {
                width: 100%;
                max-width: 100%;
                border-radius: 24px 24px 0 0;
                height: 80vh;
                max-height: 80vh;
            }
        }


        #fab-topo-item {
            opacity: 0;
            pointer-events: none;
            transform: scale(.7);
            transition: opacity .35s, transform .35s;
        }

        #fab-topo-item.visible {
            opacity: 1;
            pointer-events: auto;
            transform: scale(1);
        }

        #fab-topo-item.visible .fab-label {
            opacity: 1;
            transform: translateX(0);
        }

        /* ── PARCEIROS ── */
        .partners-track-wrapper {
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .partners-track-wrapper::before,
        .partners-track-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }

        .partners-track-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--white), transparent);
        }

        .partners-track-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--white), transparent);
        }

        .partners-track {
            display: flex;
            gap: 24px;
            width: max-content;
            animation: partnersScroll 28s linear infinite;
            padding: 12px 0;
        }

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

        @keyframes partnersScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-50%));
            }
        }

        .partner-card {
            text-decoration: none;
            flex-shrink: 0;
            display: block;
            transition: transform .3s;
        }

        .partner-card:hover {
            transform: translateY(-6px);
        }

        .partner-logo {
            width: 160px;
            height: 110px;
            border-radius: 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, .15);
            transition: box-shadow .3s;
            border: 1.5px solid rgba(255, 255, 255, .12);
        }

        .partner-card:hover .partner-logo {
            box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
        }
    

                .product-card {
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                }
                a.product-card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 12px 24px rgba(5,49,136,0.15);
                }
