/* Variáveis Globais */
:root {
    /* Cores Base */
    --bg-cosmic: linear-gradient(45deg, #0a0a0a 30%, #1a1a2e 100%);
    --neon-cinza: #e0e0e0;
    --neon-branco: #ffffff;
    --neon-brilho: 0 0 5px #e0e0e0, 0 0 10px #e0e0e0, 0 0 15px #e0e0e0, 0 0 20px #e0e0e0;
    --neon-brilho-intenso: 0 0 10px #e0e0e0, 0 0 20px #e0e0e0, 0 0 30px #e0e0e0, 0 0 40px #e0e0e0;
    --neon-brilho-suave: 0 0 1.5px #e0e0e0, 0 0 2.2px #e0e0e0, 0 0 3.3px #e0e0e0;
    --neon-brilho-suave-05: 0 0 0.5px #e0e0e0, 0 0 1.2px #e0e0e0, 0 0 2.3px #e0e0e0;
    --neon-brilho-super-suave-suave: 0 0 0.05px #e0e0e0, 0 0 0.1px #e0e0e0, 0 0 0.15px #e0e0e0, 0 0 0.2px #e0e0e0, 0 0 0.25px #e0e0e0;
    --contorno-texto: -0.5px -0.5px 0 #000, 0.5px -0.5px 0 #000, -0.5px 0.5px 0 #000, 0.5px 0.5px 0 #000;
    --cinza-luminoso: rgba(224, 224, 224, 0.85);
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-cosmic);
    color: var(--cinza-luminoso);
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    color: var(--neon-branco);
    text-shadow: var(--neon-brilho-suave-05);
    filter: none;
}

p, .lead {
    color: var(--neon-branco);
    filter: none;
    opacity: 0.9;
}

/* Seções Hero Base */
.hero-section,
.ecommerce-hero,
.apps-hero,
.financeiro-hero,
.web-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

/* Project Hero Específico */
.project-hero {
    position: relative;
    min-height: 80vh;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 100px;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    z-index: 1;
}

.project-hero .container {
    position: relative;
    z-index: 2;
}

.project-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.project-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* About Section Desktop */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 260px;
}

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

.about-section .about-image img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    box-shadow: var(--neon-brilho);
    transition: all 0.4s ease;
}

