/* ==========================================
   REGISTER CUSTOM PROPERTY FOR ANGLE ANIMATION
   ========================================== */
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

/* ==========================================
   RESET & GLOBAL BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Neue Plak", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

/* ==========================================
   SCROLL MARGIN PARA ÂNCORAS DO MENU
   ========================================== */
#solucoes,
#cases,
#engenharia {
    scroll-margin-top: 80px;
}

/* ==========================================
   CURSOR PERSONALIZADO
   ========================================== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #eaff00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(234, 255, 0, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
}

@media (max-width: 768px) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/* ==========================================
   PRELOADER ALTO PADRÃO
   ========================================== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #0a0b0e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

#preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(234, 255, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(234, 255, 0, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, #0a0b0e 0%, #14161c 100%);
    z-index: 0;
}

#preloader::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    opacity: 0.3;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    max-width: 90%;
}

.preloader-ring {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #eaff00;
    border-bottom-color: #eaff00;
    animation: spinRing 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    position: relative;
    box-shadow: 0 0 30px rgba(234, 255, 0, 0.05);
}

.ring::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: rgba(234, 255, 0, 0.3);
    border-right-color: rgba(234, 255, 0, 0.3);
    animation: spinRing 1.8s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}

.ring-glow {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 255, 0, 0.06) 0%, transparent 70%);
    animation: pulseGlow 2s ease-in-out infinite;
    filter: blur(4px);
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.preloader-logo {
    font-size: 3.2rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #eaff00, #b0c800, #eaff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradShift 3s ease-in-out infinite, pulseLogo 2.4s ease-in-out infinite;
    text-shadow: 0 0 60px rgba(234, 255, 0, 0.15);
    display: inline-block;
    line-height: 1;
    padding: 0.6em 0.45em 0.7em 0.3em;
    overflow: visible;
    transform: scale(1);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

@keyframes gradShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulseLogo {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

.preloader-progress {
    position: relative;
    width: 240px;
    max-width: 80%;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: visible;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #eaff00, #a0b800, #eaff00);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: shimmer 2s linear infinite;
    transition: width 0.25s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #eaff00;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(234, 255, 0, 0.6);
}

.progress-glow {
    position: absolute;
    inset: -6px;
    background: radial-gradient(circle, rgba(234, 255, 0, 0.08) 0%, transparent 80%);
    border-radius: 4px;
    filter: blur(6px);
    opacity: 0.6;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.preloader-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-top: 0.2rem;
    min-height: 1.2em;
    border-right: 2px solid rgba(234, 255, 0, 0.6);
    padding-right: 4px;
    display: inline-block;
    animation: blinkCursor 0.8s step-end infinite;
}

@keyframes blinkCursor {
    0%,
    100% {
        border-color: rgba(234, 255, 0, 0.6);
    }
    50% {
        border-color: transparent;
    }
}

.preloader-sub {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    font-weight: 400;
    margin-top: -0.5rem;
}

/* ==========================================
   NAVBAR (FIXO NO TOPO)
   ========================================== */
.nav-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 757px;
    max-width: 90%;
    height: 56px;
    z-index: 1000;
}

.nav-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.nav-content {
    position: relative;
    z-index: 2;
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    margin-right: 30px;
    margin-left: 20px;
    letter-spacing: -0.02em;
}

.links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.links a {
    color: #cbcbcb;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.links a:hover {
    color: #fff;
}

.links .active {
    color: #fff;
}

.links .active::before {
    content: "↘";
    color: #c0c0c0;
    margin-right: 6px;
}

.contact {
    height: 34px;
    padding: 0 14px 0 10px;
    background: #eceeed;
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    transition: background 0.2s;
}

.contact::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #c0c0c0;
}

.contact:hover {
    background: #ffffff;
}

#menu-toggle,
.menu-btn {
    display: none;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .links {
        gap: 10px;
    }
    .links a {
        font-size: 11px;
    }
    .logo {
        margin-right: 20px;
    }
    .contact {
        font-size: 11px;
        padding: 0 10px 0 8px;
    }
}

