:root {
    --black: #0D0D0D;
    --deep-purple: #8B00FF;
    --light-purple: #A855F7;
    --dark-gray: #1E1E1E;
    --light-gray: #F4F4F4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body{
    color: var(--light-gray);
    overflow-x: hidden;
    /* Padrão sutil de pontos + gradiente animado */
    background: #000000;
    --gap: 5em;
    --line: 1px;
    --color: #ffffff33;
  
    background-image: linear-gradient(
        -90deg,
        transparent calc(var(--gap) - var(--line)),
        var(--color) calc(var(--gap) - var(--line) + 1px),
        var(--color) var(--gap)
      ),
      linear-gradient(
        0deg,
        transparent calc(var(--gap) - var(--line)),
        var(--color) calc(var(--gap) - var(--line) + 1px),
        var(--color) var(--gap)
      );
    background-size: var(--gap) var(--gap);
}
::selection {
    background-color: #A855F7; /* Roxo vibrante */
    color: #F4F4F4; /* Branco ou cinza claro */
}

/* Animated gradient background */
/*.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(-45deg, var(--black), var(--dark-gray), var(--black), var(--dark-gray));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    opacity: 0.5;
} */

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

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: var(--light-purple);
    border-radius: 50%;
    opacity: 0.5;
    animation: float linear infinite;
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


/* Testimonials Section */
.testimonials {
    padding: 8rem 10%;
    text-align: center;
  }
  
  .testimonial-slider {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .testimonial-slider blockquote {
    background-color: rgba(30, 30, 30, 0.7);
    border-left: 5px solid var(--light-purple);
    padding: 1.5rem 2rem;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(244, 244, 244, 0.8);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 20px rgba(139, 0, 255, 0.05);
    transition: transform 0.3s;
  }
  
  .testimonial-slider blockquote span {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: var(--light-purple);
    font-style: normal;
  }
  
  /* Stats */
  .stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
  }
  
  .stats div {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.096);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    min-width: 180px;
  }
  
  .stats .count {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-purple);
    margin-bottom: 0.5rem;
  }
  
  .stats p {
    color: rgba(244, 244, 244, 0.7);
    font-size: 1.1rem;
  }
  
@keyframes float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

/* Dynamic Circle Navigation */
@keyframes girar{
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.fa-cog{
    animation: girar infinite linear 5s;
}
.circle-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(244, 244, 244, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot.active {
    background-color: var(--light-purple); /* isso deixa o dot roxo */
    transform: scale(1.3);
}


.nav-dot::after {
    content: attr(data-section);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-gray);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    white-space: nowrap;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 5rem;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--light-gray), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(168, 85, 247, 0.3); }
    100% { text-shadow: 0 0 20px rgba(168, 85, 247, 0.6); }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(244, 244, 244, 0.8);
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--deep-purple), var(--light-purple));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 0, 255, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--light-purple), var(--deep-purple));
    transition: left 0.5s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease-out 0.5s forwards;
}

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

.character-image {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(139, 0, 255, 0.3));
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
}
.character-image:active{
    cursor: not-allowed;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Floating 3D shapes */
.floating-shapes {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.5;
    animation: floatShape 15s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background-color: var(--deep-purple);
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background-color: var(--light-purple);
    bottom: 0;
    right: 0;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background-color: var(--light-gray);
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, 50px); }
    50% { transform: translate(0, 100px); }
    75% { transform: translate(-50px, 50px); }
}

/* Services Section */
.services {
    min-height: 100vh;
    padding: 8rem 10% 2rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    text-align: center;
    margin: 0 auto 5rem auto;
    font-size: 2.5rem;
    color: var(--light-gray);
    position: relative;
    display: block;
    width: fit-content;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--deep-purple), transparent);
}
.section-title2 {
    text-align: center;
    margin-bottom: 5rem;
    font-size: 2.5rem;
    color: var(--light-gray);
    position: relative;
    display: inline-block;
}

.section-title2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--deep-purple), transparent);
}

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

.service-card {
    background-color: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    opacity: 1;
    transform: none;
    box-shadow: 0 2px 10px rgba(139, 0, 255, 0.08);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--deep-purple), var(--light-purple), var(--deep-purple));
    z-index: -1;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 18px 40px rgba(139, 0, 255, 0.18), 0 2px 10px rgba(139, 0, 255, 0.08);
    z-index: 2;
}

.service-card:hover::before {
    opacity: 0.3;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-purple);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.service-card p {
    color: rgba(244, 244, 244, 0.7);
    line-height: 1.6;
    font-size: 1.1rem;
}

