:root {
    /* Light Theme (Padrão) */
    --primary: #1e40af;
    --secondary: #1e40af;
    --accent: #dc2626;
    --success: #16a34a;
    --warning: #ca8a04;
    --danger: #dc2626;
    --bg-dark: #f8fafc;
    --bg-darker: #e2e8f0;
    --bg-card: #ffffff;
    --bg-hover: #f1f5f9;
    --bg-header: rgba(255, 255, 255, 0.95);
    --border: #cbd5e1;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --gradient-1: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 30px rgba(30,64,175,0.3);
    --shadow-glow-strong: 0 0 50px rgba(30,64,175,0.5);
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Tajawal', sans-serif;
    --font-code: 'Fira Code', monospace;
    --font-tech: 'Orbitron', monospace;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Dark Theme Variables (Ativado via JS) */
.dark-mode {
    --primary: #00d4ff;
    --secondary: #00d4ff;
    --accent: #ff6b6b;
    --success: #51cf66;
    --warning: #ffd43b;
    --danger: #ff4757;
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-card: #0f1419;
    --bg-hover: #1a1f2e;
    --bg-header: rgba(5, 8, 16, 0.95);
    --border: #1e293b;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --gradient-1: linear-gradient(135deg, #00d4ff 0%, #00d4ff 100%);
    --gradient-2: linear-gradient(135deg, #00d4ff 0%, #00d4ff 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.2);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 30px rgba(0,212,255,0.3);
    --shadow-glow-strong: 0 0 50px rgba(0,212,255,0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: 500;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    opacity: 0; /* Começa transparente para a transição de fade-in */
    transition: opacity 0.5s ease-in-out; /* Duração da transição */
}

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

.hack-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--primary);
    opacity: 0.1;
    animation: scanLine 2s linear infinite;
}

.hack-line:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.hack-line:nth-child(2) {
    left: 50%;
    animation-delay: 0.7s;
}

.hack-line:nth-child(3) {
    left: 80%;
    animation-delay: 1.4s;
}

@keyframes scanLine {
    0% {
        top: -100%;
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

body.is-loaded {
    opacity: 1; /* Torna o corpo visível após o carregamento */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: var(--bg-header);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 100%;
    background: rgba(5, 8, 16, 0.9);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(0, 212, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    z-index: -1;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 20%, 
        var(--secondary) 50%, 
        var(--primary) 80%, 
        transparent 100%);
    opacity: 0.6;
    animation: headerScan 3s linear infinite;
    border-radius: 20px 20px 0 0;
}

@keyframes headerScan {
    0% { opacity: 0.3; }
    50% { opacity: 0.8; }
    100% { opacity: 0.3; }
}

.header.scrolled::before {
    background: rgba(5, 8, 16, 0.95);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 
                0 0 60px rgba(0, 212, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    flex-shrink: 0;
    z-index: 1;
}

.nav-brand::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.08);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.nav-brand:hover::after {
    opacity: 1;
}

.nav-brand:hover {
    color: var(--secondary);
}

.brand-text {
    font-family: var(--font-tech);
    letter-spacing: 1px;
}

.brand-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    line-height: 1;
    margin-right: 0.2rem;
    filter: drop-shadow(0 0 5px rgba(30, 64, 175, 0.3));
}

.brand-logo-img {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 5px rgba(30, 64, 175, 0.3));
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 8px;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.06);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-indicator {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.dir-toggle {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.25);
    color: var(--primary);
    padding: 0.55rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.dir-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 212, 255, 0.1);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.dir-toggle:hover::before {
    opacity: 1;
}

.dir-toggle:hover {
    border-color: var(--primary);
    color: var(--secondary);
}

.dir-toggle i {
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.dir-toggle:hover i {
    transform: rotate(180deg);
}

.dir-text {
    font-weight: 600;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

.theme-toggle {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.25);
    color: var(--primary);
    padding: 0.55rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 212, 255, 0.1);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.theme-toggle:hover::before {
    opacity: 1;
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--secondary);
}

.theme-toggle i {
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.theme-toggle:hover i {
    transform: rotate(180deg);
}

.theme-text {
    font-weight: 600;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

.nav-link.active .nav-indicator,
.nav-link:hover .nav-indicator {
    opacity: 1;
    transform: scale(1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    gap: 4px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    padding: 0.55rem 0.75rem;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1001;
}

.menu-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 212, 255, 0.1);
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 8px;
    z-index: -1;
}

.menu-toggle:hover::before {
    opacity: 1;
}

.menu-toggle:hover {
    border-color: var(--primary);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 1px;
    position: relative;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0 6rem 0;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}



.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    box-shadow: 0 0 20px var(--primary);
    animation: scanDown 3s linear infinite;
}

@keyframes scanDown {
    0% {
        top: -2px;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.hack-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    font-family: var(--font-code);
    font-size: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatParticle 8s infinite ease-in-out;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) translateX(100px);
        opacity: 1;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content {
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    background: linear-gradient(135deg, rgba(0,212,255,0.15) 0%, rgba(0,212,255,0.15) 100%);
    border: 2px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    font-family: var(--font-tech);
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,212,255,0.2);
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-badge:hover {
    background: linear-gradient(135deg, rgba(0,212,255,0.25) 0%, rgba(0,212,255,0.25) 100%);
    border-color: var(--secondary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,212,255,0.4), 0 0 30px rgba(0,212,255,0.3);
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0;
    animation: badgePulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes badgePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: var(--font-tech);
    letter-spacing: 1.5px;
}

.title-word {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

.title-word.highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-family: var(--font-code);
    font-size: 0.9rem;
    justify-content: center;
}

.subtitle-text {
    color: var(--text-secondary);
    font-weight: 600;
}

.subtitle-separator {
    color: var(--primary);
    font-weight: 700;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 100%;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, rgba(0,212,255,0.05) 100%);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(0,212,255,0.1) 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,212,255,0.3), 0 0 40px rgba(0,212,255,0.2);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.stat-card:hover .stat-glow {
    left: 100%;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,212,255,0.2) 0%, rgba(0,212,255,0.2) 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, rgba(0,212,255,0.3) 0%, rgba(0,212,255,0.3) 100%);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(0,212,255,0.4);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-family: var(--font-code);
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: var(--text-primary);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover .btn-shine {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--bg-dark);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.scroll-hint {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    z-index: 10;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.scroll-hint:hover {
    opacity: 1;
}

.scroll-mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--border);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