/* ==========================================
   HERO SECTION (FULLSCREEN VIDEO)
   ========================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.65));
    z-index: 2;
}

.hero-center {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    padding: 0 20px;
    padding-top: 70px !important;
}

@media (max-width: 768px) {
    .hero-center {
        padding-top: 60px !important;
    }
}

.reference-hero {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.club-kicker {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    opacity: 0.95;
    margin-top: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 18ch;
    margin: 0 auto 24px;
    word-break: keep-all;
}

.hero-copy {
    max-width: 70ch;
    margin: 0 auto 32px;
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 12px;
}

.reference-hero>div[style*="display: flex"] {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    justify-content: center !important;
    margin-top: 3rem !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.reference-hero>div[style*="display: flex"] span {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reference-hero>div[style*="display: flex"] span:hover {
    background: rgba(234, 255, 0, 0.15);
    color: #eaff00;
    transform: translateY(-2px);
    border-color: rgba(234, 255, 0, 0.3);
}

@media (max-width: 550px) {
    .reference-hero>div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.7rem !important;
    }
    .reference-hero>div[style*="display: flex"] span {
        width: fit-content;
    }
}

.shiny-cta {
    --font-sans: ui-sans-serif, system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --signal: #eaff00;
    --shiny-cta-bg: #0f0f12;
    --shiny-cta-bg-subtle: #2a2a2d;
    --shiny-cta-fg: #ffffff;
    --shiny-cta-highlight: var(--signal);
    --shiny-cta-highlight-subtle: #f0ff66;
    --animation: gradient-angle linear infinite;
    --duration: 5s;
    --transition: 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);

    opacity: 1;
    appearance: button;
    box-sizing: border-box;
    margin: 0;
    border-radius: 48px !important;
    font: inherit;
    isolation: isolate;
    cursor: pointer;
    outline-offset: 4px;
    font-family: var(--font-body);
    letter-spacing: -0.005em;
    color: var(--shiny-cta-fg);

    --gradient-angle-offset: 0deg;
    --gradient-percent: 6%;
    --gradient-shine: var(--shiny-cta-highlight-subtle);

    background: linear-gradient(135deg, #18181c 0%, #0f0f12 100%) padding-box,
        conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
            transparent,
            var(--shiny-cta-highlight) var(--gradient-percent),
            var(--gradient-shine) calc(var(--gradient-percent) * 2),
            var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
            transparent calc(var(--gradient-percent) * 4)) border-box;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(234, 255, 0, 0.3);
    justify-content: center;
    align-items: center;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine, transform, box-shadow;
    display: inline-flex;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);

    animation: var(--animation) var(--duration), var(--animation) calc(var(--duration) / 0.4) reverse paused;
    animation-composition: add;
}

.shiny-cta-link {
    text-decoration: none;
    display: inline-flex;
}

.shiny-cta span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shiny-cta span::after {
    content: "→";
    transition: transform 0.25s ease;
    display: inline-block;
}

.shiny-cta:hover span::after {
    transform: translateX(4px);
}

.shiny-cta:hover {
    --gradient-percent: 9%;
    --gradient-angle-offset: 25deg;
    --gradient-shine: #ffffff;
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(234, 255, 0, 0.5);
    border-color: rgba(234, 255, 0, 0.6);
}

@keyframes gradient-angle {
    to {
        --gradient-angle: 360deg;
    }
}

.club-kicker,
.hero-title,
.hero-copy,
.shiny-cta {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-title {
    animation-delay: 0.15s;
}

.hero-copy {
    animation-delay: 0.3s;
}

.shiny-cta {
    animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.45s forwards,
        gradient-angle linear infinite var(--duration);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   DASHBOARD RSO
   ========================================== */
.rso-dashboard {
    background: #05070a;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.rso-dashboard::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #05070a);
    pointer-events: none;
    z-index: 1;
}

.rso-dashboard::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, transparent, #05070a);
    pointer-events: none;
    z-index: 1;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.dashboard-block {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.dashboard-block:hover {
    transform: translateY(-4px);
}

.card-dashboard {
    position: relative;
    height: 100%;
    min-height: 280px;
}

.card-bg {
    position: absolute;
    inset: 0;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-block {
    grid-row: span 2;
}

.about-block .card-content {
    justify-content: flex-end;
}

.about-block h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-block p {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 90%;
    opacity: 0.9;
}

.card-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.social-weather-vanguard {
    background: linear-gradient(135deg, #0d0f12 0%, #07080a 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: 1rem;
}

.social-weather-vanguard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
    opacity: 0.4;
}

.vanguard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #eaff00;
    border-radius: 50%;
    box-shadow: 0 0 8px #eaff00;
    animation: statusPulse 2s infinite ease-in-out;
}

.status-text {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.vanguard-index {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
}

.vanguard-body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1;
    justify-content: center;
}

.vanguard-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.5rem;
}