.about-section .content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.about-section .lead {
    text-align: justify;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-section .buttons-wrapper {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.about-section .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.about-section .feature-list {
    margin-top: 2rem;
}

.about-section .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.4);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-section .feature-item:hover {
    background: rgba(26, 26, 46, 0.6);
    transform: translateX(10px);
}

.about-section .feature-item i {
    font-size: 2.5rem;
    color: var(--neon-branco);
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.about-section .feature-item:hover i {
    transform: scale(1.1);
    text-shadow: var(--neon-brilho-super-suave-suave);
}

.about-section .feature-item h4 {
    color: var(--neon-branco);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.about-section .feature-item p {
    color: var(--neon-cinza);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Estilo para a imagem do hero */
.erp-image-container {
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    max-width: 95%;
    margin: 0 auto;
}

.erp-image {
    width: 100%;
    height: auto;
    transform: rotateY(-15deg) scale(1);
    transition: all 0.5s ease;
    border-radius: 0;
    filter: none;
}

.erp-image-container:hover .erp-image {
    transform: rotateY(0deg) scale(1.05);
    box-shadow: none;
    filter: none;
}

/* Estilo para a imagem do app */
.app-image-container {
    position: relative;
    perspective: 800px;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    max-width: 80%;
    margin: 0 auto;
}

.app-image {
    width: 100%;
    height: auto;
    transform: rotateY(-15deg) scale(0.9);
    transition: all 0.5s ease;
    border-radius: 0;
    filter: none;
}

.app-image-container:hover .app-image {
    transform: rotateY(0deg) scale(1);
    box-shadow: none;
    filter: none;
}

/* Cards */
.card,
.gallery-card,
.feature-item,
.testimonial-card {
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 224, 224, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card:hover,
.gallery-card:hover,
.feature-item:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-brilho);
    background: rgba(26, 26, 46, 0.6);
}

/* Estilo específico para cards de galeria */
.gallery-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
}

.gallery-card i {
    font-size: 2.5rem;
    color: var(--neon-cinza);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.gallery-card:hover i {
    transform: scale(1.1);
    text-shadow: var(--neon-brilho);
}

.gallery-card h4 {
    color: var(--neon-cinza);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.gallery-card p {
    color: var(--cinza-luminoso);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Cards com imagens */
.gallery-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.03);
    box-shadow: var(--neon-brilho-suave);
}

.card-content {
    margin-top: 1.5rem;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--neon-branco);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: var(--neon-brilho-suave);
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card li {
    color: var(--neon-cinza);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.card li i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    color: var(--neon-branco);
    transition: all 0.3s ease;
}

.card:hover li {
    color: var(--neon-branco);
    transform: translateX(5px);
}

.card:hover li i {
    color: var(--neon-branco);
    text-shadow: var(--neon-brilho);
}

/* Responsividade dos cards */
@media (max-width: 768px) {
    .card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .card li {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .card {
        padding: 1.2rem;
    }
    
    .card-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .card li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Quando a página for rolada */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 0.5rem 0;
}

/* Marca da navbar (logo) */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand svg {
    width: 150px;
    height: auto;
    max-width: 100%;
}

/* Estilo dos links */
.navbar-dark .navbar-nav .nav-link {
    color: var(--neon-cinza) !important;
    text-shadow: var(--contorno-texto);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

/* Estilos para as bandeiras */
.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 5px;
    vertical-align: middle;
}

.navbar .dropdown-menu {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .dropdown-item {
    color: var(--neon-cinza);
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--neon-branco);
}

.navbar .dropdown-item img {
    margin-right: 8px;
}

/* Footer */
footer {
    background: linear-gradient(45deg, rgba(0,0,0,0.95), rgba(20,20,20,0.95));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--spacing-lg) 0;
}

footer h5 {
    color: var(--neon-cinza);
    text-shadow: none;
    font-weight: 600;
    letter-spacing: 1px;
}

footer p {
    color: var(--cinza-luminoso);
    text-shadow: none;
    opacity: 0.9;
}

/* Botões */
.btn {
    background: rgba(0, 0, 0, 0.8);
    color: var(--neon-cinza);
    border: 1px solid var(--neon-cinza);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-shadow: none;
}

.btn:hover {
    background: var(--neon-cinza);
    color: #000;
    box-shadow: 0 0 15px var(--neon-cinza);
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 1200px) {
    :root {
        --spacing-xl: 6rem;
        --spacing-lg: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section .container h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .container p {
        font-size: 1.1rem;
    }
    
    .erp-image {
        transform: rotateY(0deg);
        margin-top: 2rem;
    }
    
    .erp-image-container:hover .erp-image {
        transform: scale(1.05);
    }

    .app-image-container {
        max-width: 90%;
    }
    
    .app-image {
        transform: rotateY(-10deg) scale(0.95);
    }

    .about-section .about-image {
        min-height: 300px;
        margin-bottom: 2rem;
    }

    .about-section .content-wrapper {
        padding: 1rem 0;
    }

    .about-section .lead {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }
    
    .hero-section,
    .about-section,
    .project-hero,
    .apps-hero,
    .ecommerce-hero,
    .financeiro-hero,
    .web-hero {
        min-height: auto;
        padding: 30px 0;
        margin-top: 80px;
    }
    
    .navbar-brand svg {
        width: 120px;
    }
    
    .hero-section h1,
    .about-section h1,
    .project-hero h1,
    .apps-hero h1,
    .ecommerce-hero h1,
    .financeiro-hero h1,
    .web-hero h1 {
        font-size: 2.5rem;
    }

    .app-image-container {
        max-width: 100%;
    }
    
    .app-image {
        transform: rotateY(0deg) scale(1);
    }

    .about-section {
        padding: 80px 0;
    }

    .about-section .about-image {
        min-height: 250px;
    }

    .about-section .buttons-wrapper {
        flex-direction: column;
    }

    .about-section .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 1.5rem;
        --spacing-md: 1rem;
    }
    
    .hero-section .container h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .container p {
        font-size: 1rem;
    }
    
    .navbar-brand svg {
        width: 100px;
    }

    .app-image-container {
        max-width: 100%;
    }
    
    .app-image {
        transform: rotateY(0deg) scale(1);
    }

    .about-section {
        padding: 60px 0;
    }

    .about-section .about-image {
        min-height: 200px;
    }
}

/* Efeitos e Animações */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.6s ease;
}

.scale-in.active {
    transform: scale(1);
    opacity: 1;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    background: #20ba57;
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    color: var(--neon-cinza);
    padding: 15px 0;
    z-index: 999;
    border-top: 1px solid rgba(224, 224, 224, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

/* Efeito de Glass Morphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Efeito de Neon Border */
.neon-border {
    position: relative;
}

.neon-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cinza), transparent);
    z-index: -1;
    border-radius: inherit;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Efeito de Estrelas */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.star {
    position: absolute;
    background: var(--neon-cinza);
    border-radius: 50%;
    animation: twinkle 4s infinite;
    will-change: transform;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de Vagalumes */
.fireflies {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.firefly {
    position: absolute;
    background: var(--neon-cinza);
    border-radius: 50%;
    box-shadow: var(--neon-brilho);
    opacity: 0.8;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

@keyframes pulse {
    0% {
        opacity: 0.2;
        box-shadow: 0 0 5px var(--neon-cinza),
                    0 0 10px var(--neon-cinza),
                    0 0 15px var(--neon-cinza);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--neon-cinza),
                    0 0 20px var(--neon-cinza),
                    0 0 30px var(--neon-cinza);
    }
}

/* Seção Portfólio */
.portfolio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

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

/* Carrossel de Portfólio */
#portfolioCarousel {
    margin: 0 -15px;
    position: relative;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#portfolioCarousel:hover .carousel-control-prev,
#portfolioCarousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Responsividade do Carrossel */
@media (max-width: 768px) {
    #portfolioCarousel {
        display: block !important;
        margin: 0;
    }

    .carousel-inner {
        display: flex !important;
        flex-direction: column !important;
        transform: none !important;
    }

    .carousel-item {
        display: block !important;
        margin-bottom: 2rem;
        opacity: 1 !important;
        transform: none !important;
        position: relative !important;
        width: 100% !important;
    }

    .carousel-item.active {
        display: block !important;
    }

    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none !important;
    }

    /* Mostra os itens em sequência */
    .portfolio-section .row {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .portfolio-item {
        margin-bottom: 0;
        height: auto;
    }

    .portfolio-item img {
        height: 250px;
        object-fit: cover;
    }

    .portfolio-content {
        position: relative;
        transform: none;
        background: rgba(0, 0, 0, 0.9);
    }

    .portfolio-item:hover img {
        transform: none;
    }
}

@media (max-width: 576px) {
    .portfolio-section .row {
        gap: 1.5rem;
    }

    .portfolio-item img {
        height: 200px;
    }

    .portfolio-content {
        padding: 15px;
    }

    .portfolio-content h3 {
        font-size: 1.2rem;
    }

    .portfolio-content p {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    overflow: visible;
    padding: 80px 0;
}

#testimonialsCarousel {
    padding: 40px 20px;
    overflow: visible;
}

.carousel-inner {
    overflow: visible;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 224, 224, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 10px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-brilho);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--neon-cinza);
}

.testimonial-card h5 {
    color: var(--neon-cinza);
    font-size: 1.2rem;
    margin: 0;
}

.testimonial-card small {
    color: var(--cinza-luminoso);
    opacity: 0.8;
    font-size: 0.9rem;
}

.testimonial-card p {
    color: var(--cinza-luminoso);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Controles do Carrossel */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    margin: 0 -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    #testimonialsCarousel {
        padding: 20px 0;
    }

    .testimonial-card {
        padding: 20px;
        margin: 10px 0;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        min-height: 200px;
        padding: 15px;
    }

    .testimonial-card h5 {
        font-size: 1.1rem;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }
}