.section {
    position: relative;
    scroll-margin-top: 80px;
    overflow: hidden;
}

.hero {
    padding-top: 8rem;
}

.section:not(.hero) {
    padding: 6rem 0;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    will-change: transform;
    transform: translateY(0) translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    clip-path: inset(0);
    contain: layout style paint;
}

.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.03;
    animation: gridMove 25s linear infinite;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    text-align: left;
}

.section-number {
    font-family: var(--font-code);
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-tech);
    letter-spacing: 1px;
    flex: 1;
}

.contact-page-title {
    flex-wrap: wrap;
    row-gap: 0.35rem;
}

.title-underline {
    flex: 1;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
    max-width: 150px;
    margin-left: 1rem;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: stretch;
    min-height: 500px;
}

.about-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(0,212,255,0.15) 0%, rgba(0,212,255,0.15) 100%);
    border: 2px solid var(--primary);
    border-radius: 25px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-tech);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,212,255,0.2);
}

.about-badge:hover {
    background: linear-gradient(135deg, rgba(0,212,255,0.25) 0%, rgba(0,212,255,0.25) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,212,255,0.3);
}

.about-badge i {
    font-size: 1rem;
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    flex: 1;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, rgba(0,212,255,0.05) 100%);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(0,212,255,0.1) 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,212,255,0.3), 0 0 40px rgba(0,212,255,0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,212,255,0.15) 0%, rgba(0,212,255,0.15) 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(0,212,255,0.25) 0%, rgba(0,212,255,0.25) 100%);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(0,212,255,0.4);
    border-color: var(--secondary);

    align-items: center;
    justify-content: center;
    background: rgba(0,212,255,0.1);
    border: 1px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    font-family: var(--font-tech);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    transform: translateX(3px);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-desc {
    color: var(--text-primary);
}

.about-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.security-terminal {
    background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, rgba(0,212,255,0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,212,255,0.3), 0 0 50px rgba(0,212,255,0.2), inset 0 0 30px rgba(0,212,255,0.1);
    backdrop-filter: blur(20px);
    position: relative;
    width: 100%;
    max-width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-terminal::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: var(--gradient-1);
    opacity: 0.3;
    z-index: -1;
    filter: blur(15px);
    animation: terminalGlow 3s ease-in-out infinite;
}

@keyframes terminalGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.security-terminal:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0,212,255,0.4), 0 0 60px rgba(0,212,255,0.3);
    border-color: var(--secondary);
}

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

.service-card {
    background: linear-gradient(135deg, rgba(0,212,255,0.03) 0%, rgba(0,212,255,0.03) 100%);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px var(--primary);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(0,212,255,0.08) 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,212,255,0.3), 0 0 50px rgba(0,212,255,0.2), inset 0 0 30px rgba(0,212,255,0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,212,255,0.15) 0%, rgba(0,212,255,0.15) 100%);
    border: 3px solid var(--primary);
    border-radius: 16px;
    color: var(--primary);
    font-size: 2.2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(0,212,255,0.25) 0%, rgba(0,212,255,0.25) 100%);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,212,255,0.5);
    border-color: var(--secondary);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.3;
    animation: iconPulse 2s ease-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.1;
    }
}