.row-label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.row-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.row-value.numeric {
    font-size: 1.3rem;
    color: #eaff00;
    font-weight: 500;
}

.vanguard-weather-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.weather-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.weather-display {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    position: relative;
}

.vanguard-temp {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.05em;
    color: #fff;
    line-height: 1;
}

.vanguard-unit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    position: relative;
    top: -12px;
}

.vanguard-icon-anim {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    animation: floatIcon 4s infinite ease-in-out;
}

@keyframes statusPulse {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 0 0 12px #eaff00;
    }
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-4px) rotate(4deg);
    }
}

@media (max-width: 768px) {
    .social-weather-vanguard {
        min-height: auto;
        padding: 1.25rem;
    }
    .vanguard-temp {
        font-size: 2rem;
    }
}

.event-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.event-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #eaff00;
    color: #000;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.event-icon {
    font-size: 1rem;
}

.event-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.event-date {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.event-desc {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.btn-event {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s;
}

.btn-event:hover {
    background: #eaff00;
    color: #000;
}

.service-block {
    grid-column: span 1;
}

.service-content {
    justify-content: flex-end;
    align-items: flex-start;
}

.service-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.arrow-link {
    font-size: 1.8rem;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s;
    display: inline-block;
}

.arrow-link:hover {
    transform: translate(5px, -5px);
    color: #eaff00;
}

/* ==========================================
   SEÇÃO: PERFORMANCE & CONVERSÃO (PREMIUM)
   ========================================== */
.performance-section {
    background: radial-gradient(circle at 30% 20%, #0d1117 0%, #05070a 60%, #000000 100%);
    padding: 5rem 1.5rem 8rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(234, 255, 0, 0.06);
    border-bottom: none;
}

.performance-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, transparent 0%, #05070a 100%);
    pointer-events: none;
    z-index: 3;
}

.performance-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle, rgba(234, 255, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.performance-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.perf-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.perf-header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.perf-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #eaff00;
    background: rgba(234, 255, 0, 0.07);
    border: 1px solid rgba(234, 255, 0, 0.12);
    padding: 0.35rem 1.2rem;
    border-radius: 40px;
    white-space: nowrap;
}

.perf-badge-line {
    flex: 0 0 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(234, 255, 0, 0.3), transparent);
}

.perf-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}

.perf-title .highlight {
    color: #eaff00;
    font-style: italic;
}

.perf-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.perf-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.perf-divider span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: rgba(234, 255, 0, 0.08);
}

.perf-divider span:nth-child(1) {
    width: 30px;
}
.perf-divider span:nth-child(2) {
    width: 60px;
    background: rgba(234, 255, 0, 0.2);
}
.perf-divider span:nth-child(3) {
    width: 30px;
}

