/* home.css */
/* Importações */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* Variáveis CSS personalizadas */
:root {
    --primary-color: #00f0ff;
    --secondary-color: #7b2dff;
    --dark-color: #0a0a1a;
    --darker-color: #050510;
    --light-color: #e0e0ff;
    --accent-color: #ff2d7b;
    --success-color: #2dff7b;
    --cyber-blue: #00f0ff;
    --cyber-purple: #7b2dff;
    --cyber-pink: #ff2d7b;
    --cyber-green: #2dff7b;
    --cyber-yellow: #f0ff00;
    --glow: 0 0 10px rgba(0, 240, 255, 0.7);
    --text-glow: 0 0 8px rgba(0, 240, 255, 0.9);
    --box-glow: 0 0 15px rgba(123, 45, 255, 0.5);
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(123, 45, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 20%),
        linear-gradient(to bottom, var(--darker-color), var(--dark-color));
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
}

/* Animação de fundo futurista */
@keyframes gridMovement {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

/* Loader Cyber */
.cyber-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 9999;
    animation: loading 2s linear infinite;
    box-shadow: var(--glow);
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Header Futurista */
.cyber-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.cyber-header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 16, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cyber-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo .cyber-glitch {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: var(--text-glow);
    letter-spacing: 2px;
    position: relative;
}

.logo .cyber-subtitle {
    font-size: 0.7rem;
    color: var(--light-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -5px;
}

/* Navegação Cyber */
.cyber-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.cyber-nav ul li a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.cyber-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.cyber-nav ul li a:hover {
    color: var(--primary-color);
    text-shadow: var(--text-glow);
}

.cyber-nav ul li a:hover::after {
    width: 100%;
}

.cyber-menu-toggle {
    display: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cyber-menu-toggle:hover {
    color: var(--primary-color);
    text-shadow: var(--text-glow);
}

/* Hero Section - Estilo RPG Futurista */
.cyber-hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.cyber-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(123, 45, 255, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 30% 70%, rgba(0, 240, 255, 0.15) 0%, transparent 30%);
    z-index: -1;
}

.cyber-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cyber-title {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.cyber-title span {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-color);
    text-shadow: var(--text-glow);
    position: relative;
    animation: fadeInUp 1s ease forwards;
}

.cyber-title span:nth-child(1) { animation-delay: 0.3s; }
.cyber-title span:nth-child(2) { animation-delay: 0.6s; }
.cyber-title span:nth-child(3) { animation-delay: 0.9s; }

.cyber-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--light-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

/* Botão Cyber */
.cyber-button {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--glow);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

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

.cyber-button:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px var(--primary-color);
    transform: translateY(-3px);
}

.cyber-button:hover::before {
    left: 100%;
}

/* Efeito de pulso para CTA */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Scroll Down Indicator */
.cyber-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    box-shadow: var(--glow);
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.cyber-scroll-down span {
    display: block;
    width: 6px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 3px;
    margin-top: 10px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Seções Gerais */
section {
    padding: 100px 0;
    position: relative;
}

.cyber-section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.cyber-section-title .cyber-glitch {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: var(--text-glow);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

/* Efeito Glitch */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

.cyber-glitch:hover {
    animation: glitch 0.5s linear infinite;
}

/* Sobre Nós - Estilo HUD RPG */
.cyber-about {
    background: rgba(10, 10, 26, 0.5);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.cyber-about .container {
    max-width: 900px;
}

.cyber-about p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding: 20px;
    background: rgba(5, 5, 16, 0.5);
    border-left: 2px solid var(--primary-color);
    box-shadow: var(--box-glow);
    transition: all 0.3s ease;
}

.cyber-about p:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2);
}

.cyber-about strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Equipe - Estilo Cards RPG */
.cyber-team {
    background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
}

.cyber-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.85);
}

.cyber-team .container {
    position: relative;
    z-index: 2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-glow);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.3);
}