.service-number {
    font-family: var(--font-code);
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 700;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: var(--font-tech);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    transform: translateX(5px);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: var(--text-primary);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.service-features li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features li i {
    color: var(--success);
    font-size: 0.85rem;
}

.service-footer {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.25s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.service-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 212, 255, 0.1);
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 6px;
    z-index: -1;
}

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

.service-link:hover {
    gap: 0.75rem;
    color: var(--secondary);
    border-color: var(--primary);
}

.certs-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem;
    margin: -1rem;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.certs-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.cert-card {
    background: linear-gradient(135deg, rgba(0,212,255,0.03) 0%, rgba(0,212,255,0.03) 100%);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    flex: 0 0 320px;
    scroll-snap-align: start;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cert-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px var(--primary);
}

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

.cert-card:hover::after {
    transform: scaleX(1);
}

.cert-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(0,212,255,0.08) 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,212,255,0.3), 0 0 50px rgba(0,212,255,0.2), inset 0 0 30px rgba(0,212,255,0.1);
}

.cert-badge {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,212,255,0.15) 0%, rgba(0,212,255,0.15) 100%);
    border: 3px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2.8rem;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0,212,255,0.2);
}

.cert-card:hover .cert-badge {
    background: linear-gradient(135deg, rgba(0,212,255,0.25) 0%, rgba(0,212,255,0.25) 100%);
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(0,212,255,0.5);
    border-color: var(--secondary);
}


.cert-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    font-family: var(--font-tech);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-title {
    transform: scale(1.05);
}

.cert-issuer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.cert-card:hover .cert-issuer {
    color: var(--text-primary);
}

.cert-name {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cert-org {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.cert-year {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-code);
    font-weight: 600;
}

.cert-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.cert-card:hover .cert-glow {
    opacity: 0.2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

.contact-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,212,255,0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 12px;
    animation: iconPulse 2s ease-out infinite;
}

.contact-details h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details a,
.contact-details span {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
    font-size: 0.95rem;
}

.contact-details a:hover {
    color: var(--primary);
}


.contact-grid-single {
    grid-template-columns: 1fr 1.15fr;
}


.contact-home-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.03));
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.contact-home-copy {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-home-copy h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.2;
    color: var(--text-primary);
}

.contact-home-copy p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 58ch;
}

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

.contact-home-points {
    display: grid;
    gap: 1rem;
    list-style: none;
}

.contact-home-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
}

.contact-home-points i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.contact-home-actions .btn {
    min-width: 240px;
}

.contact-cta-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.03));
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-cta-tag {
    align-self: flex-start;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-cta-panel h3 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.2;
    color: var(--text-primary);
}

.contact-cta-panel p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.form-group {
    position: relative;
}

