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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Enhanced Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

/* OCULTAR TECH ORBIT DURANTE LOADING - SOLUÇÃO CORRIGIDA */
/* Ocultar APENAS quando loading screen está visível */
#loading-screen:not([style*="display: none"]) ~ * .tech-orbit,
#loading-screen:not([style*="display: none"]) ~ * .tech-icon,
body:has(#loading-screen:not([style*="display: none"])) .tech-orbit,
body:has(#loading-screen:not([style*="display: none"])) .tech-icon {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Matrix Rain Effect */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.loading-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 90%;
}

/* Logo with Glitch Effect */
.loading-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.loading-logo {
    width: 300px;
    height: auto;
    animation: logoGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
    margin-bottom: 20px;
}

.logo-glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/logo1.png') no-repeat center;
    background-size: contain;
    opacity: 0;
    animation: glitchEffect 4s infinite;
}

/* Terminal Simulation */
.loading-terminal {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.3);
    overflow: hidden;
    animation: terminalSlideIn 1s ease-out;
}

.terminal-header {
    background: rgba(0, 255, 255, 0.1);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close { background: #ff5f57; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #28ca42; }

.terminal-title {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #00ffff;
}

.terminal-body {
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.4;
}

.terminal-line {
    margin-bottom: 8px;
    opacity: 0;
    animation: terminalLineAppear 0.5s ease-out forwards;
}

.terminal-line:nth-child(1) { animation-delay: 1s; }
.terminal-line:nth-child(2) { animation-delay: 1.5s; }
.terminal-line:nth-child(3) { animation-delay: 2s; }
.terminal-line:nth-child(4) { animation-delay: 2.5s; }
.terminal-line:nth-child(5) { animation-delay: 3s; }
.terminal-line:nth-child(6) { animation-delay: 3.5s; }

.prompt {
    color: #00ffff;
    margin-right: 8px;
}

.command {
    color: #fff;
}

.typing-command {
    animation: typeWriter 2s steps(30) 1s forwards;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.output {
    color: #00ff00;
    margin-left: 16px;
}

/* Progress Bar */
.loading-progress-container {
    margin: 30px 0;
}

.loading-status {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.status-text {
    color: #00ffff;
}

.status-percentage {
    color: #fff;
    font-weight: bold;
}

.loading-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #0080ff);
    border-radius: 3px;
    width: 0%;
    animation: progressFill 4s ease-out forwards;
    position: relative;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressGlow 2s ease-in-out infinite;
}

/* Floating Tech Icons */
.floating-tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    font-size: 24px;
    color: rgba(0, 255, 255, 0.6);
    animation: floatIcon 6s ease-in-out infinite;
}

.tech-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tech-icon:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.tech-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.tech-icon:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.tech-icon:nth-child(5) {
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.tech-icon:nth-child(6) {
    top: 70%;
    right: 5%;
    animation-delay: 5s;
}

/* Code Particles */
.code-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.code-snippet {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(0, 255, 255, 0.3);
    white-space: nowrap;
    animation: codeFloat 8s linear infinite;
}

.code-snippet:nth-child(1) {
    top: 10%;
    left: -100%;
    animation-delay: 0s;
}

.code-snippet:nth-child(2) {
    top: 25%;
    left: -100%;
    animation-delay: 2s;
}

.code-snippet:nth-child(3) {
    top: 40%;
    left: -100%;
    animation-delay: 4s;
}

.code-snippet:nth-child(4) {
    top: 55%;
    left: -100%;
    animation-delay: 6s;
}

.code-snippet:nth-child(5) {
    top: 70%;
    left: -100%;
    animation-delay: 8s;
}

/* Animations */
@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8));
        transform: scale(1.05);
    }
}

@keyframes glitchEffect {
    0%, 90%, 100% { opacity: 0; }
    91%, 99% { 
        opacity: 0.8;
        transform: translate(2px, 1px);
        filter: hue-rotate(90deg);
    }
}

@keyframes terminalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes typeWriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes progressFill {
    0% { width: 0%; }
    25% { width: 25%; }
    50% { width: 50%; }
    75% { width: 75%; }
    100% { width: 100%; }
}