.hide-mobile {
    display: inline;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.perf-card {
    background: rgba(18, 20, 26, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem 1.5rem 1.2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.perf-card:hover {
    transform: translateY(-6px);
    border-color: rgba(234, 255, 0, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.perf-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(234, 255, 0, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 16px;
}

.perf-card:hover .perf-card-glow {
    opacity: 1;
}

.perf-card-border {
    position: absolute;
    inset: 1px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.perf-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.perf-card-header .perf-icon-svg {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.perf-card:hover .perf-icon-svg {
    color: #eaff00;
}

.perf-card-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.perf-card-footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(234, 255, 0, 0.06), transparent);
    margin-top: 1.2rem;
    opacity: 0.5;
}

.stat-card {
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(145deg, rgba(234, 255, 0, 0.04) 0%, rgba(18, 20, 26, 0.8) 100%);
    border-color: rgba(234, 255, 0, 0.1);
}

.stat-card .perf-card-header {
    width: 100%;
    justify-content: center;
    gap: 1rem;
}

.stat-card .perf-icon-svg {
    color: rgba(234, 255, 0, 0.6);
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 4.2rem;
    font-weight: 700;
    color: #eaff00;
    line-height: 1;
    text-shadow: 0 0 30px rgba(234, 255, 0, 0.15);
    margin-bottom: 0.8rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.stat-label strong {
    color: #fff;
}

.stat-source {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

.perf-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.perf-card-title .highlight {
    color: #eaff00;
}

.perf-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    flex-grow: 1;
}

.perf-card-desc strong {
    color: #fff;
}

.perf-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.perf-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

.perf-benefits li .benefit-icon {
    color: #eaff00;
    font-size: 0.7rem;
    margin-top: 0.2rem;
    opacity: 0.6;
    flex-shrink: 0;
}

.perf-benefits li strong {
    color: #fff;
}

.perf-benefits li .benefit-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.performance-callout {
    background: rgba(18, 20, 26, 0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.performance-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(234, 255, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.callout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.callout-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.callout-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(234, 255, 0, 0.5);
    background: rgba(234, 255, 0, 0.05);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(234, 255, 0, 0.06);
    width: fit-content;
}

.callout-icon-svg {
    color: #eaff00;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.callout-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.callout-text strong {
    color: #fff;
}

.callout-text-small {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.callout-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-end;
}

.callout-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem;
    width: 100%;
}

.callout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border-radius: 48px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', sans-serif;
}

.callout-btn.primary {
    background: #eaff00;
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(234, 255, 0, 0.2);
}

.callout-btn.primary:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(234, 255, 0, 0.3);
    background: #d4e600;
}

.callout-btn.primary svg {
    transition: transform 0.3s ease;
}

.callout-btn.primary:hover svg {
    transform: translateX(4px);
}

.callout-btn.secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.callout-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(234, 255, 0, 0.3);
    transform: scale(1.04);
}

.callout-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.6rem 1.2rem;
}

.callout-tags span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
    letter-spacing: 0.03em;
    padding: 0.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 1024px) {
    .performance-section {
        padding: 4rem 1.5rem 6rem !important;
    }

    .performance-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
    }

    .stat-card {
        grid-column: span 2 !important;
    }

    .callout-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }

    .callout-right {
        align-items: center !important;
    }

    .callout-cta-group {
        justify-content: center !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .callout-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .callout-tags {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .perf-header-top {
        flex-direction: column !important;
        gap: 0.6rem !important;
    }

    .perf-badge-line {
        display: none !important;
    }

    .hide-mobile {
        display: inline !important;
    }
}

@media (max-width: 768px) {
    .performance-section {
        padding: 2.5rem 1rem 5rem !important;
    }

    .performance-container {
        padding: 0 0.5rem !important;
    }

    .performance-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .stat-card {
        grid-column: span 1 !important;
    }

    .stat-number {
        font-size: 3.2rem !important;
    }

    .perf-card {
        padding: 1.5rem 1.2rem 1rem !important;
    }

    .perf-card-header .perf-icon-svg {
        width: 24px !important;
        height: 24px !important;
    }

    .perf-card-tag {
        font-size: 0.5rem !important;
        padding: 0.1rem 0.5rem !important;
    }

    .perf-title {
        font-size: 1.8rem !important;
    }

    .perf-subtitle {
        font-size: 0.9rem !important;
        padding: 0 0.5rem !important;
    }

    .perf-divider span:nth-child(1),
    .perf-divider span:nth-child(3) {
        width: 20px !important;
    }
    .perf-divider span:nth-child(2) {
        width: 40px !important;
    }

    .performance-callout {
        padding: 1.8rem 1.2rem !important;
        margin: 0 0.5rem !important;
    }

    .callout-text {
        font-size: 1rem !important;
    }

    .callout-btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.85rem !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .callout-cta-group {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.8rem !important;
    }

    .callout-tags {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.4rem !important;
    }

    .callout-tags span {
        font-size: 0.65rem !important;
    }

    .hide-mobile {
        display: none !important;
    }

    .perf-benefits li {
        font-size: 0.8rem !important;
        gap: 0.5rem !important;
    }

    .perf-benefits li .benefit-desc {
        font-size: 0.7rem !important;
    }

    .stat-label {
        font-size: 0.8rem !important;
    }

    .stat-source {
        font-size: 0.5rem !important;
    }
}

@media (max-width: 400px) {
    .performance-section {
        padding: 2rem 0.5rem 4rem !important;
    }

    .perf-title {
        font-size: 1.5rem !important;
    }

    .stat-number {
        font-size: 2.8rem !important;
    }

    .perf-card {
        padding: 1.2rem 1rem 0.8rem !important;
    }

    .perf-card-title {
        font-size: 1rem !important;
    }

    .perf-card-desc {
        font-size: 0.8rem !important;
    }

    .callout-text {
        font-size: 0.9rem !important;
    }

    .callout-btn {
        font-size: 0.8rem !important;
        padding: 0.7rem 1.2rem !important;
    }

    .callout-badge {
        font-size: 0.5rem !important;
        padding: 0.15rem 0.6rem !important;
    }
}

/* ==========================================
   SEÇÃO PREMIUM: CÓDIGO LIMPO & SEO NATIVO
   ========================================== */
.seo-premium {
    position: relative;
    padding: 6rem 2rem 8rem;
    background: radial-gradient(circle at 30% 20%, #0d1117 0%, #05070a 60%, #000 100%);
    overflow: hidden;
    border-top: 1px solid rgba(234, 255, 0, 0.06);
    border-bottom: 1px solid rgba(234, 255, 0, 0.06);
}

.seo-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;
}

.seo-premium-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.seo-premium-header {
    text-align: center;
    margin-bottom: 4rem;
}

.seo-premium-tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.seo-premium-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #eaff00;
    background: rgba(234, 255, 0, 0.07);
    border: 1px solid rgba(234, 255, 0, 0.12);
    padding: 0.35rem 1.2rem;
    border-radius: 40px;
    white-space: nowrap;
}

.seo-premium-line {
    flex: 0 0 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(234, 255, 0, 0.3), transparent);
}