.form-label {
    display: block;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.password-wrapper {
    position: relative;
}

.password-wrapper .form-input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.password-toggle:hover {
    opacity: 1;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: var(--bg-card);
    transition: all var(--transition);
    position: relative;
    margin-top: 1px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid var(--bg-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(0,212,255,0.2);
    border-color: var(--primary);
}

.checkbox-text {
    user-select: none;
}

.checkbox-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity var(--transition);
}

.checkbox-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-document h2 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.legal-document h3 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.legal-document p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.legal-document ul {
    margin: 0.5rem 0 1rem 1.5rem;
    font-size: 0.95rem;
}

.legal-document ul li {
    margin-bottom: 0.4rem;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

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

.btn-submit {
    align-self: flex-start;
}


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

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-honeypot input {
    opacity: 0;
    pointer-events: none;
}

.form-status {
    min-height: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-status.is-success {
    color: var(--success);
}

.form-status.is-error {
    color: var(--danger);
}

.form-status.is-warning {
    color: var(--warning);
}

.btn-submit.is-loading {
    opacity: 0.8;
    cursor: wait;
}

.btn-submit:disabled {
    pointer-events: none;
}

.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--primary);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    padding: 1.25rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.cookie-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-icon {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-accept {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 6px;
    white-space: nowrap;
}

.cookie-decline {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: all var(--transition);
    white-space: nowrap;
}

.cookie-decline:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-header,
.mobile-search {
    display: none;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    

    .contact-grid-single {
        grid-template-columns: 1fr;
    }

    .contact-home-panel,
    .contact-cta-panel {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .contact-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-cta-actions .btn,
    .contact-home-actions .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .nav {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }
    
    .nav-menu {
        gap: 0.15rem;
    }
    
    .nav-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    body[data-prev-page] .section-header {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: start;
        column-gap: 0.75rem;
        row-gap: 0.55rem;
        margin-bottom: 2.5rem;
    }

    body[data-prev-page] .section-title {
        display: block;
        width: 100%;
        min-width: 0;
        flex: none;
        margin: 0;
        line-height: 1.08;
        font-size: clamp(1.65rem, 7.6vw, 1.95rem);
        letter-spacing: 0.6px;
        text-wrap: balance;
    }

    body[data-prev-page] .section-title .highlight {
        display: block;
        margin-top: 0.25rem;
    }

    body[data-prev-page] .section-number {
        font-size: 1rem;
        line-height: 1;
        padding-top: 0.2rem;
    }

    body[data-prev-page] .title-underline {
        grid-column: 2;
        width: min(110px, 42vw);
        max-width: none;
        margin-left: 0;
        flex: none;
    }

    .contact-page-title {
        display: block;
        margin: 0;
        line-height: 1.08;
    }

    .contact-page-title .highlight {
        display: block;
        margin-top: 0.25rem;
    }

    #contact .section-header {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: start;
        column-gap: 0.75rem;
        row-gap: 0.55rem;
        margin-bottom: 2.5rem;
    }

    #contact .section-title {
        display: block;
        width: 100%;
        min-width: 0;
        font-size: clamp(1.65rem, 7.6vw, 1.95rem);
        letter-spacing: 0.6px;
        text-wrap: balance;
    }

    #contact .section-number {
        font-size: 1rem;
        line-height: 1;
        padding-top: 0.2rem;
    }

    #contact .title-underline {
        grid-column: 2;
        width: min(110px, 42vw);
        max-width: none;
        margin-left: 0;
    }

    #contact .contact-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    #contact .contact-details a,
    #contact .contact-details span {
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    body[data-prev-page] .section-title {
        font-size: clamp(1.45rem, 8.3vw, 1.75rem);
    }

    body[data-prev-page] .title-underline {
        width: min(92px, 36vw);
    }

    #contact .section-title {
        font-size: clamp(1.45rem, 8.3vw, 1.75rem);
    }

    #contact .title-underline {
        width: min(92px, 36vw);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
        z-index: 1002; /* Garante que o cabeçalho fique sobre o menu e o overlay */
    }
    
    .header-container {
        padding: 0 1rem;
        min-height: 70px; /* Altura consistente para o cabeçalho */
        display: flex;
        align-items: center;
    }
    
    .header::before {
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .header::after {
        display: none; /* Simplifica o cabeçalho no mobile, removendo a linha de scan */
    }
    
    .nav {
        padding: 0;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-brand {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
        gap: 0.5rem;
    }
    
    .brand-logo {
        font-size: 1.8rem;
    }
    .brand-logo-img {
        height: 32px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        right: auto;
        width: 85%; /* Estilo Split Screen */
        max-width: 380px;
        height: 100vh;
        background: var(--bg-card);
        border: 1px solid var(--border); /* Mantém borda superior, direita e inferior */
        border-left: none; /* Remove a borda esquerda que fica na borda da tela */
        border-radius: 0 24px 24px 0; /* Adiciona as bordas arredondadas */
        flex-direction: column;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001; /* Abaixo do cabeçalho, mas acima do conteúdo */
        align-items: stretch;
        gap: 0;
        box-shadow: 10px 0 40px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        padding-top: 70px; /* Espaço para não ficar atrás do cabeçalho principal */
    }
    
    .nav-menu.active {
        left: 0;
    }

    /* Novo Cabeçalho do Menu */
    .mobile-menu-header {
        background: var(--bg-darker);
        color: var(--text-primary);
        padding: 1.5rem 2rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 80px;
    }

    .menu-title {
        font-family: var(--font-tech);
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 1.2rem;
        text-transform: uppercase;
    }

    /* Barra de Busca */
    .mobile-search {
        display: block;
        padding: 1.5rem 2rem;
        position: relative;
        border-bottom: 1px solid var(--border);
    }

    .search-input {
        width: 100%;
        padding: 1rem 1rem 1rem 3rem;
        border: 1px solid var(--border);
        border-radius: 50px;
        background: var(--bg-card);
        font-family: var(--font-primary);
        font-size: 0.95rem;
        color: var(--text-primary);
        transition: all 0.3s ease;
    }

    .search-input::placeholder {
        color: var(--text-secondary);
    }

    .search-input:focus {
        outline: none;
        border-color: var(--primary);
        background: var(--bg-hover);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .search-icon {
        position: absolute;
        left: 3.2rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        pointer-events: none;
    }

    .nav-link {
        padding: 1.2rem 2rem;
        font-size: 0.95rem;
        border-radius: 0;
        border-left: 3px solid transparent;
        justify-content: flex-start;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border);
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        border-left-color: var(--primary);
        background: var(--bg-hover);
        color: var(--primary);
    }

    .menu-toggle {
        display: flex;
        z-index: 1003;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px; /* Área de toque confortável */
        height: 44px;
        padding: 0;
        gap: 6px; /* Espaçamento entre os risquinhos */
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .menu-toggle::before {
        display: none; /* Remove o fundo/caixa */
    }

    .menu-toggle:hover {
        background: transparent;
        border: none;
    }

    .menu-toggle span {
        width: 24px; /* Largura dos risquinhos */
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        transition: all 0.3s ease;
        position: relative;
        transform: none;
        opacity: 1;
        left: 0;
    }

    .menu-toggle.active {
        background: transparent;
    }

    /* Animação precisa para o X */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-actions {
        gap: 0.5rem;
        margin-left: auto; /* Empurra os botões para a direita */
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0 8rem 0;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stat-card {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .certs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    /* Overlay for mobile menu */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 23, 42, 0.6); /* Overlay escuro */
        backdrop-filter: blur(8px); /* Blur no fundo */
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: -1;
    }
    
    .nav-menu.active::before {
        opacity: 1;
        pointer-events: all;
    }
    
    /* Estilos para os botões de ação quando dentro do menu mobile */
    .nav-menu .nav-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem 2rem;
        margin-top: 1rem;
        border-top: 1px solid var(--border);
    }

    .nav-menu .site-auth-actions {
        order: -1;
    }

    .nav-menu .admin-nav-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .nav-menu .admin-nav-actions .btn,
    .nav-menu .admin-nav-actions .theme-toggle {
        width: 100%;
        justify-content: center;
    }

    .nav-menu .nav-actions .theme-toggle,
    .nav-menu .nav-actions .dir-toggle {
        width: 100%;
        padding: 0.8rem 1rem;
        justify-content: flex-start;
        border-radius: 8px;
    }

    .nav-menu .nav-actions .theme-text,
    .nav-menu .nav-actions .dir-text {
        display: inline-block; /* Mostra o texto novamente */
    }

    .nav-menu .nav-actions .theme-toggle i,
    .nav-menu .nav-actions .dir-toggle i {
        margin-right: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.8rem;
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-brand {
        font-size: 1.5rem;
        padding: 0.35rem 0.7rem;
    }
    
    .brand-logo-img {
        height: 28px;
    }
    
    .nav-menu {
        width: 90%; /* Um pouco mais largo em telas muito pequenas */
        left: -100%;
        right: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        padding: 0.5rem 0.7rem;
    }
    
    .menu-toggle span {
        width: 20px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}

/* Enhanced Navigation */
.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
    opacity: 1;
    transform: scale(1);
}

.nav-link.active {
    color: var(--primary);
}

/* Enhanced Cards */
.service-card,
.cert-card {
    position: relative;
    overflow: hidden;
}

/* Hacks Slider Section - Professional & Clean */
.hacks-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hacks-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.slider-main-container {
    position: relative;
}

.slider-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
}

.slider-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
}