@keyframes progressGlow {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes codeFloat {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo .logo {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
}

.nav-link i {
    margin-right: 0.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 1rem;
    padding-right: 0.5rem;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #00ffff;
    margin: 3px 0;
    transition: 0.3s;
}


.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: visible;
    padding: 0.5rem 0;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 0, 0.1) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(-20px) translateY(-10px); }
    66% { transform: translateX(20px) translateY(10px); }
}

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

.hero-content {
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.highlight {
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.typing-text {
    position: relative;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

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

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #00ffff;
}

.btn-secondary:hover {
    background: #00ffff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    width: 500px;
    min-height: 300px;
    height: auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: visible;
    animation: float 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem;
}

/* Enhanced Code Editor Demo Styles */
.code-editors-container {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    height: 180px;
    margin-bottom: 0.3rem;
}

.code-editor-demo {
    background: #1e1e1e;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    overflow: hidden;
    height: 85px;
    transition: all 0.3s ease;
}

.code-editor-demo:hover {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
}

.react-editor {
    border-left: 3px solid #61dafb;
}

.nodejs-editor {
    border-left: 3px solid #68a063;
}

.editor-header {
    background: #2d2d30;
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    height: 32px;
}

.editor-controls {
    display: flex;
    gap: 0.4rem;
}

.control {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.control:hover {
    transform: scale(1.1);
}

.control.close { background: #ff5f56; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #27ca3f; }

.editor-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #ccc;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.tab.active {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
}

.tab i {
    font-size: 0.8rem;
}

.editor-content {
    display: flex;
    height: calc(100% - 32px);
}

.line-numbers {
    background: #252526;
    padding: 0.4rem;
    color: #858585;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.7rem;
    line-height: 1.4;
    min-width: 25px;
    text-align: right;
    user-select: none;
}

.code-content {
    flex: 1;
    padding: 0.4rem;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.7rem;
    line-height: 1.4;
    overflow: hidden;
    position: relative;
}

.code-line {
    color: #d4d4d4;
    opacity: 0;
    transform: translateX(-10px);
    animation: typeIn 0.5s ease forwards;
    white-space: nowrap;
}

.code-line:nth-child(1) { animation-delay: 0.2s; }
.code-line:nth-child(2) { animation-delay: 0.6s; }
.code-line:nth-child(3) { animation-delay: 1.0s; }
.code-line:nth-child(4) { animation-delay: 1.4s; }
.code-line:nth-child(5) { animation-delay: 1.8s; }
.code-line:nth-child(6) { animation-delay: 2.2s; }
.code-line:nth-child(7) { animation-delay: 2.6s; }
.code-line:nth-child(8) { animation-delay: 3.0s; }

@keyframes typeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Syntax Highlighting */
.keyword { color: #569cd6; font-weight: 500; }
.variable { color: #9cdcfe; }
.function { color: #dcdcaa; }
.method { color: #dcdcaa; }
.string { color: #ce9178; }
.number { color: #b5cea8; }
.boolean { color: #569cd6; }
.tag { color: #569cd6; }
.attribute { color: #92c5f7; }

/* Enhanced Terminal Demo Styles */
.terminal-demo {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    height: 200px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.terminal-demo:hover {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 
        0 12px 40px rgba(0, 255, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.terminal-header {
    background: #1f1f1f;
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    height: 32px;
}

.terminal-controls {
    display: flex;
    gap: 0.4rem;
}

.terminal-tabs {
    display: flex;
    gap: 0.5rem;
}

.terminal-content {
    padding: 0.6rem;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.75rem;
    line-height: 1.4;
    height: calc(100% - 32px);
    overflow: hidden;
}

.terminal-line {
    color: #00ff88;
    margin-bottom: 0.2rem;
    opacity: 0;
    transform: translateY(5px);
    animation: terminalTypeIn 0.4s ease forwards;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.terminal-line:nth-child(1) { animation-delay: 0.5s; }
.terminal-line:nth-child(2) { animation-delay: 1.2s; }
.terminal-line:nth-child(3) { animation-delay: 1.8s; }
.terminal-line:nth-child(4) { animation-delay: 2.5s; }
.terminal-line:nth-child(5) { animation-delay: 3.2s; }
.terminal-line:nth-child(6) { animation-delay: 3.8s; }
.terminal-line:nth-child(7) { animation-delay: 4.5s; }
.terminal-line:nth-child(8) { animation-delay: 5.2s; }

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

.prompt {
    color: #00ffff;
    margin-right: 0.3rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.command {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.output {
    color: #cccccc;
    margin-left: 0.8rem;
}

/* Smart Status Display */
.status-display {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #00ff88;
    font-weight: bold;
    font-size: 16px;
}

.status-header i {
    font-size: 18px;
}

.status-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.status-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.active {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status-indicator.warning {
    background: #ffbd2e;
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.5);
}

.status-indicator.error {
    background: #ff5f57;
    box-shadow: 0 0 10px rgba(255, 95, 87, 0.5);
}

.status-text {
    color: #ffffff;
    font-size: 14px;
    font-family: 'Fira Code', monospace;
}

/* Enhanced Metrics Demo Styles */
.metrics-demo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
    height: 80px;
    margin-bottom: 0.3rem;
}

.metric-card {
    background: rgba(0, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.metric-card:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}

.metric-icon {
    color: #00ffff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.metric-value {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    font-family: 'Fira Code', monospace;
}

.metric-label {
    color: #ccc;
    font-size: 0.6rem;
    margin-top: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-trend {
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
    font-size: 0.6rem;
}

.trend-up { color: #27ca3f; }
.trend-down { color: #ff5f56; }
.trend-stable { color: #ffbd2e; }

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

/* Enhanced Floating Elements - Fixed positioning to avoid terminal interference */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(0, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    animation: floatTechSubtle 8s ease-in-out infinite;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    opacity: 0.6;
}

/* Repositioned to avoid terminal area */
.tech-react {
    top: 5%;
    left: 5%;
    color: #61dafb;
    animation-delay: 0s;
}

.tech-node {
    top: 15%;
    right: 5%;
    color: #68a063;
    animation-delay: 1.5s;
}

.tech-docker {
    top: 60%;
    left: 2%;
    color: #2496ed;
    animation-delay: 3s;
}

.tech-git {
    top: 75%;
    right: 3%;
    color: #f05032;
    animation-delay: 4.5s;
}

.tech-database {
    top: 35%;
    left: 1%;
    color: #336791;
    animation-delay: 6s;
}

.tech-cloud {
    top: 85%;
    right: 8%;
    color: #ff9900;
    animation-delay: 7.5s;
}

@keyframes floatTechSubtle {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    25% { 
        transform: translateY(-8px) rotate(45deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-5px) rotate(90deg);
        opacity: 0.6;
    }
    75% { 
        transform: translateY(-12px) rotate(135deg);
        opacity: 0.8;
    }
}

/* File Tree Demo Styles */
.file-tree-demo {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 0.6rem;
    height: 100px;
    margin-bottom: 1rem;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.7rem;
}

.file-tree-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #00ffff;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.file-tree-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #ccc;
    opacity: 0;
    transform: translateX(-10px);
    animation: fileAppear 0.4s ease forwards;
}

.file-item:nth-child(1) { animation-delay: 0.2s; }
.file-item:nth-child(2) { animation-delay: 0.6s; }
.file-item:nth-child(3) { animation-delay: 1.0s; }
.file-item:nth-child(4) { animation-delay: 1.4s; }
.file-item:nth-child(5) { animation-delay: 1.8s; }

@keyframes fileAppear {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.file-item.folder i { color: #ffbd2e; }
.file-item.file i { color: #569cd6; }

/* Animated Counter */
.animated-counter {
    display: inline-block;
    animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}


.services {
    background: #111;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

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

.service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #00ffff;
    margin-right: 0.5rem;
}

/* Tech Stack Styles */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.tech-item i {
    font-size: 1.2rem;
    color: #00ffff;
    margin-right: 0.5rem;
    min-width: 20px;
}

.tech-item span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Nossa Stack Section */
.nossa-stack {
    background: #0f0f0f;
    padding: 5rem 0;
}

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

.stack-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stack-category:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

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

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.category-header h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
}

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

.tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.tech-logo-item:hover {
    background: rgba(0, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.05);
    border-color: #00ffff;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.tech-logo-item i {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.tech-logo-item:hover i {
    transform: rotate(360deg);
    color: #fff;
}

.tech-logo-item span {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tech-logo-item:hover span {
    color: #fff;
}


.portfolio {
    background: #0a0a0a;
}

/* Clean Modern Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Clean Portfolio Cards */
.portfolio-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Clean Image Container */
.portfolio-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

/* Remove all overlay effects */
.portfolio-overlay {
    display: none;
}

/* Clean Content Area */
.portfolio-info {
    padding: 24px;
    background: #ffffff;
}

.portfolio-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.portfolio-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Modern Clean Buttons */
.portfolio-buttons {
    display: flex;
    gap: 12px;
}

.portfolio-btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-view {
    background: #007bff;
    color: white;
}

.btn-view:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.btn-visit {
    background: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}

.btn-visit:hover {
    background: #007bff;
    color: white;
}

/* Clean Responsive Design */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-info {
        padding: 20px;
    }
    
    .portfolio-info h3 {
        font-size: 1.2rem;
    }
    
    .portfolio-info p {
        font-size: 0.9rem;
    }
    
    .portfolio-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        padding: 15px;
        gap: 15px;
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-info {
        padding: 16px;
    }
    
    .portfolio-info h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-info p {
        font-size: 0.85rem;
    }
}

/* Modern Portfolio Buttons */
.portfolio-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

.btn-portfolio-view,
.btn-portfolio-link {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 12px 24px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

.btn-portfolio-view::before,
.btn-portfolio-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-portfolio-view:hover::before,
.btn-portfolio-link:hover::before {
    left: 100%;
}

.btn-portfolio-view:hover,
.btn-portfolio-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
    border-color: #00ffff;
    background: linear-gradient(135deg, #00cccc, #0066cc);
}

.btn-portfolio-view:active,
.btn-portfolio-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.4);
}

/* Special styling for "Visitar" button */
.btn-portfolio-link {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-portfolio-link:hover {
    background: linear-gradient(135deg, #e55a2b, #d4821a);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    border-color: #ff6b35;
}

/* Responsive design for buttons */
@media (max-width: 768px) {
    .portfolio-actions {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .btn-portfolio-view,
    .btn-portfolio-link {
        padding: 10px 20px;
        font-size: 12px;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .btn-portfolio-view,
    .btn-portfolio-link {
        padding: 8px 16px;
        font-size: 11px;
        min-width: 90px;
    }
}


.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    animation: slideInLeft 1s ease-out;
}

.about-subtitle {
    font-size: 1.4rem;
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 3rem;
}


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

.value-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon::before {
    width: 100%;
    height: 100%;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.value-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
}


.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.about-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NOVA IMPLEMENTAÇÃO - ÍCONES ROTATIVOS RECRIADOS DO ZERO */
.tech-orbit {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: orbit-container 30s linear infinite;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: counter-rotate 30s linear infinite reverse;
    z-index: 5;
}

.tech-icon:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 12px 35px rgba(0, 255, 255, 0.6);
}

/* Posicionamento individual para cada ícone - distribuição hexagonal perfeita */
.tech-icon:nth-child(1) { 
    top: 50px; 
    left: 200px; 
}

.tech-icon:nth-child(2) { 
    top: 125px; 
    left: 325px; 
}

.tech-icon:nth-child(3) { 
    top: 275px; 
    left: 325px; 
}

.tech-icon:nth-child(4) { 
    top: 350px; 
    left: 200px; 
}

.tech-icon:nth-child(5) { 
    top: 275px; 
    left: 75px; 
}

.tech-icon:nth-child(6) { 
    top: 125px; 
    left: 75px; 
}

/* CENTRO DA GALÁXIA - WORLDCODE LOGO */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #00ffff 0%, #0080ff 40%, #001a33 100%);
    border: 3px solid #00ffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00ffff;
    text-align: center;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        0 0 60px rgba(0, 255, 255, 0.4),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    animation: galaxyPulse 3s ease-in-out infinite;
}

.center-logo::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 40%, rgba(0, 255, 255, 0.1) 70%, transparent 100%);
    animation: galaxyRing 4s ease-in-out infinite;
    z-index: -1;
}

.center-logo span {
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.center-logo:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.8),
        0 0 80px rgba(0, 255, 255, 0.6),
        inset 0 0 30px rgba(0, 255, 255, 0.2);
}

/* ANIMAÇÕES DA GALÁXIA */
@keyframes galaxyPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.9; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05); 
        opacity: 1; 
    }
}

@keyframes galaxyRing {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.1) rotate(180deg); 
        opacity: 0.6; 
    }
}


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

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

/* NOVAS ANIMAÇÕES PARA OS ÍCONES ROTATIVOS */
@keyframes orbit-container {
    from { 
        transform: rotate(0deg); 
    }
    to { 
        transform: rotate(360deg); 
    }
}

@keyframes counter-rotate {
    from { 
        transform: translate(-50%, -50%) rotate(0deg); 
    }
    to { 
        transform: translate(-50%, -50%) rotate(-360deg); 
    }
}


.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.contact-details h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #ff6b35;
}

.contact-details p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.15);
}

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


.google-map-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    height: 400px;
    position: relative;
}

.google-map {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    z-index: 1;
}


.leaflet-container {
    height: 100% !important;
    width: 100% !important;
    border-radius: 20px;
}

.leaflet-popup-content-wrapper {
    border-radius: 10px;
}

.leaflet-popup-tip {
    background: white;
}


.worldcode-marker {
    position: relative;
}

.marker-container {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.3);
    animation: pulse 2s infinite;
    z-index: 1;
}

.marker-main {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    z-index: 2;
    animation: bounce 3s infinite;
    transition: all 0.3s ease;
}

.marker-main:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.marker-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.marker-text {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #ff6b35;
    color: white;
    font-weight: bold;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    z-index: 4;
}

.marker-shadow {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(3px);
    z-index: 0;
}


.worldcode-popup {
    font-family: 'Arial', sans-serif;
    min-width: 280px;
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 15px 10px 15px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 8px 8px 0 0;
    margin: -10px -10px 10px -10px;
}

.popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.popup-logo {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px;
    border-radius: 50%;
}

.popup-content {
    padding: 0 15px;
}

.popup-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
}

.popup-item i {
    color: #007bff;
    width: 16px;
    text-align: center;
}

.popup-actions {
    padding: 15px;
    margin: 10px -10px -10px -10px;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

.popup-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}


.location-highlight {
    animation: highlightPulse 4s infinite;
}


.custom-marker {
    animation: markerBounce 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.8);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes highlightPulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}


@media (max-width: 768px) {
    .google-map-container {
        height: 300px;
        margin-bottom: 2rem;
    }
}


@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-image-container {
        width: 300px;
        height: 300px;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .center-logo {
        width: 120px;
        height: 120px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-values {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
}


.footer {
    background: #111;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-links h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #00ffff;
}

.footer-social h3 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00ffff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #ccc;
}


.whatsapp-bot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-bot:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-bot i {
    font-size: 30px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 5px solid transparent;
    border-top-color: #333;
}

.whatsapp-bot:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}


.whatsapp-bot {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}


.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}


.hidden {
    opacity: 0;
    pointer-events: none;
}

.visible {
    opacity: 1;
    pointer-events: auto;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

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

/* Melhorar contraste de cores */
.btn-primary {
    background: #0066cc !important;
    color: #ffffff !important;
    border: 2px solid #0066cc !important;
}

.btn-primary:hover {
    background: #0052a3 !important;
    border-color: #0052a3 !important;
}

.btn-secondary {
    background: transparent !important;
    color: #0066cc !important;
    border: 2px solid #0066cc !important;
}

.btn-secondary:hover {
    background: #0066cc !important;
    color: #ffffff !important;
}

.portfolio-btn.btn-view {
    background: #0066cc !important;
    color: #ffffff !important;
    border: 2px solid #0066cc !important;
}

.portfolio-btn.btn-visit {
    background: transparent !important;
    color: #0066cc !important;
    border: 2px solid #0066cc !important;
}

.portfolio-btn.btn-visit:hover {
    background: #0066cc !important;
    color: #ffffff !important;
}

.nav-link {
    color: #ffffff !important;
}

.nav-link:hover {
    color: #0066cc !important;
}

.social-link {
    color: #0066cc !important;
}

.social-link:hover {
    color: #0052a3 !important;
}
