/* ==========================================================================
   ISPFocus — Design System Cyber Security / Cyberpunk High Contrast
   Paleta: Dark Core (#040008), Purple (#7B2FBE), Magenta (#C471ED), Neon (#DA44FB)
   ========================================================================== */

:root {
    --clr-bg-deep: #040008;
    --clr-bg-surface: #0E0520;
    --clr-bg-glass: rgba(14, 5, 32, 0.85);

    --clr-purple-core: #7B2FBE;
    --clr-purple-bright: #9B59B6;
    --clr-magenta: #C471ED;
    --clr-neon: #DA44FB;
    --clr-cyan-glow: #00F0FF;

    --clr-text-primary: #FFFFFF;
    --clr-text-muted: #E2D7F3;
    --clr-border-glow: rgba(196, 113, 237, 0.45);

    --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* Reset básico */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--clr-bg-deep);
    color: var(--clr-text-primary);
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    /* Fundo Cyber Hexagon Network Neon */
    background:
        linear-gradient(180deg, rgba(4, 0, 8, 0.40) 0%, rgba(4, 0, 8, 0.50) 50%, rgba(4, 0, 8, 0.70) 100%),
        url('/static/img/hero_bg.png') no-repeat center center fixed;
    background-size: cover;
}

/* Tipografia e Títulos Vívidos estilo Cyberpunk */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