.slide-card {
    position: relative;
    padding: 4rem 3rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.slide-bg-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    transition: opacity 0.6s ease;
}

.slide-bg-1 {
    background: linear-gradient(135deg, rgba(0,212,255,0.2) 0%, rgba(0,212,255,0.1) 100%);
}
.slide-bg-2 {
    background: linear-gradient(135deg, rgba(0,212,255,0.2) 0%, rgba(0,212,255,0.1) 100%);
}

.slide-bg-3 {
    background: linear-gradient(135deg, rgba(255,107,107,0.2) 0%, rgba(0,212,255,0.1) 100%);
}

.slide-bg-4 {
    background: linear-gradient(135deg, rgba(255,71,87,0.2) 0%, rgba(0,212,255,0.1) 100%);
}

.slide-bg-5 {
    background: linear-gradient(135deg, rgba(0,212,255,0.2) 0%, rgba(255,107,107,0.1) 100%);
}

.slide-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,212,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.slide-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.slide-icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-icon-border {
    position: absolute;
    inset: 0;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: iconBorderPulse 2s ease-in-out infinite;
}

@keyframes iconBorderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.slide-icon-container i {
    font-size: 3rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 15px var(--primary));
}

.icon-ripple {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-family: var(--font-tech);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.slide-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.slide-metrics {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-code);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0,212,255,0.5);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    direction: ltr;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(0,212,255,0.1) 100%);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.slider-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.slider-nav-btn:hover::before {
    opacity: 1;
}