/* Services Section */
.services-section {
    position: relative;
    overflow: visible;
    padding: 80px 0;
    margin-top: 100px;
}

.services-section .card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(26, 26, 46, 0.4);
}

.services-section .card i {
    font-size: 3rem;
    color: var(--neon-cinza);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.services-section .card:hover i {
    transform: scale(1.1) rotate(10deg);
    text-shadow: var(--neon-brilho);
}

.services-section .card-title {
    color: var(--neon-cinza);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.services-section .card-text {
    color: var(--cinza-luminoso);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services-section .btn {
    background: transparent;
    border: 1px solid var(--neon-cinza);
    color: var(--neon-cinza);
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-section .btn:hover {
    background: var(--neon-cinza);
    color: #000;
    box-shadow: var(--neon-brilho);
}

/* Responsividade dos Serviços */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-section .card {
        padding: 2rem 1.5rem;
    }

    .services-section .card i {
        font-size: 2.5rem;
    }

    .services-section .card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .services-section .card {
        padding: 1.5rem 1rem;
    }

    .services-section .card i {
        font-size: 2rem;
    }

    .services-section .card-title {
        font-size: 1.2rem;
    }

    .services-section .card-text {
        font-size: 0.9rem;
    }
}

/* Botões do Hero */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--neon-cinza);
    background: transparent;
    color: var(--neon-cinza);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-shadow: var(--neon-brilho-suave-05);
    text-decoration: none !important;
    z-index: 1;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-cinza);
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-btn:hover {
    color: #000;
    text-shadow: none;
    box-shadow: var(--neon-brilho);
}

.hero-btn:hover::before {
    left: 0;
}

.hero-btn.outline-light {
    border-color: rgba(224, 224, 224, 0.5);
    color: rgba(224, 224, 224, 0.8);
}

.hero-btn.outline-light:hover {
    border-color: var(--neon-cinza);
    color: #000;
}

/* Responsividade do Hero */
@media (max-width: 1200px) {
    .web-hero {
        padding-top: 100px;
    }

    .web-hero h1 {
        font-size: 2.8rem;
    }

    .web-hero .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .web-hero {
        padding-top: 90px;
        min-height: 90vh;
    }

    .web-hero h1 {
        font-size: 2.5rem;
    }

    .hero-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .web-hero {
        padding-top: 80px;
        text-align: center;
    }

    .web-hero h1 {
        font-size: 2.2rem;
    }

    .web-hero .lead {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .web-hero {
        padding-top: 70px;
        min-height: 80vh;
    }

    .web-hero h1 {
        font-size: 1.8rem;
    }

    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Cards de Depoimentos */
.testimonial-card {
    background: rgba(26, 26, 46, 0.4);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.testimonial-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--neon-cinza);
    transition: all 0.4s ease;
}

.testimonial-card:hover img {
    border-color: var(--neon-cinza);
    box-shadow: var(--neon-brilho-suave);
    transform: scale(1.05);
}

.testimonial-card h5 {
    color: var(--neon-cinza);
    font-size: 1.2rem;
    margin: 0;
    text-shadow: var(--neon-brilho-suave-05);
}

.testimonial-card p {
    color: var(--cinza-luminoso);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Responsividade dos Cards de Serviços e Depoimentos */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.2rem;
    }

    .testimonial-card img {
        width: 50px;
        height: 50px;
    }
}

/* Menu Mobile */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .navbar-brand svg {
        width: 120px;
        height: auto;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        margin-top: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        margin: 0.25rem 0;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 576px) {
    .navbar-brand svg {
        width: 100px;
        height: auto;
    }
}

/* Formulário de Contato */
#contactForm {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#contactForm .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--neon-cinza);
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

#contactForm .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-cinza);
    box-shadow: 0 0 10px rgba(224, 224, 224, 0.2);
    color: var(--neon-branco);
}