.service-card::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(168,85,247,0.5) 0%, rgba(139,0,255,0.7) 60%, transparent 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.5s;
    z-index: 0;
}
.service-card:hover::after {
    width: 400px;
    height: 400px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    transition: opacity 0.3s, transform 0.5s;
}
.service-card > * {
    position: relative;
    z-index: 1;
}

/* Interactive cursor effects */
.cursor-effect {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(168, 85, 247, 0.5);
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    z-index: 9999;
    transition: transform 0.1s;
}

/* Scroll animation */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-gray);
    font-size: 0.9rem;
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-down::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background-color: var(--light-gray);
    margin: 10px auto 0;
}

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

/* About Section */
.about {
    min-height: 100vh;
    padding: 8rem 10%;
    display: flex;
    align-items: center;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.about-image {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}
.about-image:active{
    cursor: not-allowed;
}
.about-content {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, var(--deep-purple), transparent);
}

.about p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(244, 244, 244, 0.8);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    min-height: 100vh;
    padding: 8rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 5rem;
}

.contact-info {
    flex: 1;
    opacity: 0;
    transform: translateY(50px);
    z-index: 1;
   
}

.contact-info.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, var(--deep-purple), transparent);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background-color: #1e1e1e79;
    border-radius: 15px;
    padding: 0.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #a855f71a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--light-purple);
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--light-gray);
}

.info-text p {
    color: rgba(244, 244, 244, 0.7);
}

.contact-form {
    flex: 1;
    background-color: #1e1e1eb9;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(168, 85, 247, 0.1);
    opacity: 0;
    transform: translateY(50px);
}

.contact-form.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.form-control {
    width: 100%;
    padding: 1rem;
    background-color: rgba(244, 244, 244, 0.1);
    border: 1px solid rgba(244, 244, 244, 0.1);
    border-radius: 8px;
    color: var(--light-gray);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--light-purple);
    background-color: rgba(168, 85, 247, 0.1);
}

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

.submit-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--deep-purple), var(--light-purple));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 0, 255, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--light-purple), var(--deep-purple));
    transition: left 0.5s;
    z-index: -1;
}

.submit-btn:hover::before {
    left: 0;
}
.about-content,
.about-image,
.contact-info,
.contact-form {
    opacity: 1;
    transform: none;
}

/* Footer */
.footer {
    padding: 3rem 10%;
    background-color: var(--black);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-gray);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--deep-purple);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(244, 244, 244, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--light-purple);
    transform: translateY(-3px);
}

.copyright {
    color: rgba(244, 244, 244, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1367px) {
    .about-image dotlottie-wc {
        width: 450px !important;
        height: 450px !important;
    }
}
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-container, .contact-container {
        gap: 3rem;
    }
    .about-image dotlottie-wc {
        width: 370px !important;
        height: 370px !important;
    }
    .about-content p{
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .hero-container, .about-container, .contact-container {
        flex-direction: column;
        
    }
    .character-image{
        display: none;
    }
    .hero{
        margin-top: 130px;
        height: auto;
    }
    .hero-content, .about-content, .contact-info {
        text-align: center;
    }
    .scroll-down{
        display: none;
    }
    .hero-image {
        max-width: 400px;
        margin-top: 3rem;
    }
    
    .about h2::after, .contact-info h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
    }
    
    .circle-nav {
        display: none;
    }
    .cursor-effect{
        display: none;
    }
    .services{
        padding-top: 50px;
    }
    #services{
        scroll-margin-top: 60px;
    }
    .about{
        padding-top: 50px;
        padding-bottom: 5rem;
    }
    #about{
        scroll-margin-top: 40px;
    }
    .contact{
        padding-top: 40px;
    }
    #contact{
        scroll-margin-top: 60px;
    }
    .testimonials{
        padding-top: 30px;
    }
    #testimonials{
        scroll-margin-top: 60px;
    }
    .about-image dotlottie-wc {
        width: 400px !important;
        height: 400px !important;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p, .about p {
        font-size: 1rem;
    }
    
    .section-title, .about h2, .contact-info h2 {
        font-size: 2rem;
    }
    
    .hero-image {
        max-width: 300px;
    }
}

