@charset "UTF-8";

/* ==========================================================================
   VARIÁVEIS GLOBAIS E RESET
   ========================================================================== */
:root {
    --bg-color: #030305;
    --text-main: #ffffff;
    --text-muted: #888890;
    --accent-color: #4f46e5;
    --accent-glow: rgba(79, 70, 229, 0.6);
    --neon-blue: #00f3ff;
    --neon-purple: #bc13fe;
}

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

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* ==========================================================================
   LENIS SCROLL FIX
   ========================================================================== */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* ==========================================================================
   BACKGROUNDS E EFEITOS (Canvas, Grid, Cursor)
   ========================================================================== */
#data-grid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.hero-css-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

#cursor-glow {
    position: fixed;
    top: -400px;
    left: -400px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle closest-side, rgba(0, 243, 255, 0.08), transparent 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    mix-blend-mode: screen;
}

.overlay-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-color) 100%);
    z-index: 1;
    pointer-events: none;
}

.main-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ==========================================================================
   HEADER E NAVEGAÇÃO
   ========================================================================== */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 4rem;
    width: 100%;
    position: relative;
    opacity: 0;
    z-index: 9999;
    /* A SOLUÇÃO: Eleva o cabeçalho inteiro acima de todo o site */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    position: absolute;
    left: 4rem;
    z-index: 101;
}

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

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.deliverable-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #a0a0ab;
    line-height: 1.6;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-num {
    font-family: monospace;
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 0.05em;
}

/* DROPDOWN DESKTOP PREMIUM */
.nav-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle svg {
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.nav-dropdown-wrapper:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

/* DROPDOWN MENU ATUALIZADO */
.dropdown-menu {
    position: absolute;
    top: 100%;
    /* Reduzido de 150% para colar mais no botão */
    margin-top: 1.5rem;
    /* Mantém o espaçamento visual elegante */
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    /* Efeito de entrada */
    background: rgba(10, 10, 14, 0.95);
    /* Pouco mais opaco para não perder foco na leitura */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--neon-blue);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 243, 255, 0.15);
    z-index: 999;
    /* Z-index absoluto para sobrepor o canvas e a elipse */
    min-width: 650px;
}

/* PONTE INVISÍVEL (O segredo para o mouse não perder o foco) */
.dropdown-menu::after {
    content: '';
    position: absolute;
    bottom: 100%;
    /* Fica posicionado logo acima do menu */
    left: 0;
    width: 100%;
    height: 40px;
    /* Preenche o "buraco" entre o botão e o menu */
    background: transparent;
}

.nav-dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

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

.dropdown-title {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    color: #ffffff;
    padding-left: 8px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--neon-purple);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-item:hover::before {
    opacity: 1;
    left: -2px;
}

/* MENU MOBILE OVERLAY */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    z-index: 101;
    position: relative;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 5, 0.7);
    backdrop-filter: blur(8px);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #0a0a0e;
    z-index: 99;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 7rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    overflow-y: auto;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-link {
    font-size: 1.25rem;
    color: #ffffff;
}

.mobile-link .nav-num {
    font-size: 1rem;
    color: var(--accent-color);
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.primary-btn {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.primary-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    animation: shimmerWave 3s infinite linear;
}

@keyframes shimmerWave {
    0% {
        left: -150%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.primary-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.primary-btn:hover svg {
    transform: translateX(4px);
}

.secondary-btn {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   HERO DA PÁGINA PRINCIPAL
   ========================================================================== */
.hero {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem 180px 2rem;
    position: relative;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.hero-logo-container {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.hero-logo-wrapper {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 25px rgba(0, 243, 255, 0.4)) drop-shadow(0 0 50px rgba(188, 19, 254, 0.2));
}

.hero-main-logo {
    height: clamp(60px, 12vw, 120px);
    width: auto;
    object-fit: contain;
    display: block;
}

.shimmer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.8) 50%, transparent 80%);
    background-size: 200% 100%;
    animation: metallicShimmer 3s infinite linear;
    -webkit-mask-image: url('https://i.imgur.com/E4d2aQq.png');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mix-blend-mode: overlay;
    pointer-events: none;
}

@keyframes metallicShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.glass-tooltip {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    background: rgba(15, 15, 20, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.15em;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    z-index: 10;
}

.hero-logo-container:hover .glass-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    opacity: 0;
}

.ellipse-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
}

.ellipse-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.ellipse-shape {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250%;
    min-width: 2000px;
    height: 1000px;
    border-radius: 50%;
    background: #0a0a0e;
}

.ellipse-shape::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(90deg, transparent 30%, rgba(0, 243, 255, 0.8) 45%, rgba(188, 19, 254, 0.8) 55%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.ellipse-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 30px;
    width: 100%;
}

.tech-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
}