#contactForm .form-control::placeholder {
    color: rgba(224, 224, 224, 0.6);
}

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

#contactForm .btn-primary {
    background: transparent;
    border: 2px solid var(--neon-cinza);
    color: var(--neon-cinza);
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#contactForm .btn-primary:hover {
    background: var(--neon-cinza);
    color: #000;
    box-shadow: 0 0 15px rgba(224, 224, 224, 0.3);
}

/* Responsividade do Formulário */
@media (max-width: 768px) {
    #contactForm {
        padding: 1.5rem;
    }

    #contactForm .form-control {
        padding: 0.7rem 0.9rem;
        font-size: 0.95rem;
    }

    #contactForm textarea.form-control {
        min-height: 120px;
    }

    #contactForm .btn-primary {
        padding: 0.7rem 1.8rem;
        font-size: 1rem;
        width: 100%;
    }

    #formMessage {
        margin-top: 1rem;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    #contactForm {
        padding: 1.2rem;
    }

    #contactForm .form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    #contactForm textarea.form-control {
        min-height: 100px;
    }

    #contactForm .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }

    #formMessage {
        margin-top: 0.8rem;
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}

/* Partículas Luminosas */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
    animation: float 15s infinite linear;
    opacity: 0;
}

.particle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) rotate(360deg);
        opacity: 0;
    }
}