.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

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

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-bottom: 20px;
    box-shadow: var(--glow);
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.team-card .role {
    color: var(--cyber-pink);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-card .skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.team-card .skill {
    background: rgba(123, 45, 255, 0.2);
    color: var(--cyber-purple);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--cyber-purple);
}

/* Portfólio - Estilo Terminal RPG */
.cyber-portfolio {
    background: rgba(10, 10, 26, 0.5);
    backdrop-filter: blur(5px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    background: rgba(5, 5, 16, 0.7);
    border: 1px solid var(--cyber-purple);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--box-glow);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(123, 45, 255, 0.3);
}

.portfolio-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 5, 16, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.portfolio-info .tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.portfolio-info .tech span {
    background: rgba(0, 240, 255, 0.2);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--primary-color);
}

/* Depoimentos - Estilo Console RPG */
.cyber-testimonials {
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
}

.cyber-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.85);
}

.cyber-testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-slider {
    margin-top: 50px;
    position: relative;
}

.testimonial-item {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--cyber-green);
    border-radius: 5px;
    padding: 30px;
    margin: 0 15px;
    position: relative;
    box-shadow: 0 0 15px rgba(45, 255, 123, 0.3);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(45, 255, 123, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cyber-green);
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--cyber-green);
    margin-bottom: 5px;
}

.author-info .company {
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.8;
}

/* Projetos Desenvolvidos - Estilo Inventário RPG */
.cyber-projects {
    background: rgba(10, 10, 26, 0.5);
    backdrop-filter: blur(5px);
}

.projects-list {
    max-width: 800px;
    margin: 0 auto;
    counter-reset: project-counter;
}

.project-item {
    background: rgba(5, 5, 16, 0.7);
    border-left: 4px solid var(--cyber-yellow);
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(240, 255, 0, 0.1);
}

.project-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(240, 255, 0, 0.2);
}

.project-item::before {
    counter-increment: project-counter;
    content: "0" counter(project-counter);
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyber-yellow);
    opacity: 0.5;
}

.project-item h3 {
    font-size: 1.3rem;
    color: var(--light-color);
    margin-bottom: 10px;
}

.project-item p {
    color: var(--light-color);
    opacity: 0.8;
}

/* Contato - Estilo Painel de Controle */
.cyber-contact {
    background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
}

.cyber-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.9);
}

.cyber-contact .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cyber-contact-form {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--cyber-pink);
    border-radius: 5px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(255, 45, 123, 0.3);
}

.cyber-contact-form input,
.cyber-contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(5, 5, 16, 0.7);
    border: 1px solid var(--primary-color);
    color: var(--light-color);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cyber-contact-form input:focus,
.cyber-contact-form textarea:focus {
    outline: none;
    border-color: var(--cyber-pink);
    box-shadow: 0 0 10px rgba(255, 45, 123, 0.5);
}

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