/* HEADER MODERNO */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(1px);
    transition: box-shadow 0.3s, background 0.3s;
    box-shadow: none;
}
.main-header.scrolled {
    background: rgba(20, 20, 20, 0);
    box-shadow: 0 20px 20px -10px rgba(0, 0, 0, 0.295);
    /*         ↑  ↑    ↑     ↑
               |  |    |     └─ intensidade (opcional)
               |  |    └─ blur (desfoque)
               |  └─ deslocamento Y (20px para baixo)
               └─ deslocamento X (0px) */
               backdrop-filter: blur(5px);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 5%;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.logo-img {
    height: 38px;
    width: 38px;
    object-fit: contain;
}
.logo-text {
    font-family: "Bitcount Single", system-ui;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--light-purple);
    text-shadow: 0 2px 12px rgba(139,0,255,0.10);
}
.nav-desktop {
    display: flex;
    gap: 2.5rem;
}
.nav-desktop a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}
.nav-desktop a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--light-purple);
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -4px;
}
.nav-desktop a:hover {
    color: var(--light-purple);
}
.nav-desktop a:hover::after {
    width: 100%;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
}
.hamburger .line {
    width: 32px;
    height: 3px;
    background: var(--light-purple);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}
/* NAV MOBILE */
.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20,20,20,0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);
    z-index: 2050;
}
.nav-mobile.open {
    transform: translateX(0);
}
.nav-mobile a {
    color: var(--light-purple);
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.nav-mobile a:hover {
    color: var(--light-gray);
}
.close-btn {
    z-index: 99;
    position: absolute;
    background-color: red;
    top: 1.2rem;
    right: 2.2rem;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2101;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn .close-line:first-child {
    transform: rotate(45deg);
}
.close-btn .close-line:last-child {
    transform: rotate(-45deg);
}
@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}
@media (min-width: 993px) {
    .nav-mobile {
        display: none !important;
    }
}
/* ANIMAÇÃO HAMBURGUER PARA X */
.hamburger.active .line:first-child {
    transform: rotate(45deg) translate(2px, 1px);
}
.hamburger.active .line:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}
.hamburger .line:nth-child(2) {
    margin-top: 0;
}


/* From Uiverse.io by dovatgabriel */ 
.card svg {
    height: 25px;
  }
  
  .card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1E1E1E;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    height: 50px;
    width: 200px;
  }
  
  .card::before, .card::after {
    position: absolute;
    display: flex;
    align-items: center;
    width: 50%;
    height: 100%;
    transition: 0.25s linear;
    z-index: 1;
  }
  
  .card::before {
    content: "";
    left: 0;
    justify-content: flex-end;
    background-color: #8B00FF;
  }
  
  .card::after {
    content: "";
    right: 0;
    justify-content: flex-start;
    background-color: #A855F7;
  }
  
  .card:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  }
  
  .card:hover span {
    opacity: 0;
    z-index: -3;
  }
  
  .card:hover::before {
    opacity: 0.5;
    transform: translateY(-100%);
  }
  
  .card:hover::after {
    opacity: 0.5;
    transform: translateY(100%);
  }
  
  .card span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: whitesmoke;
    font-family: 'Fira Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    opacity: 1;
    transition: opacity 0.25s;
    z-index: 2;
  }
  
  .card .social-linke {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    height: 100%;
    color: whitesmoke;
    font-size: 24px;
    text-decoration: none;
    transition: 0.25s;
  }
  
  .card .social-linke svg {
    text-shadow: 1px 1px rgba(31, 74, 121, 0.7);
    transform: scale(1);
  }
  
  .card .social-linke:hover {
    background-color: rgba(249, 244, 255, 0.774);
    animation: bounce_613 0.5s linear;
  }
  /* ===== FORMULÁRIO DE CONTATO ===== */
.contact-form {
    display: grid;
    gap: 1.5rem;
}
#hamburgerBtn:focus {
    outline: none;
    box-shadow: none;
}
.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(244, 244, 244, 0.1);
    border: 1px solid rgba(244, 244, 244, 0.1);
    border-radius: 0.5rem;
    color: var(--light-gray);
    transition: var(--transition);
}

  @keyframes bounce_613 {
    40% {
      transform: scale(1.4);
    }
  
    60% {
      transform: scale(0.8);
    }
  
    80% {
      transform: scale(1.2);
    }
  
    100% {
      transform: scale(1);
    }
  }

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s;
}
.loader-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    animation: loader-bounce 1.2s infinite;
}
.loader-text {
    font-family: 'Bitcount Single', 'Inter', sans-serif;
    font-size: 2.5rem;
    color: var(--light-purple);
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 2px 16px rgba(168,85,247,0.25);
}
@keyframes loader-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}
.loader-hide {
    opacity: 0;
    pointer-events: none;
}



#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Menor que qualquer conteúdo interativo */
    pointer-events: none; /* Faz o container ignorar cliques */
  }
  #particles-js canvas {
    pointer-events: auto; /* Apenas o canvas responde ao mouse */
  }
  

  