.trusted-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trusted-logo-wrapper {
    height: 28px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trusted-logo-mask {
    width: 100%;
    height: 100%;
    background-color: #555560;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: all 0.3s ease;
}

.trusted-logo-wrapper:hover .trusted-logo-mask {
    background-color: #ffffff;
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.6));
}

/* ==========================================================================
   SEÇÕES GLOBAIS (Pilares, Serviços, Contato) 
   [Todo o seu CSS Original permanece aqui]
   ========================================================================== */
.pillars-section {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 8rem 2rem 10rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #0a0a0e 0%, #030305 15%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.section-title {
    font-weight: 200;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    letter-spacing: -0.02em;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.pillar-card-wrapper {
    position: relative;
    border-radius: 20px;
    transition: transform 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.pillar-card-wrapper:hover {
    transform: translateY(-8px);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.pillar-card {
    position: relative;
    background: linear-gradient(160deg, #111116 0%, #050508 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.pillar-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #a0a0ab;
    line-height: 1.7;
    z-index: 2;
    position: relative;
}

.pillar-bg-icon {
    position: absolute;
    right: -10%;
    bottom: -10%;
    width: 320px;
    height: 320px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.stats-container {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    opacity: 0;
}

.stats-subtitle {
    margin-bottom: 3.5rem;
    text-align: center;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 700;
    color: #4a4a55;
    transition: all 0.4s ease;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-item:hover .stat-number {
    color: #ffffff;
    transform: scale(1.05);
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.services-section {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 6rem 0 10rem 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #030305;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.services-header-container {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.services-title {
    font-weight: 200;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    letter-spacing: -0.02em;
}

.carousel-wrapper {
    width: 100%;
    position: relative;
    z-index: 2;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-left: max(2rem, calc((100% - 1200px) / 2));
    padding-right: 2rem;
    padding-bottom: 2rem;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 auto;
    width: clamp(280px, 80vw, 380px);
    aspect-ratio: 1 / 1;
    scroll-snap-align: start;
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.4s ease;
    opacity: 0;
    transform: translateX(50px);
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: #ffffff;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1) translateY(-3px);
    stroke: var(--neon-blue);
}

.service-card-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-card-content p {
    font-size: 0.95rem;
    color: #a0a0ab;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.saiba-mais-btn {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.service-card:hover .saiba-mais-btn {
    text-decoration: underline;
    gap: 0.85rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* TECNOLOGIAS E MARQUEE */
.tech-ecosystem-section {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 6rem 0 10rem 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #030305;
}

.tech-ecosystem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.tech-header-container {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.infinite-carousel-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.infinite-carousel-track {
    display: flex;
    width: max-content;
}

.infinite-carousel-track:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: flex;
    align-items: center;
    gap: 6rem;
    padding-right: 6rem;
    animation: scrollInfiniteLogos 35s linear infinite;
}

@keyframes scrollInfiniteLogos {
    from {
        transform: translateX(0);
    }

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

.tech-logo-wrapper {
    height: 45px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.tech-logo-mask {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: all 0.4s ease;
}

.tech-logo-wrapper:hover .tech-logo-mask {
    transform: scale(1.15);
    filter: drop-shadow(0 0 25px rgba(0, 243, 255, 0.8)) drop-shadow(0 0 15px rgba(188, 19, 254, 0.4));
}

/* CONTATO E FOOTER */
.contact-section {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 12rem 2rem 8rem 2rem;
    background: linear-gradient(180deg, #030305 0%, #0a0a0e 40%, #121218 100%);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

#contact-particles-canvas {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: 85%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.contact-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.contact-content {
    flex: 1;
    max-width: 500px;
}

.contact-title {
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e0e0e5;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.info-item:hover {
    color: var(--accent-color);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   SISTEMA DE ABAS DO CONTATO
   ========================================================================== */
.contact-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #888890;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn:hover {
    color: #ffffff;
}

.tab-btn.active {
    color: var(--neon-blue);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    /* Alinha com a borda do container .contact-tabs */
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.tab-content {
    display: none;
    animation: fadeInTab 0.4s ease-out forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.calendar-embed-container {
    width: 100%;
    height: 450px;
    /* Altura ideal para o calendário caber bem */
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-wrapper {
    flex: 1;
    max-width: 550px;
    background: rgba(15, 15, 20, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    position: relative;
    transition: all 0.4s ease;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.4), rgba(188, 19, 254, 0.4));
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.contact-form-wrapper:focus-within,
.contact-form-wrapper:hover {
    border-color: rgba(255, 255, 255, 1);
}

.contact-form-wrapper:hover::before,
.contact-form-wrapper:focus-within::before {
    opacity: 0.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 1.25rem 1rem 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

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

.form-input:focus {
    border-color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
}

.floating-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888890;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-textarea+.floating-label {
    top: 1.5rem;
}

.form-input:focus~.floating-label,
.form-input:not(:placeholder-shown)~.floating-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    left: 0.8rem;
    background: linear-gradient(to bottom, transparent 40%, #14141a 40%, #14141a 100%);
    padding: 0 0.4rem;
    color: #ffffff;
    font-weight: 500;
}

.contact-submit-btn {
    margin-top: 1rem;
    width: 100%;
    border-radius: 0;
    padding: 1rem;
    font-size: 1.05rem;
}

/* ==========================================================================
   FOOTER PREMIUM REFORMULADO (MEGA FOOTER)
   ========================================================================== */
.site-footer {
    position: relative;
    z-index: 10;
    width: 100%;
    background: #030305;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content-grid {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* FORÇA TUDO A COMEÇAR NA ESQUERDA */
    text-align: left;
    /* Garante que os textos fiquem alinhados à esquerda */
}

.brand-col .footer-logo {
    height: 32px;
    width: auto;
    max-width: 100%;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    object-fit: contain;
    /* Impede a imagem de esticar/distorcer */
    object-position: left center;
    /* Crava a imagem na extrema esquerda */
    align-self: flex-start;
    /* Reforça o alinhamento à esquerda do logo */
}

.brand-col .footer-logo:hover {
    opacity: 1;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    max-width: 350px;
}

.footer-col-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links li a {
    color: #a0a0ab;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(6px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.social-icon:hover {
    background: rgba(0, 243, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.3);
    color: var(--neon-blue);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.1);
}

.footer-bottom {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright p {
    color: #555560;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: #555560;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #a0a0ab;
}

.footer-legal .separator {
    color: #33333c;
}

/* Responsividade do Footer */
@media (max-width: 1024px) {
    .footer-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .brand-col {
        grid-column: span 2;
    }

    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   MÓDULO DE SUBPÁGINAS DE SERVIÇO (Ex: Core Cloud, Advanced)
   ========================================================================== */
.service-page-hero {
    padding: 180px 2rem 100px 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.service-page-title {
    font-weight: 200;
    font-size: clamp(3rem, 6vw, 5rem);
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.service-page-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 4rem;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem 8rem 2rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.deliverable-card {
    background: linear-gradient(160deg, rgba(17, 17, 22, 0.8) 0%, rgba(5, 5, 8, 0.8) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.deliverable-card:hover {
    border-color: rgba(0, 243, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.deliverable-icon {
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
}

.deliverable-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   MEDIA QUERIES (Mobile e Tablets)
   ========================================================================== */
@media (max-width: 1024px) {
    header {
        padding: 1.5rem 2rem;
        justify-content: space-between;
    }

    .logo {
        position: relative;
        left: 0;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

@media (max-width: 768px) {
    h1 {
        flex-direction: column;
        gap: 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .primary-btn {
        justify-content: center;
        text-align: center;
    }

    .trusted-by {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .trusted-logo-wrapper {
        height: 22px;
        width: 85px;
    }

    .hero {
        padding-bottom: 220px;
    }

    .ellipse-footer {
        height: 220px;
    }

    .ellipse-content {
        margin-top: 40px;
    }

    .pillars-grid {
        display: flex !important;
        /* Muda de Grid para Flex para evitar bug de altura no mobile */
        flex-direction: column !important;
        /* Empilha um embaixo do outro */
        gap: 2rem !important;
        width: 100% !important;
    }

    .pillar-link-wrapper {
        height: auto !important;
        /* Evita que o link colapse */
        width: 100% !important;
        display: block !important;
        /* Blindagem contra falha de gatilho do GSAP no mobile: */
        opacity: 1 !important;
        transform: none !important;
    }

    .pillar-card {
        height: auto !important;
        min-height: 280px;
        /* Garante que o card sempre tenha corpo no celular */
    }

    .pillars-section {
        padding: 5rem 1.5rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 4rem;
    }

    .stats-container {
        margin-top: 5rem;
    }

    .services-header-container {
        text-align: center;
    }

    .tech-logo-wrapper {
        height: 35px;
        width: 130px;
    }

    .logos-slide {
        gap: 3rem;
        padding-right: 3rem;
    }

    .contact-section {
        padding-top: 8rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 4rem;
    }

    .contact-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info-block {
        align-items: center;
    }

    .contact-form-wrapper {
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .site-footer {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-tagline {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1rem;
    }

    /* ==========================================================================
   ATUALIZAÇÕES DA NOVA HOME (DESTAQUES, DIFERENCIAIS, SEGMENTOS, CTA)
   ========================================================================== */
    .hero-headline {
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        color: #ffffff;
        letter-spacing: -0.03em;
        margin-bottom: 1.5rem;
        max-width: 950px;
        line-height: 1.1;
        position: relative;
        z-index: 2;
    }

    .pillar-link-wrapper:hover {
        transform: translateY(-8px);
    }

    .pillars-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        width: 100%;
    }

    .pillar-list {
        list-style: none;
        margin-top: 1rem;
        padding-left: 0;
    }

    .pillar-list li {
        color: #a0a0ab;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .pillar-list li::before {
        content: '•';
        color: var(--neon-blue);
        font-size: 1.2rem;
    }

    /* Soluções em Destaque */
    .highlight-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .highlight-card {
        background: rgba(15, 15, 20, 0.4);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 3rem 2.5rem;
        display: flex;
        flex-direction: column;
        transition: all 0.4s ease;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        border-radius: 0;
    }

    .highlight-card:hover {
        border-color: var(--neon-blue);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 243, 255, 0.15);
    }

    .highlight-card h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    .highlight-card p {
        font-size: 1rem;
        color: #a0a0ab;
        line-height: 1.6;
        margin-bottom: 2rem;
        flex-grow: 1;
    }

    /* Diferenciais Competitivos */
    .diferenciais-section {
        padding: 8rem 2rem;
        background: #050508;
        position: relative;
        z-index: 2;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.02);
    }

    .diferenciais-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .diferencial-card {
        background: linear-gradient(160deg, #111116 0%, #050508 100%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 2.5rem 1.5rem;
        flex: 1 1 calc(33.333% - 2rem);
        min-width: 250px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: all 0.3s ease;
        border-radius: 16px;
    }

    .diferencial-card:hover {
        border-color: rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.02);
        transform: translateY(-5px);
    }

    .diferencial-icon {
        color: var(--neon-purple);
        margin-bottom: 1.5rem;
    }

    .diferencial-card h3 {
        color: #fff;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 1.1rem;
    }

    /* Segmentos Atendidos */
    .segmentos-section {
        padding: 6rem 2rem 8rem 2rem;
        background: #030305;
        position: relative;
        z-index: 2;
    }

    .segmentos-flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .segmento-badge {
        padding: 1rem 2.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        font-family: 'Space Grotesk', sans-serif;
        color: var(--text-muted);
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.02);
    }

    .segmento-badge:hover {
        border-color: var(--neon-blue);
        color: #fff;
        background: rgba(0, 243, 255, 0.1);
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
        transform: scale(1.05);
    }

    /* CTA Final */
    .cta-final-section {
        padding: 10rem 2rem;
        text-align: center;
        background: #0a0a0e;
        position: relative;
        z-index: 2;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-glow-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    .cta-final-title {
        font-family: 'Inter', sans-serif;
        font-weight: 200;
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        color: #ffffff;
        letter-spacing: -0.02em;
        margin-bottom: 2.5rem;
        position: relative;
        z-index: 2;
    }

    @media (max-width: 768px) {
        .highlight-grid {
            grid-template-columns: 1fr;
            padding: 0;
        }

        .diferencial-card {
            flex: 1 1 100%;
        }

        .segmento-badge {
            padding: 0.75rem 1.5rem;
            font-size: 0.8rem;
        }
    }
}

/* ==========================================================================
   ATUALIZAÇÕES DA NOVA HOME (DESTAQUES, DIFERENCIAIS, SEGMENTOS, CTA)
   ========================================================================== */
.hero-headline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: 950px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

/* Ajuste dos Pilares (Link clicável e Correção de Visibilidade) */
.pillar-link-wrapper {
    text-decoration: none;
    display: block;
    height: 100%;
    transition: transform 0.4s ease;
    /* GSAP cuida da opacidade agora, então removemos o opacity: 0 daqui */
}

.pillar-link-wrapper:hover {
    transform: translateY(-8px);
}

/* Grade 2x2 Perfeita para Desktop */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Força a grade a ter exatamente 2 colunas */
    gap: 2.5rem;
    max-width: 1000px;
    /* Limitado para os cards não ficarem largos demais no 2x2 */
    margin: 0 auto;
    width: 100%;
}

.pillar-list {
    list-style: none;
    margin-top: 1.5rem;
    padding-left: 0;
}

.pillar-list li {
    color: #a0a0ab;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pillar-list li::before {
    content: '•';
    color: var(--neon-blue);
    font-size: 1.2rem;
}

/* Soluções em Destaque */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.highlight-card {
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.highlight-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.15);
}

.highlight-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.highlight-card p {
    font-size: 1rem;
    color: #a0a0ab;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* ==========================================================================
   DIFERENCIAIS COMPETITIVOS (PREMIUM REDESIGN)
   ========================================================================== */
.diferenciais-section {
    padding: 10rem 2rem;
    background: #030305;
    position: relative;
    z-index: 2;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial-card {
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(188, 19, 254, 0.08), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.diferencial-card:hover {
    border-color: rgba(188, 19, 254, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(188, 19, 254, 0.05);
}

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

.diferencial-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-blue);
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

.diferencial-card:hover .diferencial-icon {
    color: var(--neon-purple);
    transform: scale(1.1) rotate(-5deg);
    border-color: rgba(188, 19, 254, 0.2);
    background: rgba(188, 19, 254, 0.05);
}

.diferencial-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.diferencial-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #888890;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}


/* Segmentos Atendidos */
.segmentos-section {
    padding: 6rem 2rem 8rem 2rem;
    background: #030305;
    position: relative;
    z-index: 2;
}

.segmentos-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.segmento-badge {
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.segmento-badge:hover {
    border-color: var(--neon-blue);
    color: #fff;
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    transform: scale(1.05);
}

/* ==========================================================================
   CTA FINAL (COM BACKGROUND IMAGE E OVERLAY)
   ========================================================================== */
.cta-final-section {
    padding: 12rem 2rem;
    text-align: center;
    background-color: #0a0a0e;
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent) 1;
}

/* Pseudo-elemento com a imagem e o gradiente fade */
.cta-final-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        /* Gradiente para fundir a imagem com o site no topo e na base */
        linear-gradient(to bottom, #0a0a0e 0%, rgba(10, 10, 14, 0.4) 50%, #0a0a0e 100%),
        url('https://odatacolocation.com/wp-content/uploads/2022/05/Data-Center-Infraestrutura-ODATA-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Efeito Parallax */
    opacity: 0.15;
    /* Bem opaca, só a textura e as luzes ao fundo */
    z-index: -2;
}

.cta-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.cta-final-title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .highlight-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .diferencial-card {
        flex: 1 1 100%;
    }

    .segmento-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   CASES DE SUCESSO (CARROSSEL INFINITO)
   ========================================================================== */
.cases-section {
    padding: 8rem 0;
    background: #030305;
    position: relative;
    z-index: 2;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.infinite-cases-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0 3rem 0;
    /* Máscara para criar o efeito de "fade" nas bordas da tela */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.infinite-cases-track {
    display: flex;
    width: max-content;
}

/* Pausa a animação quando o mouse estiver em cima */
.infinite-cases-track:hover .cases-slide {
    animation-play-state: paused;
}

.cases-slide {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
    animation: scrollCases 40s linear infinite;
}

@keyframes scrollCases {
    from {
        transform: translateX(0);
    }

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

.case-card {
    width: clamp(320px, 80vw, 420px);
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.case-card:hover {
    border-color: rgba(0, 243, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 243, 255, 0.05);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.case-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-blue);
}

.case-title-wrapper h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.partner-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a0a0ab;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

.case-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #a0a0ab;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.case-results {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.case-results span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #e0e0e5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .cases-slide {
        animation-duration: 30s;
        /* No celular roda um pouco mais rápido/suave */
    }

    .case-card {
        padding: 2rem;
    }
}

/* ==========================================================================
   NOVO CTA PREMIUM (TECH VIBE E GLASSMORPHISM)
   ========================================================================== */
.cta-premium-section {
    position: relative;
    padding: 10rem 2rem;
    background: #030305;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 2;
}

/* Grid de Fundo Tecnológico */
.cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
    mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Orbes Flutuantes (Luzes neon dinâmicas) */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
    animation: floatOrb 8s infinite alternate ease-in-out;
    pointer-events: none;
}

.cta-orb.orb-1 {
    width: 450px;
    height: 450px;
    background: rgba(0, 243, 255, 0.4);
    top: -100px;
    left: 15%;
}

.cta-orb.orb-2 {
    width: 550px;
    height: 550px;
    background: rgba(188, 19, 254, 0.3);
    bottom: -150px;
    right: 15%;
    animation-delay: -4s;
}

@keyframes floatOrb {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(60px) scale(1.1);
    }
}

/* O Card Central (Glassmorphism) */
.cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

.cta-glass-card {
    position: relative;
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 32px;
    padding: 5rem 4rem;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Borda Gradiente Inteligente (Envolve o card) */
.cta-glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    /* Espessura da borda */
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.6), rgba(255, 255, 255, 0.05), rgba(188, 19, 254, 0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Tipografia e Elementos Internos */
.cta-badge {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: #a0a0ab;
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
    line-height: 1.6;
}

/* Botões */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Trust Signals (Selos de Confiança) */
.cta-trust-signals {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: #e0e0e5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-item svg {
    width: 20px;
    height: 20px;
}

/* Responsividade CTA */
@media (max-width: 768px) {
    .cta-premium-section {
        padding: 6rem 1.5rem;
    }

    .cta-glass-card {
        padding: 3.5rem 1.5rem;
        border-radius: 24px;
    }

    .cta-glass-card::before {
        border-radius: 24px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
    }

    .cta-trust-signals {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   MODAL DE AGENDAMENTO (POP-UP) E BOTÃO
   ========================================================================== */
.modal-trigger-btn {
    width: 100%;
    justify-content: center;
    padding: 1.25rem;
    font-size: 1.05rem;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.modal-trigger-btn:hover {
    background: rgba(0, 243, 255, 0.15);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    transform: translateY(-2px);
}

.form-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #555560;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-divider span {
    padding: 0 1rem;
}

/* Estrutura do Pop-up (Overlay + Conteúdo) */
.calendar-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    /* Acima de todo o site, inclusive do header */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.calendar-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.calendar-modal-content {
    background: #111116;
    /* Fundo escuro sólido para o Google Calendar sobressair */
    border: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 243, 255, 0.15);
    border-radius: 20px;
    width: 100%;
    max-width: 1050px;
    /* Bem largo no desktop para caber confortavelmente */
    height: 85vh;
    max-height: 800px;
    position: relative;
    transform: scale(0.95) translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.calendar-modal-overlay.active .calendar-modal-content {
    transform: scale(1) translateY(0);
}

/* Botão Fechar [X] */
.close-modal-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    transform: rotate(90deg);
}

/* Área do iFrame */
.iframe-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    padding-top: 4rem;
    /* Empurra o calendário para baixo do botão [X] */
    background: #ffffff;
    /* Fundo branco por trás do iframe previne bugs visuais do Google */
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .calendar-modal-overlay {
        padding: 0;
        /* No celular, o modal encosta nas bordas */
    }

    .calendar-modal-content {
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        border: none;
    }

    .iframe-wrapper {
        border-radius: 0;
    }

    .close-modal-btn {
        top: 0.75rem;
        right: 0.75rem;
        background: #030305;
        /* Garante visibilidade no mobile */
    }
}

/* ==========================================================================
   NAVEGAÇÃO ENTRE SERVIÇOS (BOTTOM NAV)
   ========================================================================== */
.services-nav-section {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 8rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-nav-header {
    text-align: left;
    margin-bottom: 3rem;
}

.services-nav-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.services-nav-subtitle {
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
}

.services-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-nav-card {
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-nav-card:hover {
    border-color: rgba(0, 243, 255, 0.3);
    transform: translateY(-5px);
    background: rgba(25, 25, 30, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(0, 243, 255, 0.05);
}

.nav-card-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.service-nav-card:hover .nav-card-badge {
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.1);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.service-nav-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-nav-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #888890;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.5;
}

.nav-card-arrow {
    align-self: flex-end;
    color: #555560;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.nav-card-arrow svg {
    width: 24px;
    height: 24px;
}

.service-nav-card:hover .nav-card-arrow {
    color: var(--neon-blue);
    transform: translateX(8px);
}


/* ==========================================================================
   CONTEÚDO ESTRATÉGICO + FAQ PADRONIZADOS
   ========================================================================== */
.content-section,
.related-links-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 6rem 2rem !important;
    position: relative;
    z-index: 2;
}

.content-section-header {
    max-width: 900px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.content-section-header .section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 243, 255, 0.18);
    background: rgba(0, 243, 255, 0.08);
    color: var(--neon-blue);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.content-section-header .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.strategic-content-panel,
.faq-panel {
    background: linear-gradient(160deg, rgba(17, 17, 22, 0.88) 0%, rgba(5, 5, 8, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    padding: 2.25rem !important;
}

.strategic-content-panel p {
    font-family: 'Inter', sans-serif;
    font-size: 1.04rem;
    line-height: 1.9;
    color: #c2c2cb;
    margin-bottom: 1.25rem;
}

.strategic-content-panel p:last-child {
    margin-bottom: 0;
}

.faq-panel {
    margin-bottom: 2rem !important;
}

.faq-item {
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-child {
    padding-top: 0;
}

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

.faq-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.08rem;
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    color: #b1b1bb;
}

.faq-links {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.85rem !important;
    margin-top: 1.75rem !important;
}

.faq-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #d7d7df;
    font-size: 0.92rem;
    transition: all 0.25s ease;
}

.faq-links a:hover {
    border-color: rgba(0, 243, 255, 0.28);
    color: #ffffff;
    background: rgba(0, 243, 255, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .content-section,
    .related-links-section {
        padding: 0 1.25rem 4.5rem 1.25rem !important;
    }

    .strategic-content-panel,
    .faq-panel {
        padding: 1.5rem !important;
        border-radius: 18px;
    }

    .strategic-content-panel p,
    .faq-item p {
        font-size: 0.96rem;
    }

    .faq-item h3 {
        font-size: 1rem;
    }
}
