/* Variáveis CSS para cores */
:root {
    --dark-background: #0f0f23;
    --dark-card: #1a1a3a;
    --primary-blue: #3b82f6;
    --secondary-cyan: #06b6d4;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --neon-blue: #00f0ff;
    --neon-purple: #8a2be2;
    --neon-green: #39ff14;
    --neon-yellow: #ffff33;
}

/* Reset básico e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-background);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden; /* Evita rolagem horizontal */
}

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

h1, h2, h3, h4 {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background-color: var(--primary-blue);
    color: var(--dark-background);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.primary-btn:hover {
    background-color: var(--secondary-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.7);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.secondary-btn:hover {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: var(--secondary-cyan);
    color: var(--secondary-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.btn-small {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    background-color: var(--primary-blue);
    color: var(--dark-background);
    font-size: 0.9em;
}

.btn-small:hover {
    background-color: var(--secondary-cyan);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(15, 15, 35, 0.9), rgba(15, 15, 35, 0.9)), url('./assets/QnimVAou85A7.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4em;
    margin-bottom: 10px;
    animation: neon-glow 1.5s ease-in-out infinite alternate;
}

.hero-section h2 {
    font-size: 2em;
    color: var(--text-light);
    text-shadow: none;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2em;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* Animação Neon Glow */
@keyframes neon-glow {
    from { text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue); }
    to { text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue), 0 0 40px var(--neon-blue); }
}

/* Seções Gerais */
section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

section h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* About Section */
.about-section {
    background-color: var(--dark-card);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-cards .card {
    background-color: var(--dark-background);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.about-cards .card h4 {
    color: var(--neon-green);
    text-shadow: none;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.about-cards .card p {
    color: var(--text-muted);
    font-size: 0.95em;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    background: linear-gradient(rgba(15, 15, 35, 0.9), rgba(15, 15, 35, 0.9)), url('./assets/jN7G7gXLiRxF.jpg') no-repeat center center/cover;
}

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

.service-item {
    background-color: var(--dark-card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
}

.service-item h4 {
    color: var(--neon-cyan);
    text-shadow: none;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.service-item p {
    color: var(--text-muted);
    font-size: 1em;
    margin-bottom: 20px;
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--dark-background);
}

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

.portfolio-item {
    background-color: var(--dark-card);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.4);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.portfolio-item h4 {
    color: var(--neon-purple);
    text-shadow: none;
    font-size: 1.5em;
    margin-bottom: 5px;
}

.portfolio-item .metric {
    color: var(--neon-yellow);
    font-weight: bold;
    margin-bottom: 10px;
}

.portfolio-item p {
    color: var(--text-muted);
    font-size: 0.95em;
    margin-bottom: 0;
}

/* Footer */
.footer-section {
    background-color: #0a0a1a;
    color: var(--text-light);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo, .footer-contact, .footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-logo h3 {
    color: var(--primary-blue);
    text-shadow: none;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.95em;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
}

.social-links img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}

.footer-contact h4, .footer-links h4 {
    color: var(--neon-blue);
    text-shadow: none;
    margin-bottom: 15px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.95em;
    margin-bottom: 10px;
}

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

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85em;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3em;
    }

    .hero-section h2 {
        font-size: 1.5em;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        margin: 10px 0;
    }

    section {
        padding: 60px 0;
    }

    section h3 {
        font-size: 2em;
    }

    .about-cards, .services-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        margin-top: 20px;
    }

    .footer-logo, .footer-contact, .footer-links {
        min-width: unset;
        width: 100%;
    }
}