.cyber-contact-form button {
    width: 100%;
    padding: 15px;
    background: transparent;
    color: var(--cyber-pink);
    border: 2px solid var(--cyber-pink);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cyber-contact-form button:hover {
    background: rgba(255, 45, 123, 0.1);
    box-shadow: 0 0 20px rgba(255, 45, 123, 0.5);
}

/* Footer Cyber */
.cyber-footer {
    background: var(--darker-color);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.cyber-footer p {
    color: var(--light-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Efeitos de Movimento RPG */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Responsividade */
@media (max-width: 992px) {
    .cyber-nav ul {
        gap: 15px;
    }
    
    .cyber-title span {
        font-size: 3rem;
    }
    
    .cyber-subtitle {
        font-size: 1.2rem;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .cyber-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: rgba(5, 5, 16, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        border-right: 1px solid var(--primary-color);
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .cyber-nav.active {
        left: 0;
    }
    
    .cyber-nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .cyber-menu-toggle {
        display: block;
    }
    
    .cyber-title span {
        font-size: 2.5rem;
    }
    
    .cyber-subtitle {
        font-size: 1.1rem;
    }
    
    .cyber-section-title .cyber-glitch {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .cyber-title span {
        font-size: 2rem;
    }
    
    .cyber-subtitle {
        font-size: 1rem;
    }
    
    .cyber-section-title .cyber-glitch {
        font-size: 2rem;
    }
    
    .cyber-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
/* Adicionar ao .cyber-header */
.cyber-header::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color), 
        var(--cyber-pink),
        var(--primary-color),
        transparent);
    background-size: 200% 100%;
    animation: scanner 3s linear infinite;
}

@keyframes scanner {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.data-points {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-point {
    position: absolute;
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.data-point::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--primary-color);
}
/* Adicionar ao CSS */
@keyframes level-up {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(240, 255, 0, 0); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(240, 255, 0, 0.5); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(240, 255, 0, 0); }
}

.project-item.level-up {
    animation: level-up 1s ease;
}
/* Substituir o .cyber-button por: */
.cyber-button {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px var(--primary-color);
}

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

.cyber-button:hover::before {
    left: 100%;
}

.cyber-button:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px var(--primary-color);
}

.cyber-button::after {
    content: '>>>';
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: 0.3s;
}

.cyber-button:hover::after {
    opacity: 1;
    right: 15px;
}
/* Estilos para o grid da equipe */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centraliza os cards horizontalmente */
    gap: 30px; /* Espaço entre os cards */
    margin-top: 40px;
}

/* Estilos para cada card */
.team-card {
    width: 300px; /* Largura fixa para cada card */
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #00f0ff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00f0ff;
    margin-bottom: 15px;
}

.team-card h3 {
    color: #00f0ff;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.team-card .role {
    color: #ccc;
    display: block;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .team-card {
        width: 80%;
        max-width: 350px;
    }
}
.team-card {
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00f0ff, #ff00f0, #00ff9d);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.7;
}

/* Estilos para a seção de portfólio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #00f0ff;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
    border-color: #ff00f0;
}

.portfolio-icon {
    font-size: 2.5rem;
    color: #00f0ff;
    margin-bottom: 15px;
}

.portfolio-card h3 {
    color: #00f0ff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.portfolio-card p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-tech span {
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    border: 1px solid #00f0ff;
}

/* Efeito cyber para os cards */
.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 240, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

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

/* Responsividade */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para a descrição do membro */
.member-description {
    margin: 15px 0;
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Estilo para o botão do LinkedIn */
.linkedin-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: #0077b5;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.linkedin-btn:hover {
    background: #006097;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
}

.linkedin-btn i {
    margin-right: 5px;
}

/* Ajuste para os cards com descrição */
.team-card {
    position: relative;
    padding-bottom: 20px; /* Espaço para o botão do LinkedIn */
}

/* Estilos para a seção de depoimentos */
.cyber-testimonials {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cyber-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
}

.section-subtitle {
    color: #ccc;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.testimonial-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.sector-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.sector-btn {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid #00f0ff;
    color: #00f0ff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.sector-btn:hover {
    background: rgba(0, 240, 255, 0.3);
    transform: translateY(-3px);
}

.sector-btn.active {
    background: #00f0ff;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.testimonial-sector {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-sector.active {
    display: block;
}

.sector-header {
    text-align: center;
    margin-bottom: 40px;
}

.sector-header h3 {
    color: #00f0ff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sector-header p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.sector-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.1);
    border-color: #00f0ff;
}

.feature i {
    font-size: 2.5rem;
    color: #00f0ff;
    margin-bottom: 15px;
}

.feature h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #00f0ff;
    border-radius: 8px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.project-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #ff00f0;
    color: #000;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-card blockquote {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-card blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(0, 240, 255, 0.3);
    font-family: serif;
}

.client-info {
    text-align: right;
}

.client-info strong {
    color: #00f0ff;
    display: block;
    font-size: 1.1rem;
}

.client-info span {
    color: #aaa;
    font-size: 0.9rem;
}

/* Animação */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 768px) {
    .sector-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .sector-features {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}
 .cyber-projects {
        padding: 4rem 0;
        background-color: #0a0a0a;
        color: #e0e0e0;
    }
    
    .cyber-projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .cyber-project-card {
        background: #111;
        border: 1px solid #333;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .cyber-project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
        border-color: #0ff;
    }
    
    .project-image {
        height: 200px;
        overflow: hidden;
    }
    
    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    
    .cyber-project-card:hover .project-image img {
        transform: scale(1.05);
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-content h3 {
        color: #0ff;
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }
    
    .project-description {
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .project-tech {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .project-tech span {
        background: rgba(0, 255, 255, 0.1);
        color: #0ff;
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
    }
    
    .project-links {
        display: flex;
        gap: 1rem;
    }
    
    .cyber-button {
        display: inline-block;
        padding: 0.6rem 1.2rem;
        background: linear-gradient(45deg, #0ff, #0af);
        color: #000;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
        transition: all 0.3s;
    }
    
    .cyber-button:hover {
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    }
    
    .cyber-button.secondary {
        background: transparent;
        border: 1px solid #0ff;
        color: #0ff;
    }
    
    .cyber-button.secondary:hover {
        background: rgba(0, 255, 255, 0.1);
    }
    /* Estilos da seção de projetos */
.cyber-projects {
    padding: 3rem 0;
    background-color: #0a0a0a;
    color: #e0e0e0;
}

.cyber-projects .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cyber-section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: #00ffff;
    text-transform: uppercase;
}

.cyber-glitch {
    position: relative;
}

/* Grid de projetos */
.cyber-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Cards de projetos */
.cyber-project-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
}

.cyber-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
    border-color: #00ffff;
}

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

.project-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00ffff;
}

.project-icon svg {
    width: 24px;
    height: 24px;
    fill: #00ffff;
}

.project-header h3 {
    margin: 0;
    color: #00ffff;
    font-size: 1.2rem;
}

.project-body {
    flex-grow: 1;
}

.project-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #ccc;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tech span {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.project-footer {
    display: flex;
    gap: 0.8rem;
}

/* Botões */
.cyber-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #00ffff, #0099ff);
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
    flex: 1;
}

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