/* Ajuste para elementos sobrepostos */
section, footer {
    position: relative;
    z-index: 2;
}

/* Efeito de Cometa */
.comet {
    position: fixed;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform-origin: left center;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    filter: blur(0.5px);
    animation: comet 2s linear infinite;
}

.comet::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.9);
}

.comet::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

@keyframes comet {
    0% {
        transform: translate(-200px, -200px) rotate(45deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(calc(100vw + 200px), calc(100vh + 200px)) rotate(45deg);
        opacity: 0;
    }
}

/* Ajuste para múltiplos cometas */
.comet:nth-child(1) {
    animation-delay: 0s;
}

.comet:nth-child(2) {
    animation-delay: 1s;
}

.comet:nth-child(3) {
    animation-delay: 2s;
}

.comet:nth-child(4) {
    animation-delay: 3s;
}

.comet:nth-child(5) {
    animation-delay: 4s;
}

/* Seção de Política de Privacidade */
.privacy-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    color: var(--neon-cinza);
    padding: 80px 0;
}

.privacy-content {
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--neon-brilho-suave);
}

.privacy-content h2 {
    color: var(--neon-branco);
    font-size: 1.8rem;
    margin-top: 2rem;
    text-shadow: var(--neon-brilho-suave);
}

.privacy-content h3 {
    color: var(--neon-branco);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    text-shadow: var(--neon-brilho-suave-05);
}

.privacy-content p {
    color: var(--cinza-luminoso);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-content ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content ul li {
    color: var(--cinza-luminoso);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-content ul li::before {
    content: '•';
    color: var(--neon-branco);
    position: absolute;
    left: 0;
    text-shadow: var(--neon-brilho-suave);
}

/* Responsividade da Seção de Privacidade */
@media (max-width: 768px) {
    .privacy-section {
        padding: 60px 0;
    }

    .privacy-content {
        padding: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.6rem;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .privacy-section {
        padding: 40px 0;
    }

    .privacy-content {
        padding: 1.5rem;
    }

    .privacy-content h2 {
        font-size: 1.4rem;
    }

    .privacy-content h3 {
        font-size: 1.1rem;
    }

    .privacy-content p,
    .privacy-content ul li {
        font-size: 0.95rem;
    }
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

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

.value-item i {
    font-size: 2rem;
    color: var(--neon-ciano);
}

.value-item h5 {
    color: var(--neon-ciano);
    margin-bottom: 0.5rem;
}

.value-item p {
    margin-bottom: 0;
    opacity: 0.8;
}

.about-section h3 {
    color: var(--neon-ciano);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.about-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--neon-ciano);
}

.mission-vision-card {
    background: rgba(26, 26, 46, 0.4);
    padding: 2.5rem;
    border-radius: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 375px;
}

.mission-vision-card:hover {
    background: rgba(26, 26, 46, 0.6);
    transform: translateY(-5px);
    border-color: var(--neon-ciano);
}

.mission-vision-card h3 {
    color: var(--neon-ciano);
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.mission-vision-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--neon-ciano);
}

.mission-vision-card .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    flex-grow: 1;
}

.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.about-section .about-image {
    margin-bottom: 2rem;
}

.about-section h2 {
    margin-top: 2rem;
}

.about-section .lead {
    margin-bottom: 2.5rem;
}

.about-section .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-section .btn:hover {
    background: rgba(26, 26, 46, 0.6);
    transform: translateY(-2px);
}

.about-section .btn-primary {
    background: rgba(26, 26, 46, 0.4);
    border-color: var(--neon-ciano);
    color: var(--neon-ciano);
}

.about-section .btn-primary:hover {
    background: var(--neon-ciano);
    color: #000;
}

.about-section .btn-outline-light {
    background: rgba(26, 26, 46, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--neon-cinza);
}

.about-section .btn-outline-light:hover {
    background: var(--neon-cinza);
    border-color: var(--neon-cinza);
    color: #000;
}

/* Responsividade */
@media (max-width: 768px) {
    .mission-vision-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
        min-height: auto;
    }

    .mission-vision-card .lead {
        font-size: 1rem;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-section h2 {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .mission-vision-card {
        padding: 1.5rem;
    }

    .about-section .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .about-section {
        padding: 60px 0;
    }
}