        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            border-color: rgba(201, 210, 220, 0.08);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #050B18;
            color: #F5F7FA;
            font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-h-screen;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
            letter-spacing: -0.02em;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        /* Utility classes */
        .sr-container {
            width: 100%;
            max-width: 1200px;
            margin-inline: auto;
            padding-inline: 1.25rem;
        }

        .sr-gradient-text {
            background: linear-gradient(135deg, #F5F7FA 0%, #16B8FF 60%, #0E7BFF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .sr-glass {
            background: linear-gradient(180deg, rgba(14, 123, 255, 0.06), rgba(8, 17, 31, 0.6));
            backdrop-filter: blur(12px);
            border: 1px solid rgba(201, 210, 220, 0.08);
        }

        .sr-glow {
            box-shadow: 0 0 0 1px rgba(22, 184, 255, 0.15), 0 20px 60px -20px rgba(14, 123, 255, 0.35);
        }

        .sr-btn-primary {
            background: linear-gradient(135deg, #0E7BFF 0%, #16B8FF 100%);
            color: #ffffff;
            box-shadow: 0 8px 24px -8px rgba(14, 123, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
            transition: transform 200ms ease, box-shadow 200ms ease, brightness 200ms ease;
        }

        .sr-btn-primary:hover {
            box-shadow: 0 12px 32px -8px rgba(22, 184, 255, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
            brightness: 1.1;
        }

        .sr-grid-bg {
            background-image:
                linear-gradient(rgba(201, 210, 220, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(201, 210, 220, 0.05) 1px, transparent 1px);
            background-size: 48px 48px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes imageCarousel {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            5% {
                opacity: 1;
            }
            95% {
                opacity: 1;
            }
            100% {
                opacity: 0;
            }
        }

        /* Navbar */
        header {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 50;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(5, 11, 24, 0.7);
            backdrop-filter: blur(40px);
        }

        /*
         * Filho DIRETO, nao descendente.
         *
         * Com `header .sr-container` esta regra tambem casava com o container
         * de dentro do .navbar-mobile — que e descendente do header. O menu
         * aberto herdava height: 8.5rem (altura fixa), align-items: center e
         * justify-content: space-between, entao os links ficavam centralizados
         * e os ultimos VAZAVAM para fora do header, por cima da foto do hero.
         * O `>` isola esta regra na barra de cima. Nao volte para descendente.
         */
        header > .sr-container {
            display: flex;
            height: 8.5rem;
            align-items: center;
            justify-content: space-between;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-logo svg {
            height: 3rem;
            width: auto;
        }

        .navbar-logo img {
            height: 130px;
            width: auto;
            object-fit: contain;
        }

        .navbar-nav {
            display: none;
            align-items: center;
            gap: 1.25rem;
        }

        @media (min-width: 768px) {
            .navbar-nav {
                display: flex;
            }
        }

        /*
         * Acima de 1024px sobra espaço de sobra para o gap original de 2rem.
         * Abaixo disso (a partir de 768px, onde o menu deixa de ser hamburger)
         * 2rem com os 7 itens (o 7o e o link "Blog") estoura o container por
         * poucos pixels exatamente na largura de um iPad (768px) — measured
         * via getBoundingClientRect: logo 195px + nav 540px > 728px uteis.
         * 1.25rem no breakpoint estreito resolve sem mudar a aparencia em
         * telas maiores.
         */
        @media (min-width: 1024px) {
            .navbar-nav {
                gap: 2rem;
            }
        }

        .navbar-nav a {
            font-size: 0.875rem;
            color: #C9D2DC;
            transition: color 200ms ease;
        }

        .navbar-nav a:hover {
            color: white;
        }

        .navbar-toggle {
            display: grid;
            height: 2.25rem;
            width: 2.25rem;
            place-items: center;
            border-radius: 0.375rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: transparent;
            color: white;
            padding: 0;
        }

        @media (min-width: 768px) {
            .navbar-toggle {
                display: none;
            }
        }

        .navbar-mobile {
            display: none;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(5, 11, 24, 0.95);
        }

        .navbar-mobile.open {
            display: block;
        }

        /*
         * Reafirma o que o menu precisa mesmo que alguem reintroduza uma regra
         * de altura no header. Segunda camada de defesa do bug acima.
         */
        .navbar-mobile .sr-container {
            display: flex;
            height: auto;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            gap: 0.25rem;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .navbar-mobile a {
            border-radius: 0.375rem;
            padding: 0.5rem;
            font-size: 0.875rem;
            color: #C9D2DC;
            transition: all 200ms ease;
        }

        .navbar-mobile a:hover {
            background: rgba(255, 255, 255, 0.05);
            color: white;
        }

        /*
         * Header no mobile (< 768px).
         *
         * 8.5rem (136px) come quase um quarto da tela de um celular, e o menu
         * aberto embaixo disso empurrava a navegacao para cima do hero. 4.5rem
         * com o logo em 2.5rem deixa 16px de respiro em cima e embaixo.
         *
         * #top { margin-top } compensa o header fixo — os dois valores TEM que
         * andar juntos: se um mudar sem o outro, ou sobra um vao vazio ou o
         * hero volta a ficar por baixo da barra.
         */
        @media (max-width: 767.98px) {
            header > .sr-container {
                height: 4.5rem;
            }

            .navbar-logo img {
                height: 2.5rem;
            }

            /* O margin-top do #top que acompanha esta altura NAO fica aqui:
               media query nao soma especificidade, e a regra base `#top`
               aparece depois no arquivo, entao venceria esta. O override
               mora logo abaixo da regra base — procure por "4.5rem" la. */

            /*
             * Menu aberto: fundo opaco e altura limitada a viewport.
             *
             * Opaco em vez de rgba(…,0.95) porque com o menu rolavel o efeito
             * de "flutuar sobre o hero" so atrapalha a leitura. A sombra
             * devolve a separacao visual que a transparencia dava.
             */
            .navbar-mobile.open {
                background: #050B18;
                max-height: calc(100vh - 4.5rem);
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.6);
            }
        }

        /* Hero */
        #top {
            position: relative;
            overflow: hidden;
            min-height: 92vh;
            display: flex;
            align-items: center;
            margin-top: 8.5rem;   /* = altura do header fixo */
        }

        /*
         * Acompanha o header reduzido no mobile (4.5rem).
         *
         * Precisa vir DEPOIS da regra acima: @media nao aumenta
         * especificidade, entao entre dois `#top` iguais quem vence e o
         * ultimo do arquivo. Colocado junto do bloco do header, ficava sem
         * efeito e sobrava uma faixa vazia de 63px acima do hero.
         */
        @media (max-width: 767.98px) {
            #top {
                margin-top: 4.5rem;
            }
        }

        .hero-bg-container {
            pointer-events: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .hero-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            will-change: opacity;
        }

        .hero-carousel.active {
            opacity: 1;
        }

        .hero-carousel:first-child {
            opacity: 1;
        }

        .hero-overlay-1 {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            background-color: rgba(5, 11, 24, 0.28);
        }

        /* Escurecimento vertical (fecha em #050B18 na base, emendando com a próxima
           seção) + halo radial que preserva o contraste do texto centralizado. */
        .hero-overlay-2 {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 3;
            background:
                radial-gradient(ellipse 44% 42% at 50% 47%, rgba(5, 11, 24, 0.75) 0%, rgba(5, 11, 24, 0) 100%),
                linear-gradient(to bottom, rgba(5, 11, 24, 0.28) 0%, rgba(5, 11, 24, 0.18) 55%, #050B18 100%);
        }

        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 4;
            opacity: 0.25;
            -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            width: 100%;
            padding: 6rem 0;
        }

        @media (min-width: 768px) {
            .hero-content {
                padding: 8rem 0;
            }
        }

        .hero-text {
            margin-left: auto;
            margin-right: auto;
            max-width: 48rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            animation: fadeInUp 0.6s ease;
        }

        .hero-text h1 {
            font-size: 2.25rem;
            font-weight: bold;
            line-height: 1.05;
            tracking-tight: true;
            color: white;
        }

        @media (min-width: 640px) {
            .hero-text h1 {
                font-size: 3rem;
            }
        }

        @media (min-width: 768px) {
            .hero-text h1 {
                font-size: 3.75rem;
            }
        }

        @media (min-width: 1024px) {
            .hero-text h1 {
                font-size: 4.5rem;
            }
        }

        .hero-text p {
            margin-top: 1.5rem;
            max-width: 42rem;
            font-size: 1rem;
            color: #C9D2DC;
        }

        @media (min-width: 640px) {
            .hero-text p {
                font-size: 1.125rem;
            }
        }

        .hero-cta {
            margin-top: 2rem;
        }

        .hero-cta a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.06);
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: white;
            backdrop-filter: blur(10px);
            transition: background-color 200ms ease;
        }

        .hero-cta a:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        /* Stats */
        .stats-section {
            position: relative;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background-color: rgba(8, 17, 31, 0.6);
            padding: 3.5rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .stat-icon {
            display: grid;
            height: 2.5rem;
            width: 2.5rem;
            place-items: center;
            border-radius: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: linear-gradient(to bottom right, rgba(14, 123, 255, 0.2), transparent);
            color: #16B8FF;
        }

        .stat-icon svg {
            width: 18px;
            height: 18px;
            stroke-width: 1.8;
        }

        .stat-title {
            font-family: "Space Grotesk", sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: white;
        }

        @media (min-width: 768px) {
            .stat-title {
                font-size: 1rem;
            }
        }

        .stat-desc {
            font-size: 0.75rem;
            color: #C9D2DC;
        }

        @media (min-width: 768px) {
            .stat-desc {
                font-size: 0.875rem;
            }
        }

        /* About */
        .about-section {
            position: relative;
            overflow: hidden;
            padding: 6rem 0;
        }

        @media (min-width: 768px) {
            .about-section {
                padding: 8rem 0;
            }
        }

        .about-glow {
            pointer-events: none;
            position: absolute;
            left: -15%;
            top: 50%;
            height: 400px;
            width: 600px;
            transform: translateY(-50%);
            border-radius: 50%;
            background: rgba(14, 123, 255, 0.1);
            filter: blur(120px);
        }

        .about-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .about-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 4rem;
            }
        }

        .about-grid > div:first-child {
            animation: slideInLeft 0.6s ease;
        }

        .about-grid > div:last-child {
            animation: slideInRight 0.6s ease;
            animation-delay: 0.15s;
        }

        .section-heading {
            max-width: 42rem;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .section-heading.left {
            text-align: left;
            margin: 0;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            padding: 0.25rem 0.75rem;
            font-size: 0.6875rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #16B8FF;
        }

        .section-title {
            margin-top: 1rem;
            font-family: "Space Grotesk", sans-serif;
            font-size: 1.875rem;
            font-weight: bold;
            line-height: 1.2;
            color: white;
        }

        @media (min-width: 640px) {
            .section-title {
                font-size: 2.25rem;
            }
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 3rem;
            }
        }

        .section-subtitle {
            margin-top: 1rem;
            font-size: 1rem;
            color: #C9D2DC;
        }

        @media (min-width: 640px) {
            .section-subtitle {
                font-size: 1.125rem;
            }
        }

        .about-text {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            color: #C9D2DC;
        }

        .about-text p {
            font-size: 0.875rem;
            line-height: 1.6;
        }

        @media (min-width: 640px) {
            .about-text p {
                font-size: 1rem;
            }
        }

        .about-promises {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .about-promises li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.875rem;
            color: #F5F7FA;
            list-style: none;
        }

        .about-promises svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 0.2rem;
            color: #16B8FF;
        }

        .about-promises li > div {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }

        .about-promises strong {
            font-weight: 600;
            color: #F5F7FA;
        }

        .about-promises li > div span {
            color: #C9D2DC;
            line-height: 1.5;
        }

        .about-cta {
            margin-top: 2rem;
            display: inline-flex;
            align-items: center;
            border-radius: 9999px;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
        }

        .highlight-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .highlight-card {
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
            padding: 1.5rem;
            backdrop-filter: blur(4px);
            transition: all 300ms ease;
        }

        .highlight-card:hover {
            transform: translateY(-2px);
            border-color: rgba(22, 184, 255, 0.25);
        }

        .highlight-card::before {
            content: '';
            pointer-events: none;
            position: absolute;
            inset-x: 0;
            top: -80px;
            height: 128px;
            background: linear-gradient(to bottom, rgba(22, 184, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 300ms ease;
        }

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

        .highlight-card-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .highlight-icon {
            display: grid;
            height: 2.75rem;
            width: 2.75rem;
            flex-shrink: 0;
            place-items: center;
            border-radius: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: #16B8FF;
        }

        .highlight-icon svg {
            width: 20px;
            height: 20px;
            stroke-width: 1.75;
        }

        .highlight-text h3 {
            font-family: "Space Grotesk", sans-serif;
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
        }

        .highlight-text p {
            margin-top: 0.25rem;
            font-size: 0.875rem;
            line-height: 1.6;
            color: #C9D2DC;
        }

        /* Services */
        .services-section {
            position: relative;
            padding: 6rem 0;
        }

        @media (min-width: 768px) {
            .services-section {
                padding: 8rem 0;
            }
        }

        .services-grid {
            margin-top: 3rem;
            display: grid;
            gap: 1rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 640px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .service-card {
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent);
            padding: 1.5rem;
            transition: all 300ms ease;
        }

        .service-card:hover {
            transform: translateY(-4px);
            border-color: rgba(22, 184, 255, 0.3);
            box-shadow: 0 20px 60px -20px rgba(22, 184, 255, 0.25);
        }

        .service-card::before {
            content: '';
            pointer-events: none;
            position: absolute;
            inset-x: 0;
            top: -96px;
            height: 128px;
            background: linear-gradient(to bottom, rgba(22, 184, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 300ms ease;
        }

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

        .service-icon {
            display: grid;
            height: 2.75rem;
            width: 2.75rem;
            place-items: center;
            border-radius: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: #16B8FF;
        }

        .service-icon svg {
            width: 20px;
            height: 20px;
            stroke-width: 1.75;
        }

        .service-card h3 {
            margin-top: 1.25rem;
            font-family: "Space Grotesk", sans-serif;
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
        }

        .service-card > p {
            margin-top: 0.5rem;
            font-size: 0.875rem;
            line-height: 1.6;
            color: #C9D2DC;
        }

        .service-bullets {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }

        .service-bullets li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.75rem;
            color: #C9D2DC;
            list-style: none;
        }

        .service-bullets li::before {
            content: '';
            flex-shrink: 0;
            margin-top: 6px;
            height: 4px;
            width: 4px;
            border-radius: 50%;
            background: #16B8FF;
        }

        .service-card a {
            margin-top: 1.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: white;
            transition: color 200ms ease;
        }

        .service-card a:hover {
            color: #16B8FF;
        }

        .service-card a svg {
            width: 14px;
            height: 14px;
        }

        /* Process */
        .process-section {
            position: relative;
            padding: 6rem 0;
        }

        @media (min-width: 768px) {
            .process-section {
                padding: 8rem 0;
            }
        }

        .process-timeline-mobile {
            pointer-events: none;
            position: absolute;
            left: 1rem;
            top: 0;
            height: 100%;
            width: 1px;
            background: linear-gradient(to bottom, rgba(22, 184, 255, 0.4), rgba(255, 255, 255, 0.1), transparent);
        }

        @media (min-width: 768px) {
            .process-timeline-mobile {
                display: none;
            }
        }

        .process-steps {
            position: relative;
            display: grid;
            gap: 1rem;
            grid-template-columns: 1fr;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 768px) {
            .process-steps {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .process-step {
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.02);
            padding: 1.5rem;
            transition: transform 300ms ease, border-color 300ms ease,
                        box-shadow 300ms ease, background-color 300ms ease;
        }

        .process-step::before {
            content: '';
            pointer-events: none;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 160px;
            background: radial-gradient(120% 100% at 50% 0%, rgba(22, 184, 255, 0.14), transparent 70%);
            opacity: 0;
            transition: opacity 300ms ease;
        }

        .process-step:hover {
            transform: translateY(-4px);
            border-color: rgba(22, 184, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.04);
            box-shadow: 0 20px 60px -20px rgba(22, 184, 255, 0.25);
        }

        .process-step:hover::before {
            opacity: 1;
        }

        @media (prefers-reduced-motion: reduce) {
            .process-step {
                transition: border-color 300ms ease;
            }

            .process-step:hover {
                transform: none;
            }
        }

        .process-step-number {
            position: relative;
            display: flex;
            align-items: baseline;
            gap: 0.75rem;
        }

        .process-step-number span:first-child {
            font-family: "Space Grotesk", sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: #16B8FF;
            transition: text-shadow 300ms ease;
        }

        .process-step:hover .process-step-number span:first-child {
            text-shadow: 0 0 12px rgba(22, 184, 255, 0.6);
        }

        .process-step-number span:last-child {
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            background-image: linear-gradient(to right, #16B8FF, rgba(22, 184, 255, 0));
            background-size: 0% 100%;
            background-repeat: no-repeat;
            transition: background-size 400ms ease;
        }

        .process-step:hover .process-step-number span:last-child {
            background-size: 100% 100%;
        }

        .process-step h3 {
            margin-top: 0.75rem;
            font-family: "Space Grotesk", sans-serif;
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
        }

        .process-step p {
            margin-top: 0.25rem;
            font-size: 0.875rem;
            line-height: 1.6;
            color: #C9D2DC;
        }

        /* Differentials */
        .differentials-section {
            position: relative;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background-color: rgba(8, 17, 31, 0.6);
            padding: 6rem 0;
        }

        @media (min-width: 768px) {
            .differentials-section {
                padding: 8rem 0;
            }
        }

        .differentials-grid {
            margin-top: 3rem;
            display: grid;
            gap: 0px;
            overflow: hidden;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.05);
            grid-template-columns: 1fr;
        }

        @media (min-width: 640px) {
            .differentials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .differentials-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .differential-item {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            background: #050B18;
            padding: 1.5rem;
            transition: background-color 200ms ease;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        @media (min-width: 640px) {
            .differential-item:nth-child(2n) {
                border-right: none;
            }
        }

        @media (min-width: 1024px) {
            .differential-item:nth-child(4n) {
                border-right: none;
            }
        }

        .differential-item:last-child {
            border-right: none;
            border-bottom: none;
        }

        .differential-item:hover {
            background: #0B1424;
        }

        .differential-icon {
            display: grid;
            height: 2.5rem;
            width: 2.5rem;
            place-items: center;
            border-radius: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: #16B8FF;
            transition: border-color 200ms ease;
        }

        .differential-item:hover .differential-icon {
            border-color: rgba(22, 184, 255, 0.4);
        }

        .differential-icon svg {
            width: 18px;
            height: 18px;
            stroke-width: 1.75;
        }

        .differential-title {
            font-family: "Space Grotesk", sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: white;
        }

        .differential-desc {
            font-size: 0.75rem;
            color: #C9D2DC;
        }

        /* Portfolio */
        .portfolio-section {
            position: relative;
            padding: 6rem 0;
        }

        @media (min-width: 768px) {
            .portfolio-section {
                padding: 8rem 0;
            }
        }

        .portfolio-grid {
            margin-top: 3rem;
            display: grid;
            gap: 1rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 640px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .portfolio-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .portfolio-card {
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.02);
            transition: all 300ms ease;
        }

        .portfolio-card:hover {
            transform: translateY(-4px);
            border-color: rgba(22, 184, 255, 0.3);
        }

        .portfolio-image {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: linear-gradient(to bottom right, #0B1424, #050B18);
        }

        .portfolio-grid-bg {
            position: absolute;
            inset: 0;
            opacity: 0.4;
        }

        .portfolio-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top right, rgba(14, 123, 255, 0.1), transparent, rgba(22, 184, 255, 0.1));
        }

        .portfolio-icon {
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
        }

        .portfolio-icon svg {
            width: 28px;
            height: 28px;
            color: rgba(255, 255, 255, 0.2);
            stroke-width: 1.25;
        }

        .portfolio-info {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 0.75rem;
            padding: 1.25rem;
        }

        .portfolio-text {
            min-width: 0;
        }

        .portfolio-category {
            font-size: 0.625rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #16B8FF;
        }

        .portfolio-name {
            margin-top: 0.25rem;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-height: 1.3;
            font-family: "Space Grotesk", sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: white;
        }

        .portfolio-desc {
            margin-top: 0.5rem;
            font-size: 0.8125rem;
            line-height: 1.5;
            color: #C9D2DC;
        }

        .portfolio-button {
            display: grid;
            height: 2rem;
            width: 2rem;
            flex-shrink: 0;
            place-items: center;
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: white;
            transition: all 200ms ease;
        }

        .portfolio-card:hover .portfolio-button {
            border-color: rgba(22, 184, 255, 0.4);
            color: #16B8FF;
        }

        .portfolio-button svg {
            width: 14px;
            height: 14px;
        }

        a.portfolio-card {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .portfolio-photo {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        /* Testimonials */
        .testimonials-section {
            position: relative;
            padding: 6rem 0;
        }

        @media (min-width: 768px) {
            .testimonials-section {
                padding: 8rem 0;
            }
        }

        .testimonials-grid {
            margin-top: 3rem;
            display: grid;
            gap: 1rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            /* Depoimento único ocupa a coluna central; volta ao normal se houver mais de um. */
            .testimonials-grid > .testimonial-card:only-child {
                grid-column: 2;
            }
        }

        .testimonial-card {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent);
            padding: 1.5rem;
        }

        .testimonial-quote {
            color: #16B8FF;
            width: 20px;
            height: 20px;
        }

        .testimonial-text {
            font-size: 0.875rem;
            line-height: 1.6;
            color: #C9D2DC;
        }

        .testimonial-footer {
            margin-top: auto;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem 0 0;
        }

        .testimonial-avatar {
            display: grid;
            height: 2.25rem;
            width: 2.25rem;
            place-items: center;
            overflow: hidden;
            border-radius: 9999px;
            background: linear-gradient(to bottom right, #0E7BFF, #16B8FF);
            font-family: "Space Grotesk", sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            color: white;
            flex-shrink: 0;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-author {
            min-width: 0;
        }

        .testimonial-role {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 0.875rem;
            font-weight: 500;
            color: white;
        }

        .testimonial-company {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 0.75rem;
            color: #C9D2DC;
        }

        /* FAQ */
        .faq-section {
            position: relative;
            padding: 6rem 0;
        }

        @media (min-width: 768px) {
            .faq-section {
                padding: 8rem 0;
            }
        }

        .faq-container {
            margin-left: auto;
            margin-right: auto;
            max-width: 48rem;
        }

        .faq-list {
            margin-top: 3rem;
            overflow: hidden;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.02);
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-button {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1rem 1.25rem;
            text-align: left;
            background: transparent;
            transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .faq-button:hover {
            background-color: rgba(255, 255, 255, 0.04);
        }

        .faq-button:active {
            background-color: rgba(255, 255, 255, 0.06);
        }

        .faq-question {
            min-width: 0;
            font-family: "Space Grotesk", sans-serif;
            font-size: 0.875rem;
            font-weight: 500;
            color: white;
            transition: color 250ms ease;
        }

        @media (min-width: 640px) {
            .faq-question {
                font-size: 1rem;
            }
        }

        .faq-button:hover .faq-question {
            color: #16B8FF;
        }

        .faq-icon {
            flex-shrink: 0;
            color: #16B8FF;
            width: 18px;
            height: 18px;
            transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .faq-icon.open {
            transform: rotate(45deg);
        }

        .faq-content {
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
            will-change: max-height, opacity;
        }

        .faq-content.open {
            max-height: 1000px;
            opacity: 1;
        }

        .faq-answer {
            padding: 0 1.25rem 1.25rem;
            font-size: 0.875rem;
            line-height: 1.6;
            color: #C9D2DC;
        }

        /* CTA Final */
        .cta-final-section {
            position: relative;
            overflow: hidden;
            padding: 6rem 0;
        }

        @media (min-width: 768px) {
            .cta-final-section {
                padding: 8rem 0;
            }
        }

        .cta-radial {
            pointer-events: none;
            position: absolute;
            inset-x: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 400px;
            background: radial-gradient(ellipse at center, rgba(14, 123, 255, 0.25), transparent);
            filter: blur(120px);
        }

        .cta-box {
            position: relative;
            overflow: hidden;
            border-radius: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: linear-gradient(to bottom right, #0B1424, #08111F, #050B18);
            padding: 3.5rem 1.5rem;
            text-align: center;
        }

        @media (min-width: 768px) {
            .cta-box {
                padding: 5rem 4rem;
            }
        }

        .cta-box-grid {
            position: absolute;
            inset: 0;
            opacity: 0.3;
            -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
            mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
        }

        .cta-box-glow {
            position: absolute;
            top: -96px;
            left: 50%;
            height: 192px;
            width: 500px;
            transform: translateX(-50%);
            border-radius: 50%;
            background: rgba(22, 184, 255, 0.25);
            filter: blur(120px);
        }

        .cta-content {
            position: relative;
        }

        .cta-eyebrow {
            display: inline-flex;
            align-items: center;
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            padding: 0.25rem 0.75rem;
            font-size: 0.6875rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #16B8FF;
        }

        .cta-title {
            margin-left: auto;
            margin-right: auto;
            margin-top: 1.25rem;
            max-width: 48rem;
            font-family: "Space Grotesk", sans-serif;
            font-size: 1.875rem;
            font-weight: bold;
            line-height: 1.2;
            color: white;
        }

        @media (min-width: 640px) {
            .cta-title {
                font-size: 2.25rem;
            }
        }

        @media (min-width: 768px) {
            .cta-title {
                font-size: 3rem;
            }
        }

        .cta-subtitle {
            margin-left: auto;
            margin-right: auto;
            margin-top: 1rem;
            max-width: 42rem;
            font-size: 1rem;
            color: #C9D2DC;
        }

        .cta-form {
            margin: 2rem auto 0;
            max-width: 34rem;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .cta-form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .cta-form-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .cta-form-field {
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }

        .cta-form-field label {
            font-size: 0.8125rem;
            font-weight: 500;
            color: #C9D2DC;
        }

        .cta-form-field input,
        .cta-form-field select,
        .cta-form-field textarea {
            border-radius: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: #F5F7FA;
            padding: 0.625rem 0.875rem;
            font-size: 0.875rem;
            font-family: inherit;
            transition: border-color 200ms ease, background-color 200ms ease;
        }

        .cta-form-field input::placeholder,
        .cta-form-field textarea::placeholder {
            color: rgba(201, 210, 220, 0.5);
        }

        .cta-form-field input:focus,
        .cta-form-field select:focus,
        .cta-form-field textarea:focus {
            outline: none;
            border-color: rgba(22, 184, 255, 0.5);
            background: rgba(255, 255, 255, 0.06);
        }

        .cta-form-field select option {
            background: #0B1424;
            color: #F5F7FA;
        }

        .cta-form-field textarea {
            resize: vertical;
            min-height: 6rem;
        }

        /* Campo-armadilha: invisível para gente, visível para bots que não
           respeitam CSS. Se vier preenchido, o backend descarta em silêncio. */
        .cta-form-honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .cta-form-feedback {
            min-height: 1.25rem;
            font-size: 0.875rem;
        }

        .cta-form-feedback.is-success {
            color: #16B8FF;
        }

        .cta-form-feedback.is-error {
            color: #FF6B6B;
        }

        .cta-form-submit {
            align-self: center;
            border-radius: 9999px;
            padding: 0.75rem 2rem;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .cta-form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* ============================================================
           Captcha (pergunta aritmética gerada pelo servidor)

           Reaproveita a gramática de .cta-form-field: o input já herda
           borda, raio, fundo e :focus da regra genérica do formulário —
           aqui só entra o que é específico deste campo. Nada de widget
           de terceiro: teria fonte, tema e script próprios, e o site não
           carrega nada de fora hoje.
        ============================================================ */

        /* ============================================================
           Captcha — prova de trabalho invisível (único caminho)

           Existiu aqui um captcha aritmético como fallback, com ~160
           linhas de CSS: rótulo, caixa da pergunta, campo de resposta e
           botão de recarregar. Saiu porque ocupava um campo inteiro no
           ritmo vertical do formulário, 3-4× mais alto que esta linha e
           competindo com o botão Enviar.

           O que sobra é uma legenda de uma linha. Ela não é decoração:
           sem o fallback, é a ÚNICA superfície de erro do fluxo.
        ============================================================ */
        .captcha-prova {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8125rem;
            line-height: 1.4;
            color: #8A94A3;
            /* Mesma reserva de .cta-form-feedback. O texto muda sozinho
               enquanto a pessoa lê a página; sem altura fixa, um estado
               que quebre em duas linhas empurra o botão Enviar no meio
               da leitura. */
            min-height: 1.25rem;
        }

        /* Sem estado ainda (a prova não começou): nada na tela. */
        .captcha-prova:not([class*="is-"]) .captcha-prova-marca {
            display: none;
        }

        /* Bolinha de estado. Muda de cor por estado; o texto ao lado carrega
           o significado, então nunca é só a cor que informa. */
        .captcha-prova-marca {
            flex: 0 0 auto;
            width: 0.875rem;
            height: 0.875rem;
            border-radius: 50%;
            border: 2px solid rgba(201, 210, 220, 0.25);
            border-top-color: #16B8FF;
        }

        .captcha-prova.is-verificando .captcha-prova-marca {
            animation: captcha-girar 700ms linear infinite;
        }

        @keyframes captcha-girar {
            to { transform: rotate(360deg); }
        }

        .captcha-prova.is-ok {
            color: #C9D2DC;
        }

        /* Verificado: a bolinha vira um disco cheio com o traço do "check".
           Sem SVG novo — é borda + rotação, e some junto com a animação. */
        .captcha-prova.is-ok .captcha-prova-marca {
            border: 0;
            border-radius: 0;
            width: 0.4375rem;
            height: 0.75rem;
            margin: 0 0.25rem 0.1875rem 0.1875rem;
            border-right: 2px solid #16B8FF;
            border-bottom: 2px solid #16B8FF;
            transform: rotate(45deg);
        }

        .captcha-prova.is-erro {
            color: #FF6B6B;
        }

        .captcha-prova.is-erro .captcha-prova-marca {
            border: 2px solid #FF6B6B;
        }

        @media (prefers-reduced-motion: reduce) {
            .captcha-prova.is-verificando .captcha-prova-marca {
                animation: none;
            }
        }

        /* Botão flutuante, fixo no canto da tela em qualquer ponto da rolagem. */
        .whatsapp-float {
            position: fixed;
            right: 1.25rem;
            bottom: 1.25rem;
            z-index: 60;
            display: grid;
            place-items: center;
            height: 3.5rem;
            width: 3.5rem;
            border-radius: 9999px;
            background: #25D366;
            color: #04220F;
            box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25);
            transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
        }

        .whatsapp-float:hover {
            background: #2EE776;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px -6px rgba(37, 211, 102, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .whatsapp-float svg {
            width: 28px;
            height: 28px;
        }

        @media (min-width: 768px) {
            .whatsapp-float {
                right: 2rem;
                bottom: 2rem;
            }
        }

        /* Fundos fotográficos por seção (gerados por IA). O escurecimento
           (scrim) fica aqui, para ajuste fino sem reprocessar a imagem. */
        .section-photo {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .stats-section,
        .process-section,
        .portfolio-section,
        .testimonials-section {
            overflow: hidden;
        }

        .stats-section > .sr-container,
        .about-section > .sr-container,
        .process-section > .sr-container,
        .portfolio-section > .sr-container,
        .testimonials-section > .sr-container,
        .cta-final-section > .sr-container {
            position: relative;
            z-index: 1;
        }

        .photo-sobre {
            background-image: linear-gradient(rgba(5, 11, 24, 0.72), rgba(5, 11, 24, 0.72)), url('./sections/sobre.jpg');
        }

        .photo-depoimentos {
            background-image: linear-gradient(rgba(5, 11, 24, 0.82), rgba(5, 11, 24, 0.82)), url('./sections/depoimentos.jpg');
        }

        .photo-cta {
            background-image: linear-gradient(rgba(5, 11, 24, 0.60), rgba(5, 11, 24, 0.74)), url('./sections/cta.jpg');
        }

        .photo-processo {
            background-image: linear-gradient(rgba(5, 11, 24, 0.82), rgba(5, 11, 24, 0.82)), url('./sections/processo.jpg');
        }

        .photo-stats {
            background-image: linear-gradient(rgba(5, 11, 24, 0.55), rgba(5, 11, 24, 0.62)), url('./sections/stats.jpg');
        }

        .photo-portfolio {
            background-image: linear-gradient(rgba(5, 11, 24, 0.78), rgba(5, 11, 24, 0.78)), url('./sections/portfolio.jpg');
        }

        /* Footer */
        footer {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            background: #050B18;
            padding: 3rem 0;
        }

        .footer-grid {
            display: grid;
            gap: 2.5rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-col-span {
            grid-column: span 1;
        }

        @media (min-width: 768px) {
            .footer-col-span {
                grid-column: span 2;
            }
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-logo svg {
            height: 3rem;
            width: auto;
        }

        .footer-desc {
            margin-top: 1rem;
            max-width: 14rem;
            font-size: 0.875rem;
            color: #C9D2DC;
        }

        .footer-socials {
            margin-top: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-social-link {
            display: grid;
            height: 2.25rem;
            width: 2.25rem;
            place-items: center;
            border-radius: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: #C9D2DC;
            transition: all 200ms ease;
            padding: 0;
        }

        .footer-social-link:hover {
            border-color: rgba(22, 184, 255, 0.4);
            color: white;
        }

        .footer-social-link svg {
            width: 16px;
            height: 16px;
        }

        .footer-section-title {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #16B8FF;
        }

        .footer-links {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: #C9D2DC;
        }

        .footer-links a {
            transition: color 200ms ease;
        }

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

        .footer-bottom {
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1.5rem;
            font-size: 0.75rem;
            color: #C9D2DC;
        }

        @media (min-width: 640px) {
            .footer-bottom {
                flex-direction: row;
                align-items: center;
            }
        }

        .footer-bottom a {
            transition: color 200ms ease;
        }

        .footer-bottom a:hover {
            color: white;
        }

        .footer-legal {
            display: flex;
            gap: 1.25rem;
        }