.slider-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(0,212,255,0.4);
    border-color: var(--secondary);
}

.slider-nav-btn:hover i {
    color: var(--bg-dark);
    transform: scale(1.2);
}

.slider-nav-btn i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.slider-indicators {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-indicator.active {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(0,212,255,0.5);
    transform: scale(1.3);
    border-color: var(--primary);
}

.slider-indicator:hover {
    background: var(--secondary);
    transform: scale(1.2);
}

.slider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 0 1rem;
    direction: ltr;
}

.slider-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-code);
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.current-slide {
    font-size: 1.2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-separator {
    color: var(--text-secondary);
}

.total-slides {
    color: var(--text-secondary);
}

.slider-progress-wrapper {
    flex: 1;
    max-width: 300px;
    margin-left: 2rem;
}

.slider-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0,212,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0,212,255,0.2);
}

.slider-progress-fill {
    height: 100%;
    background: var(--gradient-1);
    width: 20%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px var(--primary);
    position: relative;
}

.slider-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progressShine 1.5s infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -20px) scale(1.2);
        opacity: 0.8;
    }
}

.particle-3d {
    box-shadow: 0 0 10px var(--primary);
}

@media (max-width: 1024px) {
    .slide-card {
        padding: 3rem 2rem;
        min-height: 450px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-icon-container {
        width: 90px;
        height: 90px;
    }
    
    .slide-icon-container i {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hacks-section {
        padding: 4rem 0;
    }
    
    .hacks-slider {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    
    .slider-main-container {
        padding: 0 1rem;
    }
    
    .slider-viewport {
        border-radius: 15px;
        border-width: 1px;
        width: 100%;
        overflow: hidden;
    }
    
    .slider-track {
        width: 100%;
        display: flex;
    }
    
    .slider-slide {
        width: 100%;
        min-width: 100%;
        flex-shrink: 0;
    }
    
    .slide-card {
        padding: 2.5rem 1.5rem;
        min-height: 380px;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .slide-content-wrapper {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .slide-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .slide-icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .slide-icon-container i {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: center;
        max-width: 100%;
    }
    
    .slide-metrics {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .metric-item {
        min-width: 90px;
        flex: 0 0 auto;
    }
    
    .metric-value {
        font-size: 1.3rem;
    }
    
    .metric-label {
        font-size: 0.85rem;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slider-controls {
        gap: 1rem;
        padding: 0 0.5rem;
        width: 100%;
        justify-content: space-between;
    }
    
    .slider-indicators {
        gap: 0.5rem;
        flex: 1;
        justify-content: center;
    }
    
    .slider-indicator {
        width: 10px;
        height: 10px;
    }
    
    .slider-footer {
        flex-direction: column;
        gap: 1rem;
        padding: 0 0.5rem;
        margin-top: 1.5rem;
        align-items: center;
        width: 100%;
    }
    
    .slider-progress-wrapper {
        max-width: 100%;
        margin-left: 0;
        width: 100%;
    }
    
    .slider-counter {
        font-size: 0.9rem;
    }
    
    .current-slide {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hacks-section {
        padding: 3rem 0;
    }
    
    .hacks-slider {
        padding: 0;
    }
    
    .slider-main-container {
        padding: 0 0.75rem;
    }
    
    .slider-viewport {
        border-radius: 12px;
    }
    
    .slide-card {
        padding: 2rem 1rem;
        min-height: 350px;
    }
    
    .slide-content-wrapper {
        padding: 0 0.5rem;
    }
    
    .slide-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .slide-icon-container i {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .slide-metrics {
        gap: 1rem;
        width: 100%;
    }
    
    .metric-item {
        min-width: 80px;
    }
    
    .metric-value {
        font-size: 1.2rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .slider-controls {
        gap: 0.5rem;
        padding: 0 0.25rem;
    }
    
    .slider-indicators {
        gap: 0.4rem;
    }
    
    .slider-indicator {
        width: 8px;
        height: 8px;
    }
    
    .slider-footer {
        padding: 0 0.25rem;
        margin-top: 1.2rem;
    }
    
    .slider-counter {
        font-size: 0.85rem;
    }
    
    .current-slide {
        font-size: 1rem;
    }
}
    
    
    .slide-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .slide-icon-container i {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .slide-metrics {
        gap: 1rem;
        width: 100%;
    }
    
    .metric-item {
        min-width: 80px;
    }
    
    .metric-value {
        font-size: 1.2rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .slider-controls {
        gap: 0.5rem;
        padding: 0 0.25rem;
    }
    
    .slider-indicators {
        gap: 0.4rem;
    }
    
    .slider-indicator {
        width: 8px;
        height: 8px;
    }
    
    .slider-footer {
        padding: 0 0.25rem;
        margin-top: 1.2rem;
    }
    
    .slider-counter {
        font-size: 0.85rem;
    }
    
    .current-slide {
        font-size: 1rem;
    }

.form-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.form-help,
.form-counter {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-counter.is-limit {
    color: #ffb366;
}

.form-input.is-invalid {
    border-color: rgba(255, 107, 107, 0.9);
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.12);
}

@media (max-width: 640px) {
    .form-meta {
        align-items: flex-start;
        flex-direction: column;
    }
}


.admin-auth-grid {
    align-items: stretch;
}

.admin-auth-form {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.admin-nav-actions {
    gap: 0.75rem;
}

.admin-logout-btn {
    min-height: 44px;
}

.admin-section-header {
    margin-bottom: 2.5rem;
}

.admin-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.03));
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.admin-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.12);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.admin-hero-card h2 {
    color: var(--text-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.admin-hero-copy {
    color: var(--text-secondary);
    max-width: 58ch;
    line-height: 1.8;
}

.admin-identity-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.admin-identity-label {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-identity-card strong {
    color: var(--text-primary);
    font-size: 1.2rem;
}

.admin-identity-card small {
    color: var(--text-secondary);
    font-size: 0.95rem;
    word-break: break-word;
}

.admin-dashboard-status {
    margin-bottom: 1.5rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.admin-stat-card,
.admin-panel-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.admin-stat-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.admin-stat-value {
    color: var(--text-primary);
    font-family: var(--font-tech);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1;
}

.admin-stat-value-sm {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.4;
    font-family: var(--font-primary);
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.admin-panel-card {
    padding: 1.5rem;
}

.admin-panel-head {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.admin-panel-head h2 {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.admin-panel-head span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-list-item,
.admin-empty-state {
    padding: 1rem;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.admin-list-item-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.admin-list-item-head h3,
.admin-list-item strong {
    color: var(--text-primary);
}

.admin-list-item-head p,
.admin-list-item p,
.admin-list-item-head span,
.admin-empty-state {
    color: var(--text-secondary);
}

.admin-list-item strong {
    display: block;
    margin-bottom: 0.5rem;
}

.admin-feature-list {
    display: grid;
    gap: 0.9rem;
    list-style: none;
}

.admin-feature-list li {
    position: relative;
    padding: 1rem 1rem 1rem 2.75rem;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    line-height: 1.6;
}

.admin-feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .admin-hero-card,
    .admin-dashboard-grid,
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-auth-form,
    .admin-hero-card,
    .admin-panel-card,
    .admin-stat-card {
        padding: 1.25rem;
    }

    .admin-nav-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 2rem 2rem;
        gap: 0.75rem;
    }

    .admin-nav-actions .btn,
    .admin-nav-actions .theme-toggle {
        width: 100%;
        justify-content: center;
    }

    .admin-list-item-head {
        flex-direction: column;
    }
}


.site-auth-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-auth-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.site-auth-icon:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.08);
}

.site-user-greeting {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
}

.site-user-greeting-label {
    color: var(--text-secondary);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-user-greeting strong {
    color: var(--primary);
    font-size: 0.95rem;
}

.site-auth-icon--user {
    color: var(--primary);
    border-color: var(--primary);
    cursor: default;
    font-size: 1.25rem;
}

.customer-auth-grid {
    align-items: start;
}

.customer-auth-stack {
    display: grid;
    gap: 1.5rem;
}

.customer-auth-stack-standalone {
    max-width: 760px;
    margin: 0 auto;
}

.customer-auth-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.customer-admin-link {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .site-auth-actions {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }
}


.customer-auth-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.customer-auth-links-centered {
    justify-content: center;
}

.customer-auth-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.customer-auth-link:hover {
    opacity: 0.82;
}

.customer-auth-description {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .customer-auth-links {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}


.admin-panel-card-full {
    grid-column: 1 / -1;
}

.admin-customers-list {
    display: grid;
    gap: 1rem;
}

.admin-customer-item {
    gap: 0.9rem;
}

.admin-customer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.admin-customer-meta strong {
    color: var(--text-primary);
}

.admin-customer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.4rem;
}

.admin-whatsapp-btn {
    min-width: 220px;
    justify-content: center;
}

.admin-whatsapp-missing {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* FIX: ajustar proporção botão login no header */
.header .btn {
    min-width: auto;
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    body[data-customer-auth-page] .nav-menu .nav-link[href="/login.html"] {
        order: 20;
        width: calc(100% - 4rem);
        margin: 1rem 2rem 0;
        min-height: 44px;
        padding: 0.95rem 1.25rem;
        justify-content: center;
        border: 1px solid var(--primary);
        border-left-width: 1px;
        border-radius: 12px;
        background: transparent;
        color: var(--primary);
    }

    body[data-customer-auth-page] .nav-menu .nav-link[href="/login.html"]:hover,
    body[data-customer-auth-page] .nav-menu .nav-link[href="/login.html"].active {
        border-color: var(--primary);
        border-left-color: var(--primary);
        background: var(--bg-hover);
        color: var(--primary);
    }

    body[data-customer-auth-page] .nav-menu .nav-actions {
        order: 21;
        margin-top: 0.5rem;
        padding: 0.5rem 2rem 2rem;
        border-top: none;
    }
}

/* FIX: padronizar menu mobile com CTA de login em destaque */
@media (max-width: 768px) {
    .nav-menu .nav-actions {
        align-items: stretch;
    }

    .nav-menu .site-auth-actions {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        order: -1;
    }

    .nav-menu .nav-actions .theme-toggle {
        width: fit-content;
        align-self: center;
        justify-content: center;
        padding: 0.8rem 1.25rem;
    }

    .nav-menu .nav-actions .theme-toggle i {
        margin-right: 0.6rem;
    }
}

/* ========================================
   SEÇÃO DE LANÇAMENTO - PRODUCT LAUNCH
   ======================================== */

.launch-section {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.launch-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30,64,175,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.launch-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.launch-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    overflow: hidden;
    width: 100%;
}

.launch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

.launch-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-1);
    color: #fff;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: var(--font-tech);
    margin-bottom: 1.2rem;
    animation: badgeFloat 3s ease-in-out infinite;
    text-align: center;
    justify-content: center;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.launch-badge i {
    font-size: 0.85rem;
    animation: rocketShake 2s ease-in-out infinite;
}

@keyframes rocketShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

.launch-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
}

.launch-title {
    font-family: var(--font-tech);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.launch-title .highlight-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.launch-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.launch-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-hover);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.launch-feature:hover {
    border-color: var(--primary);
    background: rgba(30,64,175,0.05);
}

.launch-feature i {
    color: var(--primary);
    font-size: 0.95rem;
}

/* Wrapper centralizado do botão */
.launch-btn-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
}

/* Botão Pulsante - Veja a Demo */
.launch-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.launch-btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gradient-1);
    color: #fff;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-tech);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30,64,175,0.4);
}

.launch-btn:hover .launch-btn-text {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(30,64,175,0.6);
}

.launch-btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: var(--gradient-1);
    opacity: 0;
    z-index: 1;
    animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.launch-btn-pulse.delay {
    animation-delay: 0.5s;
}

@keyframes pulseRing {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.6);
    }
}

/* Mockup Visual */
.launch-visual {
    margin-top: 2rem;
}

.launch-mockup {
    perspective: 1000px;
}

.mockup-screen {
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    width: 220px;
    box-shadow: var(--shadow-md);
    animation: mockupFloat 4s ease-in-out infinite;
}

@keyframes mockupFloat {
    0%, 100% { transform: rotateY(-5deg) translateY(0); }
    50% { transform: rotateY(5deg) translateY(-8px); }
}

.mockup-bar {
    display: flex;
    gap: 5px;
    padding: 8px 12px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.mockup-bar .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
}

.mockup-bar .dot:first-child { background: #ef4444; }
.mockup-bar .dot:nth-child(2) { background: #f59e0b; }
.mockup-bar .dot:nth-child(3) { background: #22c55e; }

.mockup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    gap: 0.75rem;
}

.mockup-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.mockup-text {
    font-family: var(--font-tech);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
}

/* Desktop */
@media (min-width: 768px) {
    .launch-card {
        padding: 3rem;
    }

    .launch-title {
        font-size: 2rem;
    }

    .launch-btn-text {
        padding: 1rem 2.5rem;
        font-size: 1.05rem;
    }
}

/* Mobile ajustes */
@media (max-width: 480px) {
    .launch-section {
        padding: 2rem 0;
    }

    .launch-card {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }

    .launch-title {
        font-size: 1.3rem;
    }

    .launch-description {
        font-size: 0.9rem;
    }

    .launch-feature {
        font-size: 0.78rem;
        padding: 0.4rem 0.75rem;
    }

    .mockup-screen {
        width: 180px;
    }

    .launch-btn-text {
        padding: 0.75rem 1.6rem;
        font-size: 0.9rem;
    }
}