.seo-premium-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #fff;
}

.seo-premium-title .highlight {
    color: #eaff00;
    font-style: italic;
}

.seo-premium-subtitle {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin-top: 0.3rem;
}

.seo-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.seo-premium-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.seo-premium-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.seo-premium-text p strong {
    color: #fff;
    font-weight: 600;
}

.seo-premium-text p .highlight {
    color: #eaff00;
    font-weight: 600;
}

.seo-premium-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    margin: 0.5rem 0 0.8rem;
}

.result-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(234, 255, 0, 0.05);
    border: 1px solid rgba(234, 255, 0, 0.08);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.result-badge:hover {
    background: rgba(234, 255, 0, 0.12);
    color: #eaff00;
    border-color: rgba(234, 255, 0, 0.25);
    transform: translateY(-2px);
}

.seo-premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #eaff00;
    color: #000;
    padding: 0.9rem 2.2rem;
    border-radius: 48px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(234, 255, 0, 0.15);
    width: fit-content;
    margin-top: 0.5rem;
}

.seo-premium-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(234, 255, 0, 0.25);
    background: #d4e600;
}

.seo-premium-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.seo-premium-btn:hover svg {
    transform: translateX(4px);
}

.seo-premium-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.seo-premium-stats .stat-block {
    background: rgba(18, 20, 26, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.seo-premium-stats .stat-block:hover {
    transform: translateY(-4px);
    border-color: rgba(234, 255, 0, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.seo-premium-stats .stat-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(234, 255, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.seo-premium-stats .stat-block:hover::after {
    opacity: 1;
}

.seo-premium-stats .stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3.2rem;
    font-weight: 600;
    color: #eaff00;
    line-height: 1;
    text-shadow: 0 0 30px rgba(234, 255, 0, 0.1);
}

.stat-decimal {
    font-size: 1.8rem;
    color: rgba(234, 255, 0, 0.6);
    margin-left: 0.1rem;
}

.stat-percent {
    font-size: 2rem;
    color: rgba(234, 255, 0, 0.7);
}

.seo-premium-stats .stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    font-weight: 500;
}

.stat-period {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 0.2rem;
    font-family: 'JetBrains Mono', monospace;
}

.seo-premium-testimonial {
    grid-column: 1 / -1;
    background: rgba(18, 20, 26, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
}

.seo-premium-testimonial svg {
    color: rgba(234, 255, 0, 0.3);
    margin-bottom: 0.2rem;
}

.seo-premium-testimonial blockquote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0;
}

.seo-premium-testimonial blockquote strong {
    color: #eaff00;
    font-style: normal;
}

.seo-premium-testimonial cite {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: normal;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.03em;
}

.seo-premium-bg-decor {
    position: absolute;
    right: 5%;
    bottom: 10%;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    z-index: 1;
    text-align: right;
    user-select: none;
}

.seo-premium-bg-decor .code-line {
    display: block;
    opacity: 0.5;
}

.seo-premium-bg-decor .code-line:nth-child(2) {
    padding-left: 1.5rem;
}
.seo-premium-bg-decor .code-line:nth-child(3) {
    padding-left: 2.5rem;
}
.seo-premium-bg-decor .code-line:nth-child(4) {
    padding-left: 2.5rem;
}

@media (max-width: 1024px) {
    .seo-premium-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .seo-premium-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .seo-premium-bg-decor {
        display: none;
    }

    .seo-premium-tag-wrapper {
        flex-direction: column;
        gap: 0.6rem;
    }

    .seo-premium-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .seo-premium {
        padding: 4rem 1.5rem 5rem;
    }

    .seo-premium-header {
        margin-bottom: 2.5rem;
    }

    .seo-premium-title {
        font-size: 1.8rem;
    }

    .seo-premium-subtitle {
        font-size: 1.1rem;
    }

    .seo-premium-text p {
        font-size: 0.95rem;
    }

    .seo-premium-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .seo-premium-testimonial {
        grid-column: 1 / -1;
        padding: 1.2rem 1.2rem;
    }

    .seo-premium-testimonial blockquote {
        font-size: 0.85rem;
    }

    .seo-premium-stats .stat-number {
        font-size: 2.6rem;
    }

    .stat-decimal {
        font-size: 1.4rem;
    }

    .stat-percent {
        font-size: 1.6rem;
    }

    .seo-premium-results {
        justify-content: center;
    }

    .seo-premium-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .seo-premium-stats {
        grid-template-columns: 1fr;
    }

    .seo-premium-stats .stat-block {
        padding: 1.2rem 1rem;
    }

    .seo-premium-stats .stat-number {
        font-size: 2.2rem;
    }
}

/* ==========================================
   SEÇÃO PROMOCIONAL
   ========================================== */
.services-promo {
    background: radial-gradient(circle at 78% 50%, #081423 0%, #040811 25%, #010106 55%, #000000 100%);
    padding: 4rem 1.5rem 6rem;
    position: relative;
    overflow: hidden;
    margin-top: -2px;
}

.services-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, #05070a 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.promo-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promo-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: #eaff00;
    background: rgba(234, 255, 0, 0.08);
    border: 1px solid rgba(234, 255, 0, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.promo-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.promo-title .highlight {
    color: #eaff00;
    font-style: italic;
}

.promo-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(15, 15, 18, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}
.time-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 500;
    color: #eaff00;
    text-shadow: 0 0 15px rgba(234, 255, 0, 0.2);
}
.time-label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}
.time-separator {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.promo-card {
    background: rgba(18, 20, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1.8rem 1.5rem 1.5rem;
    position: relative;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.promo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(234, 255, 0, 0.2);
    box-shadow: 0 12px 30px rgba(2, 5, 10, 0.6);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(234, 255, 0, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 14px;
}
.promo-card:hover .card-glow {
    opacity: 1;
}

.popular {
    border-color: rgba(234, 255, 0, 0.25);
    background: linear-gradient(145deg, rgba(234, 255, 0, 0.04) 0%, rgba(18, 20, 25, 0.9) 100%);
    transform: scale(1.02);
}
.popular:hover {
    transform: scale(1.04) translateY(-4px);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #eaff00;
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(234, 255, 0, 0.25);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}
.service-icon {
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.03);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.pricing-area {
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.old-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.3rem;
}
.price-row.main-currency {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    line-height: 1;
}
.price-row.second-currency {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'JetBrains Mono', monospace;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 0.3rem;
    margin-top: 0.3rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}
.currency {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}
.main-currency .currency {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
}
.cents {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
}
.currency-tag {
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.05rem 0.4rem;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.2rem;
}
.discount-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    margin-left: auto;
    align-self: center;
}
.highlight-badge {
    background: rgba(234, 255, 0, 0.12);
    color: #eaff00;
    border: 1px solid rgba(234, 255, 0, 0.2);
}

.benefits-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.benefits-list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1rem;
}
.scarcity-text {
    font-size: 0.7rem;
    color: #ff5e5e;
    font-weight: 500;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
}

.promo-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.promo-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}
.promo-cta.primary {
    background: #eaff00;
    color: #000;
    border: none;
}
.promo-cta.primary:hover {
    background: #d4e600;
    box-shadow: 0 0 20px rgba(234, 255, 0, 0.2);
}

.service-icon svg {
    color: rgba(255, 255, 255, 0.8);
    width: 28px;
    height: 28px;
    transition: color 0.3s ease;
    display: block;
}
.promo-card:hover .service-icon svg {
    color: #eaff00;
}
.popular .service-icon svg {
    color: #eaff00;
}

@media (max-width: 1024px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    .popular {
        transform: scale(1);
    }
    .popular:hover {
        transform: scale(1.02) translateY(-4px);
    }
}

@media (max-width: 600px) {
    .promo-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .countdown-wrapper {
        transform: scale(0.85);
        padding: 0.6rem 1rem;
    }
    .price-row.main-currency {
        font-size: 1.8rem;
    }
    .time-value {
        font-size: 1.5rem;
    }
    .services-promo {
        padding: 3rem 1rem 4rem;
    }
}

/* ==========================================
   RODAPÉ PREMIUM
   ========================================== */
.footer-premium {
    background: linear-gradient(145deg, #06070a 0%, #0b0d12 100%);
    border-top: 1px solid rgba(234, 255, 0, 0.08);
    padding: 4rem 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(234, 255, 0, 0.3), #eaff00, rgba(234, 255, 0, 0.3), transparent);
    background-size: 200% 100%;
    animation: shimmerLine 6s ease-in-out infinite;
}

@keyframes shimmerLine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.footer-premium-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
    gap: 3rem 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brand-col {
    gap: 0.5rem;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
}

.logo-dot {
    color: #eaff00;
    font-weight: 300;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 28ch;
    line-height: 1.5;
    margin-top: 0.2rem;
}

.footer-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.award-badge {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(234, 255, 0, 0.06);
    border: 1px solid rgba(234, 255, 0, 0.08);
    padding: 0.25rem 0.8rem;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    transition: all 0.25s ease;
}

.award-badge:hover {
    background: rgba(234, 255, 0, 0.12);
    color: #eaff00;
    border-color: rgba(234, 255, 0, 0.25);
    transform: translateY(-1px);
}

.footer-heading {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #eaff00;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

.contact-col p {
    margin: 0;
}

.footer-phone a,
.footer-email a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-phone a:hover,
.footer-email a:hover {
    color: #eaff00;
}

.footer-email a {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link:hover {
    background: rgba(234, 255, 0, 0.08);
    border-color: rgba(234, 255, 0, 0.25);
    color: #eaff00;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(234, 255, 0, 0.05);
}

.footer-bottom {
    padding: 1.5rem 0 2rem;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0;
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding: 0 1.5rem;
}

.footer-bottom-inner p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.02em;
    margin: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .footer-premium-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .brand-col {
        grid-column: 1 / -1;
    }
    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-premium {
        padding: 2.5rem 1rem 0;
    }
    .footer-premium-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }
    .footer-logo {
        font-size: 1.8rem;
    }
    .social-link {
        width: 34px;
        height: 34px;
        font-size: 0.6rem;
    }
}

/* ==========================================
   RESPONSIVIDADE GERAL
   ========================================== */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-block {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .hero-video {
        display: block !important;
    }

    .hero {
        background:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 100%),
            url('assets/hero-poster.jpg') center center / cover no-repeat !important;
        background-color: #0a0b0e !important;
        min-height: 100vh;
        height: 100vh;
    }

    .nav-container {
        max-width: 95%;
        height: 56px;
    }
    .nav-content {
        padding: 0 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo {
        font-size: 20px;
        margin-right: 0;
        z-index: 110;
        margin-left: auto;
    }
    .menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 22px;
        height: 20px;
        cursor: pointer;
        z-index: 110;
        order: 3;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .menu-btn span {
        display: block;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 2px;
    }
    .menu-btn span:nth-child(1) {
        width: 100%;
    }
    .menu-btn span:nth-child(2) {
        width: 75%;
    }
    .menu-btn span:nth-child(3) {
        width: 50%;
    }
    #menu-toggle:checked+.menu-btn span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
        width: 100%;
        background-color: #eaff00;
    }
    #menu-toggle:checked+.menu-btn span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    #menu-toggle:checked+.menu-btn span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
        width: 100%;
        background-color: #eaff00;
    }

    .contact {
        height: 32px;
        padding: 0 14px 0 10px;
        font-size: 11px;
        z-index: 110;
        margin-left: auto;
        margin-right: 16px;
        order: 2;
    }

    .links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(8, 8, 12, 0.92);
        backdrop-filter: blur(32px) saturate(1.4);
        -webkit-backdrop-filter: blur(32px) saturate(1.4);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.2rem;
        transform: translateY(-100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
        z-index: 105;
        opacity: 0;
        pointer-events: none;
        padding: 2rem;
        will-change: transform, opacity;
    }

    .links::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 30% 20%, rgba(234, 255, 0, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(234, 255, 0, 0.02) 0%, transparent 40%),
            linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
        pointer-events: none;
        z-index: 0;
    }

    .links::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
        background-size: 60px 60px;
        opacity: 0.15;
        pointer-events: none;
        z-index: 0;
    }

    #menu-toggle:checked~.links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .links a {
        position: relative;
        z-index: 1;
        font-size: 1.8rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        letter-spacing: 0.02em;
        padding: 0.2rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #menu-toggle:checked~.links a:nth-child(1) {
        transition-delay: 0.05s;
        opacity: 1;
        transform: translateY(0);
    }
    #menu-toggle:checked~.links a:nth-child(2) {
        transition-delay: 0.12s;
        opacity: 1;
        transform: translateY(0);
    }
    #menu-toggle:checked~.links a:nth-child(3) {
        transition-delay: 0.19s;
        opacity: 1;
        transform: translateY(0);
    }

    .links a::before {
        content: '▸';
        position: absolute;
        left: -2.2rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        color: #eaff00;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .links a:hover {
        color: #ffffff;
        transform: translateX(6px);
    }

    .links a:hover::before {
        opacity: 1;
        left: -1.8rem;
    }

    .links a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #eaff00, #ffffff);
        transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        opacity: 0.6;
    }

    .links a:hover::after {
        width: 100%;
    }

    .hero-center {
        padding: 0 24px;
    }
    .club-kicker {
        font-size: 12px;
        letter-spacing: 0.28em;
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
        max-width: 100%;
        line-height: 1.15;
        margin-bottom: 20px;
    }
    .hero-copy {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 32px;
        padding: 0 12px;
    }
    .shiny-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .rso-dashboard {
        padding: 2rem 1rem;
    }
    .about-block h2 {
        font-size: 2rem;
    }
    .service-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 550px) {
    .club-kicker {
        font-size: 10px;
        letter-spacing: 0.24em;
    }
    .hero-title {
        font-size: 1.9rem;
    }
    .hero-copy {
        font-size: 0.95rem;
    }
    .shiny-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .links a {
        font-size: 1.5rem;
    }
    .links a::before {
        left: -1.8rem;
        font-size: 0.8rem;
    }
    .links a:hover::before {
        left: -1.4rem;
    }
}