.cyber-btn:hover {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.cyber-btn.secondary:hover {
    background: rgba(0, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .cyber-projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 480px) {
    .cyber-projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos da seção Sobre */
.cyber-about {
    padding: 4rem 0;
    background-color: #0a0a0a;
    color: #e0e0e0;
    position: relative;
}

.cyber-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

.cyber-about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

.cyber-about .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cyber-section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.cyber-glitch {
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-content p {
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-content p::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

.about-content strong {
    color: #00ffff;
    font-weight: normal;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .cyber-about {
        padding: 3rem 0;
    }
    
    .cyber-section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
        padding-left: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cyber-section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .about-content {
        gap: 1.2rem;
    }
}

.cyber-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
  z-index: -1;
}

.cyber-grid::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(transparent 90%, #0ff3 95%, #0ff8 100%);
  animation: matrixRain 5s linear infinite;
}

@keyframes matrixRain {
  0% { background-position: 0 0; }
  100% { background-position: 0 100vh; }
}




.cyber-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cyber-logo-image {
    width: 50px;
    height: auto;
    filter: 
        drop-shadow(0 0 5px #00ffff)
        drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    transition: all 0.3s ease;
}

/* ... (restante do CSS permanece igual) ... */

/* Estilos de erro */
.error-message {
    color: #ff0066;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    text-shadow: 0 0 5px rgba(255, 0, 102, 0.5);
    height: 1rem;
}

@keyframes glitch-error {
    0% { transform: translateX(0); text-shadow: 0 0 5px #ff0066; }
    25% { transform: translateX(-5px); text-shadow: -2px 0 #00ffff; }
    50% { transform: translateX(5px); text-shadow: 2px 0 #ff00ff; }
    75% { transform: translateX(-3px); text-shadow: -3px 0 #00ff88; }
    100% { transform: translateX(0); text-shadow: 0 0 5px #ff0066; }
}

/* Loader cyberpunk */
.cyber-loader {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #00ffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Campos inválidos */
input:invalid, textarea:invalid {
    border-color: #ff0066 !important;
}

/* Estilos para os placeholders */
.cyber-contact-form input::placeholder,
.cyber-contact-form textarea::placeholder {
    color: #7a7a8c; /* Cor mais visível mas ainda cyberpunk */
    opacity: 1; /* Garante que a opacidade não seja reduzida */
    font-style: italic;
    transition: all 0.3s ease;
}

/* Efeito quando o campo está em foco */
.cyber-contact-form input:focus::placeholder,
.cyber-contact-form textarea:focus::placeholder {
    color: #00ffff; /* Muda para a cor cyberpunk quando em foco */
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Estilos específicos para campos vazios */
.cyber-contact-form input:not(:focus):placeholder-shown,
.cyber-contact-form textarea:not(:focus):placeholder-shown {
    background: rgba(0, 255, 255, 0.05); /* Fundo mais claro quando vazio */
}

/* Ajuste para os widgets do Django */
.form-control::placeholder {
    color: #7a7a8c !important;
}


/* Transforma todo o texto do formulário em maiúsculas */
.cyber-contact-form,
.cyber-contact-form input,
.cyber-contact-form textarea,
.cyber-contact-form button,
.cyber-contact-form label,
.cyber-contact-form .error-message {
    text-transform: uppercase !important;
    font-variant: small-caps;
    letter-spacing: 1px;
}

/* Placeholders em maiúsculas */
.cyber-contact-form input::placeholder,
.cyber-contact-form textarea::placeholder {
    text-transform: uppercase !important;
    letter-spacing: 1px;
}

/* Mantém o estilo cyberpunk */
.cyber-contact-form input,
.cyber-contact-form textarea {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

/* Ajuste para os erros */
.cyber-contact-form .error-message {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
}

/* Botão com estilo reforçado */
.cyber-button {
    letter-spacing: 2px;
    font-weight: 900;
}

/* Efeito especial para texto digitado */
.cyber-contact-form input:not(:placeholder-shown),
.cyber-contact-form textarea:not(:placeholder-shown) {
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
}

/* fale conosco */
/* Fonte recomendada: use Orbitron ou Share Tech Mono via Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

.cyber-contato-section {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    color: #00ffe7;
    padding: 60px 20px;
    font-family: 'Orbitron', sans-serif;
    border-top: 3px solid #ff00ff;
    border-bottom: 3px solid #00fff7;
    box-shadow: 0 0 20px #00fff7, inset 0 0 10px #ff00ff;
    position: relative;
    overflow: hidden;
}

.cyber-contato-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0.03;
    animation: moveGrid 30s linear infinite;
    z-index: 0;
}

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

.cyber-contato-section .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cyber-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #00ffe7;
    text-shadow: 0 0 5px #ffd000, 0 0 10px #00ffe7;
    letter-spacing: 2px;
}

.cyber-contato-info p {
    font-size: 1.2em;
    margin: 10px 0;
    color: #00ffe7;
    text-shadow: 0 0 5px #00ffe7;
}

.cyber-contato-info a {
    color: #00ffe7;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.cyber-contato-info a:hover {
    color: #00fff7;
    text-shadow: 0 0 8px #00fff7;
}

.cyber-redes-sociais {
    margin-top: 30px;
}

.cyber-redes-sociais a {
    margin: 0 10px;
    font-size: 2em;
    color: #00ffe7;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.cyber-redes-sociais a:hover {
    color: #00ffe7;
    text-shadow: 0 0 10px #00ffe7;
    transform: scale(1.2);
}