/* Palavra ou trecho em destaque Neon Roxo/Magenta */
.neon-highlight {
    color: #C471ED;
    background: linear-gradient(135deg, #C471ED 0%, #DA44FB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(218, 68, 251, 0.6));
}

.gradient-text {
    color: #FFFFFF;
    filter: drop-shadow(0 0 14px rgba(196, 113, 237, 0.35));
}

.terminal-text {
    font-family: var(--font-mono);
    color: var(--clr-neon);
    background: rgba(123, 47, 190, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(218, 68, 251, 0.5);
    box-shadow: 0 0 10px rgba(218, 68, 251, 0.3);
}

/* Layout Container */
.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

/* Glassmorphism Cyber Card */
.glass {
    background: var(--clr-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--clr-border-glow);
    border-radius: 14px;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.6),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

/* Base Buttons & Interactivity */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.6rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #C471ED !important;
    text-shadow: 0 0 8px rgba(196, 113, 237, 0.4);
    background: rgba(196, 113, 237, 0.1);
    border: 1px solid #C471ED;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(196, 113, 237, 0.15);
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none !important;
}

.btn-primary:hover,
.btn-primary:focus,
a.btn-primary:hover,
a.btn-primary:focus {
    color: #FFFFFF !important;
    background: rgba(196, 113, 237, 0.25);
    border-color: #E2D7F3;
    box-shadow: 0 0 25px rgba(196, 113, 237, 0.4);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.6rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #00F0FF !important;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid #00F0FF;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
a.btn-secondary:hover,
a.btn-secondary:focus {
    color: #FFFFFF !important;
    background: rgba(0, 240, 255, 0.25);
    border-color: #E2D7F3;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* Floating Glassmorphism Navbar */

.navbar {
    position: fixed;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1240px;
    z-index: 1000;
    padding: 0.6rem 1.8rem;
    background: rgba(14, 6, 28, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(196, 113, 237, 0.35);
    border-radius: 24px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.navbar .navbar-inner,
.navbar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

.navbar .nav-container {
    display: flex;
    align-items: center;
}

.navbar .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


.navbar .logo img {
    height: 90px;
    max-height: 95px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(196, 113, 237, 0.5));
    transition: all 0.3s ease;
}

.navbar .logo img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 16px rgba(218, 68, 251, 0.7));
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.2rem;
}

.navbar .nav-links a {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.navbar .nav-links a:hover {
    color: var(--clr-neon);
    text-shadow: 0 0 10px rgba(218, 68, 251, 0.8);
}

/* Botão Pílula Neon na Navbar */
.navbar .nav-btn,
a.nav-btn {
    padding: 0.55rem 1.4rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #C471ED !important;
    text-shadow: 0 0 8px rgba(196, 113, 237, 0.4);
    background: rgba(196, 113, 237, 0.1);
    border: 1px solid #C471ED;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(196, 113, 237, 0.2);
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.navbar .nav-btn:hover,
.navbar .nav-btn:focus,
a.nav-btn:hover,
a.nav-btn:focus {
    color: #FFFFFF !important;
    background: rgba(196, 113, 237, 0.25);
    border-color: #E2D7F3;
    box-shadow: 0 0 25px rgba(196, 113, 237, 0.4);
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* Toggle Menu Hamburger para Celular */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s linear;
}



/* Hero Section — 2-Column Cyberpunk Grid */
.hero {
    position: relative;
    padding: 10rem 0 5rem;
    text-align: left;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: #00F0FF;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.hero-badge-pill .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00FF66;
    box-shadow: 0 0 8px #00FF66;
    animation: pulse-dot-glow 1.5s infinite alternate;
}

@keyframes pulse-dot-glow {
    from { opacity: 0.4; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero p {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: #E5D9F2;
    margin-bottom: 2.2rem;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* Container Visual Tech: Robô Cyberpunk 3D em Card Glassmorphism Compacto */
.hero-tech-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Moldura Card Cyberpunk Premium */
.robot-3d-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 1.2rem;
    border-radius: 22px;
    background: rgba(14, 5, 32, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(196, 113, 237, 0.45);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.85),
        0 0 35px rgba(123, 47, 190, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: robot-card-float 5s ease-in-out infinite alternate;
}

.robot-3d-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.95),
        0 0 45px rgba(0, 240, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 240, 255, 0.6);
}

@keyframes robot-card-float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

/* Container Interno da Imagem 3D (Com borda e proporção fixa) */
.robot-img-container {
    position: relative;
    width: 100%;
    max-height: 280px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.robot-3d-img,
.robot-3d-video {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    object-position: center 25%;
    filter: contrast(105%) brightness(102%);
    transition: transform 0.5s ease;
}

.robot-3d-card:hover .robot-3d-img,
.robot-3d-card:hover .robot-3d-video {
    transform: scale(1.03);
}

/* Linha Laser de Escaneamento Holográfico (Descendo em Loop Contínuo) */
.hud-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #00F0FF 50%, transparent 100%);
    box-shadow: 0 0 15px #00F0FF, 0 0 25px #00F0FF;
    animation: scanline-move 2.8s linear infinite;
    z-index: 10;
    pointer-events: none;
}

@keyframes scanline-move {
    0% { top: -5%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 105%; opacity: 0; }
}

/* Badges Holográficos Dentro do Container da Imagem */
.hud-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    background: rgba(4, 0, 8, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.5);
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: #00F0FF;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
    z-index: 5;
    animation: hud-pulse 2.5s infinite alternate;
}

.hud-badge.top-right {
    top: 10px;
    right: 10px;
    border-color: rgba(0, 255, 102, 0.6);
    color: #00FF66;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.35);
}

.hud-badge.bottom-left {
    bottom: 10px;
    left: 10px;
    border-color: rgba(218, 68, 251, 0.6);
    color: #DA44FB;
    box-shadow: 0 0 10px rgba(218, 68, 251, 0.35);
}

@keyframes hud-pulse {
    0% { opacity: 0.85; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1.02); }
}

/* Terminal CLI Holográfico Acoplado no Card */
.cyber-terminal {
    width: 100%;
    margin-top: 1rem;
    background: rgba(8, 2, 18, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 12px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    overflow: hidden;
    height: 243px;
    box-sizing: border-box;
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    background: rgba(20, 8, 40, 0.8);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    height: 38px;
    box-sizing: border-box;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dot.red { background-color: #FF5F56; }
.terminal-dot.yellow { background-color: #FFBD2E; }
.terminal-dot.green { background-color: #27C93F; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

.terminal-body {
    padding: 1rem 1.1rem;
    font-family: var(--font-mono);
    font-size: 0.84rem;
    line-height: 1.5;
    height: 205px;
    max-height: 205px;
    overflow: hidden;
    color: #FFFFFF;
    box-sizing: border-box;
}

.terminal-prompt {
    color: #DA44FB;
    font-weight: bold;
    margin-right: 0.5rem;
}

.terminal-command {
    color: #00F0FF;
    font-weight: 600;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 1.1em;
    background-color: #00F0FF;
    vertical-align: middle;
    margin-left: 2px;
    box-shadow: 0 0 8px #00F0FF;
    animation: cursor-blink 0.8s infinite;
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.terminal-logs {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.log-line {
    font-size: 0.86rem;
    word-break: break-word;
}

@keyframes animate-fade-in {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: animate-fade-in 0.25s ease-out forwards;
}

/* Cards de Serviços / Recursos Cyberpunk */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.card {
    background: var(--clr-bg-surface);
    border: 1px solid var(--clr-border-glow);
    border-radius: 14px;
    padding: 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--clr-neon), transparent);
    opacity: 0.7;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--clr-neon);
    box-shadow:
        0 0 30px rgba(196, 113, 237, 0.4),
        0 12px 40px rgba(123, 47, 190, 0.3);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.card p {
    color: #E2D7F3;
    font-size: 1.05rem;
    line-height: 1.65;
}

/* ---------------------------------------------------------------------------
 * Efeito Flip Card 3D (Giro 180° com Mouse Over)
 * --------------------------------------------------------------------------- */
.flip-card {
    background-color: transparent;
    perspective: 1000px;
    min-height: 240px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 14px;
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Frente do Card: Ícone Grande + Título + Dica visual */
.flip-card-front {
    background: var(--clr-bg-surface);
    border: 1px solid var(--clr-border-glow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.flip-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--clr-neon), transparent);
    opacity: 0.7;
}

.flip-card:hover .flip-card-front {
    border-color: var(--clr-neon);
    box-shadow: 0 0 25px rgba(196, 113, 237, 0.35);
}

.flip-card-front h3 {
    font-size: 1.45rem;
    color: #FFFFFF;
    margin: 0;
    font-weight: 700;
}

.flip-hint {
    font-size: 0.75rem;
    color: var(--clr-magenta);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

/* Verso do Card: Título + Descrição Completa */
.flip-card-back {
    background: linear-gradient(135deg, rgba(22, 10, 42, 0.96) 0%, rgba(55, 18, 95, 0.96) 100%);
    border: 1px solid var(--clr-neon);
    box-shadow: 0 0 35px rgba(196, 113, 237, 0.45);
    transform: rotateY(180deg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.flip-card-back h4 {
    font-size: 1.25rem;
    color: var(--clr-neon);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
}

.flip-card-back p {
    color: #EBF4F6;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

/* Formulário de Contato */
.form-group {
    margin-bottom: 1.8rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #FFFFFF;
}

.form-control {
    width: 100%;
    padding: 0.95rem 1.1rem;
    background: rgba(4, 0, 8, 0.8);
    border: 1px solid var(--clr-border-glow);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 1.05rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--clr-neon);
    box-shadow: 0 0 15px rgba(218, 68, 251, 0.5);
    background: rgba(11, 5, 24, 0.95);
}

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

/* Footer */
footer {
    padding: 4rem 0 2.5rem;
    border-top: 1px solid var(--clr-border-glow);
    background: rgba(4, 0, 8, 0.95);
    color: #E5D9F2;
    font-size: 1rem;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    text-align: left;
    margin-bottom: 3.5rem;
    align-items: start;
}

.footer-col-title {
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 1rem;
}

.footer-col-subtitle {
    font-size: 1.2rem;
    color: #FFF;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #E2D7F3;
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 1.05rem;
    padding: 0;
    margin: 0;
}

.footer-nav-link {
    color: #E2D7F3;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-link:hover {
    color: var(--clr-neon);
}

.footer-badges-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

.footer-badge-ipv6 {
    height: 90px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.45));
}

.footer-badge-seal {
    height: 85px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.45));
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 1.05rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact-icon {
    flex-shrink: 0;
}

.footer-contact-link {
    color: var(--clr-text-primary);
    text-decoration: none;
}

.footer-contact-link:hover {
    color: var(--clr-neon);
}

.footer-bottom {
    border-top: 1px solid rgba(196, 113, 237, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

footer .footer-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #FFFFFF;
}

/* ==========================================================================
   Media Queries — Responsividade Completa para Celular (Mobile & Tablet)
   ========================================================================== */

@media (max-width: 992px) {
    .container {
        width: 92%;
    }

    .hero {
        padding: 10rem 0 4rem;
    }
}

@media (max-width: 768px) {

    /* Navbar Mobile Flutuante */
    .navbar {
        width: 94%;
        top: 0.8rem;
        padding: 0.6rem 1.2rem;
        border-radius: 18px;
    }

    .navbar .navbar-inner,
    .navbar .container {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
    }

    .navbar .logo {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    .navbar .logo img {
        height: 48px;
        max-height: 52px;
        width: auto;
    }

    .menu-toggle {
        display: flex !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    /* Dropdown do Menu Mobile */
    .navbar .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.8rem);
        left: 0;
        width: 100%;
        background: rgba(14, 6, 28, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--clr-border-glow);
        border-radius: 16px;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.2rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links a {
        font-size: 1.15rem;
        width: 100%;
        text-align: center;
    }

    .navbar .nav-btn {
        width: 100%;
        text-align: center;
        display: block;
    }

    /* Ajustes Gerais de Conteúdo Mobile */
    .hero {
        padding: 8.5rem 0 3.5rem;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }

    /* Grids e Cartões em 1 Coluna no Celular */
    .grid-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.8rem 1.2rem;
    }

    /* Seção Equipe (Marcelo Gondim) Empilhada */
    .equipe-flex {
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }
}

/* ==========================================================================
   Seção de Parceiros — Esteira Rolante (Marquee Loop Infinito)
   ========================================================================== */

.parceiros-section {
    padding: 4rem 0 5rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

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

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-width: 180px;
    padding: 0.8rem 1.8rem;
    background: rgba(14, 5, 32, 0.45);
    border: 1px solid rgba(196, 113, 237, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.partner-logo-item:hover {
    border-color: var(--clr-neon);
    box-shadow: 0 0 20px rgba(218, 68, 251, 0.4);
    transform: translateY(-3px);
}

.partner-logo-item img {
    max-height: 55px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.95) contrast(1.05);
    transition: filter 0.3s ease;
}

.partner-logo-item:hover img {
    filter: brightness(1.15) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

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

/* ==========================================================================
   Product Cards & Hover Themes (Zero Inline Styles / CSP Strict)
   ========================================================================== */
.products-section {
    padding: 11rem 0 5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.8rem;
    align-items: stretch;
}

.product-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card-cyan {
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.product-card-cyan:hover {
    border-color: #00F0FF;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
}

.product-card-magenta {
    border: 1px solid rgba(196, 113, 237, 0.25);
}

.product-card-magenta:hover {
    border-color: #C471ED;
    box-shadow: 0 0 25px rgba(196, 113, 237, 0.2);
}

.product-card-green {
    border: 1px solid rgba(0, 255, 102, 0.25);
}

.product-card-green:hover {
    border-color: #00FF66;
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.2);
}

.product-card-amber {
    border: 1px solid rgba(255, 184, 0, 0.25);
}

.product-card-amber:hover {
    border-color: #FFB800;
    box-shadow: 0 0 25px rgba(255, 184, 0, 0.2);
}

.product-card-red {
    border: 1px solid rgba(235, 77, 75, 0.25);
}

.product-card-red:hover {
    border-color: #eb4d4b;
    box-shadow: 0 0 25px rgba(235, 77, 75, 0.2);
}

/* Product Glow Orbs */
.glow-orb-cyan {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: rgba(0, 240, 255, 0.08);
    border-radius: 50%;
    filter: blur(15px);
    pointer-events: none;
}

.glow-orb-magenta {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: rgba(196, 113, 237, 0.08);
    border-radius: 50%;
    filter: blur(15px);
    pointer-events: none;
}

.glow-orb-green {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: rgba(0, 255, 102, 0.08);
    border-radius: 50%;
    filter: blur(15px);
    pointer-events: none;
}

.glow-orb-amber {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: rgba(255, 184, 0, 0.08);
    border-radius: 50%;
    filter: blur(15px);
    pointer-events: none;
}

.glow-orb-red {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: rgba(235, 77, 75, 0.08);
    border-radius: 50%;
    filter: blur(15px);
    pointer-events: none;
}

/* Product Badges */
.badge-free {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 255, 102, 0.15);
    border: 1px solid #00FF66;
    color: #00FF66;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Product Icon Boxes */
.product-icon-box-cyan {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon-box-magenta {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(196, 113, 237, 0.1);
    border: 1px solid rgba(196, 113, 237, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon-box-green {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid rgba(0, 255, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon-box-amber {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon-box-red {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(235, 77, 75, 0.1);
    border: 1px solid rgba(235, 77, 75, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-btn-cyan {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 0.75rem 0.5rem;
    font-size: 0.92rem;
    white-space: nowrap;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid #00F0FF;
    color: #00F0FF;
}

.product-btn-cyan:hover {
    background: #00F0FF;
    color: #000;
}

.product-btn-magenta {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 0.75rem 0.5rem;
    font-size: 0.92rem;
    white-space: nowrap;
    background: rgba(196, 113, 237, 0.1);
    border: 1px solid #C471ED;
    color: #C471ED;
}

.product-btn-magenta:hover {
    background: #C471ED;
    color: #000;
}

.product-btn-green {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid #00FF66;
    color: #00FF66;
}

.product-btn-green:hover {
    background: #00FF66;
    color: #000;
}

.product-btn-amber {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid #FFB800;
    color: #FFB800;
}

.product-btn-amber:hover {
    background: #FFB800;
    color: #000;
}

.product-btn-red {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
    background: rgba(235, 77, 75, 0.1);
    border: 1px solid #eb4d4b;
    color: #eb4d4b;
}

.product-btn-red:hover {
    background: #eb4d4b;
    color: #FFF;
}

/* ==========================================================================
   Public Page Utilities & Layout Helpers (Zero Inline Styles / CSP Strict)
   ========================================================================== */
.page-section-top {
    padding: 11rem 0 5rem;
}

.section-padding-md {
    padding: 4rem 0;
}

.max-w-680 {
    max-width: 680px;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-1000 {
    max-width: 1000px;
}

.max-w-1050 {
    max-width: 1050px;
}

.max-w-1200 {
    max-width: 1200px;
}

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 4rem; }
.mb-7 { margin-bottom: 5rem; }

.section-hero-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.section-hero-desc {
    color: var(--clr-text-secondary);
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.card-padding-lg {
    padding: 2.5rem;
}

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

.lead-text-card {
    font-size: 1.25rem;
    line-height: 1.8;
    padding: 2.5rem;
    text-align: center;
    color: var(--clr-text-primary);
}

.legal-card-text {
    font-size: 1rem;
    line-height: 1.8;
}

/* Sobre Page / Team */
.equipe-flex-container {
    padding: 2.5rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.equipe-avatar-col {
    flex: 0 0 320px;
    max-width: 100%;
}

.equipe-avatar-frame {
    border: 2px solid var(--clr-magenta);
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 0 25px rgba(196, 113, 237, 0.4);
    background: rgba(14, 8, 32, 0.8);
}

.equipe-avatar-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.equipe-bio-col {
    flex: 1;
    min-width: 300px;
}

.equipe-name {
    font-size: 2.2rem;
    color: #FFF;
    margin-bottom: 1rem;
}

.equipe-bio-desc {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.checklist-unstyled {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.08rem;
    padding: 0;
    margin: 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checklist-check {
    color: var(--clr-magenta);
    font-weight: bold;
    font-size: 1.2rem;
}

/* 404 Page */
.notfound-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 1.5rem 6rem;
    text-align: center;
}

.notfound-card {
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.notfound-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(196, 113, 237, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.notfound-code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00F0FF 0%, #C471ED 50%, #7B2FBE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.4));
}

.notfound-title {
    font-size: 1.8rem;
    color: #FFF;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.notfound-desc {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.notfound-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Servicos Page */
.servicos-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.servicos-icon-img {
    height: 42px;
    width: 42px;
    object-fit: contain;
}

.servicos-title {
    font-size: 2.2rem;
    margin: 0;
}

.servicos-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.1rem;
    padding: 0;
    margin: 0;
}

.btn-w-full {
    width: 100%;
}

/* Index Page Utilities */
.section-services-home {
    padding: 5rem 0 3rem 0;
}

.service-card-icon-img {
    height: 52px;
    width: 52px;
    object-fit: contain;
}

.diff-card {
    text-align: center;
    padding: 2.2rem 1.5rem;
}

.diff-card-icon-box {
    margin-bottom: 1.2rem;
}

.diff-card-icon-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.diff-card-title {
    font-size: 1.3rem;
}

/* Captcha Visual Styles */
.captcha-visual-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.captcha-svg-box {
    flex: 1;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 8, 16, 0.9);
    border-radius: 8px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    overflow: hidden;
}

.captcha-svg-box svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.captcha-reload-btn {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.35);
    color: #00F0FF;
    padding: 0 1rem;
    border-radius: 8px;
    cursor: pointer;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.captcha-reload-btn:hover {
    background: rgba(0, 240, 255, 0.25);
    border-color: #00F0FF;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.captcha-code-input {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
}

/* Alertas de Notificação do Formulário */
.alert-box {
    padding: 1rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    font-weight: 500;
}

.alert-error {
    background: rgba(255, 75, 75, 0.15);
    border: 1px solid rgba(255, 75, 75, 0.5);
    color: #FF7B7B;
    box-shadow: 0 0 15px rgba(255, 75, 75, 0.2);
}

.alert-success {
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.5);
    color: #00FF88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}