.hero {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ==========================================
   OTIMIZAÇÃO DE PERFORMANCE
   ========================================== */
.hero-video {
    will-change: transform;
}

/* ============================================================
   ENCAIXE ENTRE SEÇÕES — bordas na mesma cor (#05070a)
   As seções radiais terminavam em #000 e as vizinhas eram
   #05070a → criava um degrau/linha. Aqui forçamos o topo e a
   base de cada seção a virar #05070a (camada de fundo, atrás
   do conteúdo). Assim toda junção fica #05070a contra #05070a
   = sem linha. Nenhum texto é coberto.
   ============================================================ */
.performance-section,
.seo-premium,
.portfolio-showcase,
.faq-seo-section {
    border-top: none !important;
}

.performance-section {
    background:
        linear-gradient(to bottom, #05070a, rgba(5,7,10,0) 70px, rgba(5,7,10,0) calc(100% - 70px), #05070a),
        radial-gradient(circle at 30% 20%, #0d1117 0%, #05070a 60%, #000000 100%);
}
.seo-premium {
    background:
        linear-gradient(to bottom, #05070a, rgba(5,7,10,0) 70px, rgba(5,7,10,0) calc(100% - 70px), #05070a),
        radial-gradient(circle at 30% 20%, #0d1117 0%, #05070a 60%, #000 100%);
}
.services-promo {
    background:
        linear-gradient(to bottom, #05070a, rgba(5,7,10,0) 70px, rgba(5,7,10,0) calc(100% - 70px), #05070a),
        radial-gradient(circle at 78% 50%, #081423 0%, #040811 25%, #010106 55%, #000000 100%);
}
/* ============================================================
   Botão "Ver projeto ao vivo →" dos cases (páginas internas)
   A classe .explore-link não tinha estilo — ficava link cru.
   Agora é um botão pill com o acento do site, que preenche no hover.
   ============================================================ */
.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border: 1px solid rgba(234, 255, 0, 0.35);
    border-radius: 40px;
    background: rgba(234, 255, 0, 0.06);
    color: #eaff00;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    width: fit-content;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.explore-link:hover {
    background: #eaff00;
    color: #000;
    border-color: #eaff00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 255, 0, 0.22);
}
.explore-link:active {
    transform: translateY(0);
}