* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
      --nav-offset: 50px; /* ajuste fino */
    --primary: #ffffff;
    --secondary: #000000;
    --text: #efefef;
    --card-bg: #1a1a1a;
    --border-color: rgba(255, 255, 255, 0.15);
    --glass-bg: rgba(0, 0, 0, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent: #7b2dc3;
    --accent-gradient: linear-gradient(90deg, #7b2dc3, #9f4eed);
}
html{
  scroll-padding-top: var(--nav-offset);
  scroll-behavior: smooth; /* você já tem */
}

/* garante que qualquer alvo com id respeite o offset */
section[id]{
  scroll-margin-top: var(--nav-offset);
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--secondary);
    color: var(--text);
    line-height: 1.6;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    position: relative;
    overflow-x: hidden;
}

.container, .container2 { /* Adicionado container2 para a seção partners */
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}
.container { /* Adicionado container2 para a seção partners */
  margin-top: -50px !important;
}

section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .container { /* Adicionado container2 para a seção partners */
  margin-top: -20px !important;
}
}

h2 .bold-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}




/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 30px;
    transition: background-color 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease;
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.9);
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.navbar.scrolled {
    padding: 5px 30px;
    background: rgba(0, 0, 0, 0.8);
}

.navbar.scrolled::before {
    opacity: 0.8;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nav-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: width 0.25s ease, height 0.25s ease;
}

.navbar.scrolled .nav-logo img {
    width: 60px;
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
    /* REMOVIDO o pseudo-elemento do hover underline */
}

.nav-link:hover {
    color: #9f4eed;
    /* REMOVIDO o after */
}

.nav-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

.nav-toggle {
    display: none !important;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    z-index: 1001; /* Garantir que fique acima do menu */
}

.mobile-menu-footer {
    display: none;
}
@media (max-width: 768px) {
  .contact-section {
    background-image: none;
    background: linear-gradient(135deg, #0a0a0a 0%, #070707 100%);
  }
}
/* ========== MEDIA QUERY MOBILE ========== */
@media (max-width: 768px) {
    
    .navbar {
        padding: 15px 20px;
    }
    
    .navbar.scrolled {
        padding: 10px 20px;
    }
    
    .nav-logo img {
        width: 60px;
        height: 60px;
    }
    
    .navbar.scrolled .nav-logo img {
        width: 50px;
        height: 50px;
    }
    
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-toggle:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .nav-toggle i {
        transition: transform 0.3s ease;
    }
    
    .nav-toggle.active i {
        transform: rotate(90deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 100px 20px 100px;
        flex-direction: column;
        gap: 25px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        justify-content: flex-start;
        overflow-y: auto;
        z-index: 999;
        /* REMOVIDO o background-image */
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* REMOVIDO o overlay ::before que causava a borda */
    
    .nav-link {
        font-size: 1rem !important; /* AUMENTADO o tamanho da fonte */
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 600;
        /* REMOVIDO qualquer pseudo-elemento */
    }
    
    /* REMOVIDO completamente o hover underline */
    .nav-link:hover {
        color: #9f4eed;
    }
    
    .nav-divider {
        display: none;
    }
    
    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: auto;
        padding: 40px 20px 30px;
        margin-top: -20px !important;
        width: 100%;

    }
    
    .mobile-menu-footer .footer-logo {
        margin-bottom: -15px;
    }
    
    .mobile-menu-footer .footer-logo img {
        width: 60px;
        height: 60px;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-footer .footer-logo img:hover {
        opacity: 1;
    }
    
    .mobile-menu-footer .copyright-text {
        color: #666;
        font-size: 0.9rem; /* AUMENTADO o tamanho */
        text-align: center;
        line-height: 1.6;
        max-width: 280px;
        margin: 0 auto;
        font-weight: 400;
        letter-spacing: 0.5px;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
    .nav-link {
        font-size: 1.1rem; /* AUMENTADO também */
        padding: 12px 0;
    }
    
    .mobile-menu-footer {
        padding: 30px 15px 20px;
    }
    
    .mobile-menu-footer .copyright-text {
        font-size: 0.8rem; /* AUMENTADO */
        max-width: 250px;
    }
}


#blackhole-header {
    width: 100%;
    height: 440px;
    background-image: url('/assets/fundo-desktop.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    
    /* Animação de fade in */
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #blackhole-header {
        height: 350px;
        background-image: url('/assets/fundo.webp');
    }
}

@media (max-width: 480px) {
    #blackhole-header {
        height: 300px;
    }
}



/* ========== SERVIÇOS ========== */
#servicos {
    padding: 80px 0;
    position: relative;
    overflow: hidden;

    box-shadow: 0 -5px 5px -2px rgba(0, 0, 0, 0.9);
}
#servicos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}
#servicos h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.services-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px 20px 20px 20px;
    padding: 10px 10px 10px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 380px;
    height: 110px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: cardAppear 0.6s ease forwards;
}
.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
@keyframes cardAppear {
    to { opacity: 1; transform: translateY(0); }
}

.service-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 2;
    flex: 1;
    position: relative;
    height: 100%;
}
.service-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.service-description {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.3;
    max-width: 160px;
    white-space: normal;
}

.service-card-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding: 5px 0;
    border-radius: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    pointer-events: auto;
}
.service-card-hover span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-card-hover i {
    color: #7b2dc3;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}
.service-card:hover .service-description { opacity: 0.3; }
.service-card:hover .service-card-hover i { transform: translateX(5px); }
.service-card-hover:hover i { transform: translateX(8px); }

@media (max-width: 768px) {
    .service-card-hover {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-image {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(123, 45, 195, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.service-card:hover .service-card-image {
    border-color: #7b2dc3;
    transform: scale(1.05);
}
.service-card-image::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid rgba(123, 45, 195, 0.4);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 3;
}
@media (max-width: 768px) {
    .service-card-image::after {
        opacity: 1;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}
.service-card:hover::before { left: 100%; }

@media (max-width: 768px) {
    #servicos { padding: 60px 0; }
    #servicos h2 { font-size: 2rem; }
    
    .services-grid {
        gap: 10px;
    }
    
    .service-card {
        width: 100%;
        max-width: 350px;
        height: 100px;
        padding: 8px 8px 8px 20px;
    }
    .service-card-content h3 { font-size: 1.2rem; }
    .service-description {
        font-size: 0.65rem;
        max-width: 140px;
    }
    .service-card-image {
        width: 75px;
        height: 75px;
    }
}
@media (max-width: 480px) {
    .service-card { height: 95px; }
    .service-card-content h3 { font-size: 1.1rem; }
    .service-description {
        font-size: 0.6rem;
        max-width: 130px;
    }
    .service-card-image {
        width: 70px;
        height: 70px;
    }
    .service-card-image::after {
        left: -8px;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        border-right: 7px solid rgba(123, 45, 195, 0.4);
    }
}

/* ========== CLIENTES (FEEDBACKS) ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 992px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(27, 27, 27, 0.493));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.testimonial-card:hover { transform: translateY(-5px); }
.star-rating {
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}
.star-rating i {
    color: #ffffff;
    font-size: 18px;
}
.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.author-info p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========== PARTNERS (EMPRESAS PARCEIRAS) ========== */
#partners {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

@media (min-width: 769px) {
    #partners {
        background: radial-gradient(ellipse at 20% 30%, rgba(177, 177, 177, 0.1) 0%, transparent 60%), 
                    radial-gradient(ellipse at 80% 70%, rgba(29, 29, 29, 0.1) 0%, transparent 60%), 
                    var(--secondary);
    }
}

#partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

#partners h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

#partners .section-subtitle {
    text-align: center;
    margin-top: 30px !important;
    font-size: 1rem !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.partners-carousel-container {
    position: relative;
    width: 140%;
    overflow: hidden;
    padding: 20px 0;
    margin: 40px 0;
    margin-left: -200px;
}

.partners-carousel {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollCarousel 25s linear infinite;
    padding: 10px 0;
}

.partner-slide {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-150px * 10 - 30px * 10)); }
}

/* Responsividade da seção Partners */
@media (max-width: 1024px) {
    .partners-carousel-container {
        width: 140%;
        margin-left: -150px;
    }
    .partner-slide {
        width: 130px;
        height: 130px;
    }
    @keyframes scrollCarousel {
        100% { transform: translateX(calc(-130px * 10 - 30px * 10)); }
    }
}

@media (max-width: 768px) {
    #partners {
        padding: 40px 0;
    }
    #partners h2 {
        font-size: 2rem !important;
    }
    #partners .section-subtitle {
        font-size: 0.9rem !important;
        padding: 0 15px;
    }
    .partners-carousel-container {
        width: 160%;
        margin-left: -120px;
    }
    .partner-slide {
        width: 120px;
        height: 120px;
    }
    .partners-carousel {
        gap: 20px;
    }
    @keyframes scrollCarousel {
        100% { transform: translateX(calc(-120px * 10 - 20px * 10)); }
    }
}

@media (max-width: 480px) {
    .partners-carousel-container {
        width: 180%;
        margin-left: -100px;
    }
    .partner-slide {
        width: 100px;
        height: 100px;
    }
    .partners-carousel {
        gap: 15px;
    }
    @keyframes scrollCarousel {
        100% { transform: translateX(calc(-100px * 10 - 15px * 10)); }
    }
}

@media (max-width: 380px) {
    .partners-carousel-container {
        width: 200%;
        margin-left: -90px;
    }
    .partner-slide {
        width: 90px;
        height: 90px;
    }
    .partner-logo {
        padding: 12px;
    }
    @keyframes scrollCarousel {
        100% { transform: translateX(calc(-90px * 10 - 12px * 10)); }
    }
}
/* Remover efeito de zoom ao passar o mouse nas logos */
.partner-logo:hover {
    transform: none !important;
}
/* ========== SOBRE NÓS ========== */
.about {
    background: linear-gradient(135deg, #0a0a0a 0%, #070707 100%);
    position: relative;
}
.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/chess_background.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    box-shadow: inset 0 60px 90px rgba(0, 0, 0, 0.6), inset 0 -60px 90px rgba(0, 0, 0, 0.6);
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(0,0,0,0.8));
    z-index: 0;
}
.about .container {
    position: relative;
    z-index: 2;
}
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
}
.about-text {
    flex: 1;
}
.about-text h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 2.2rem;
}
@media (max-width: 992px) {
    .about-text h2 {
        text-align: center;
        font-size: 2rem;
    }
}
.about-text p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}
.about-image {
    flex: 1;
    text-align: center;
}
.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(123, 45, 195, 0.3));
}
.cta-container0 {
    display: flex;
    justify-content: flex-start;
    margin-top: 25px;
}
@media (max-width: 992px) {
    .cta-container0 {
        justify-content: center;
    }
}

/* ========== CONTATO ========== */
.contact-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #070707 100%);
    background-image: radial-gradient(circle at 15% 20%, rgba(144, 22, 243, 0.116) 0%, transparent 20%), 
                      radial-gradient(circle at 90% 70%, rgba(132, 0, 255, 0.096) 0%, transparent 20%);
    box-shadow: 0 -25px 50px rgba(0, 0, 0, 0.9);
}
.service-indicator {
    text-align: center;
    margin-bottom: 20px;
}
.service-indicator span {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(to right, rgba(123, 45, 195, 0.2), rgba(123, 45, 195, 0.1));
    border: 1px solid rgba(123, 45, 195, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text);
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.8;
}
.trust-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.trust-highlight span {
    font-size: 1rem;
    color: var(--text);
}
.trust-highlight span:first-child {
    color: #9f4eed;
}
.contact-info-container {
    background: rgba(0, 0, 0, 0.521);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
}
.contact-info-item i {
    color: #9f4eed;
    font-size: 1.5rem;
}
@media (max-width: 768px) {
    .contact-info-item span {
        font-size: 14px;
    }
    .contact-info-item i {
        font-size: 14px;
    }
}
.contact-benefits {
    list-style: none;
    max-width: 370px;
    margin: 40px auto;
}
.contact-benefit {
    position: relative;
    padding: 12px 0 12px 40px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-benefit::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

/* ========== BOTÕES CTA ========== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    color: #ffffff;
    background: radial-gradient(rgba(0, 0, 0, 0.06) 0.6px, transparent 0.7px) 0 0 / 6px 6px, 
                linear-gradient(180deg, #7b2dc3 0%, #581c91 100%);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 0 0 1px rgb(121, 51, 202), 0 0 10px rgba(154, 36, 201, 0.95), 0 8px 20px rgba(0, 0, 0, 0.25);
}
.cta-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    background: linear-gradient(180deg, rgb(206, 157, 255), rgba(0, 0, 0, 0.25)) border-box;
    -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.cta-button::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -120%;
    width: 40%;
    height: 200%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.15) 30%, 
                rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.15) 70%, transparent 100%);
    transform: skewX(-20deg);
    animation: shimmer 2.2s ease-in-out infinite;
    pointer-events: none;
}
.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.479), 0 0 22px rgba(0, 0, 0, 0.39), 0 10px 30px rgba(0, 0, 0, 0.18);
}
@keyframes shimmer {
    0% { left: -130%; }
    100% { left: 150%; }
}
.cta-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}
.main-cta-container {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

/* ========== GRAPHIC ELEMENTS ========== */
.graphic-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}
.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}
.ribbon-line {
    position: absolute;
    height: 2px;
    width: 150%;
    opacity: 0.3;
    transform: rotate(-25deg);
    top: 30%;
    left: -25%;
    animation: waveMove 15s linear infinite;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.ribbon-line::before,
.ribbon-line::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.ribbon-line.delay-1 { top: 60%; animation-delay: 5s; }
.ribbon-line.delay-2 { top: 80%; animation-delay: 10s; }
.ribbon-line.delay-3 { top: 40%; left: -30%; animation-delay: 3s; }
.ribbon-line.delay-4 { top: 70%; left: -20%; animation-delay: 8s; }
@keyframes waveMove {
    0% { left: -25%; }
    100% { left: 100%; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    padding: 100px 0 30px;
    background-color: #000000;
 
  min-height: 350px;
    box-shadow: 0 -25px 50px rgba(0, 0, 0, 0.9);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    border-radius: 8px;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.link-group {
    min-width: 150px;
}

.link-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
/* Reduzir espaçamento da seção de clientes */
#clientes {
    padding-top: 60px !important; /* Reduz de 100px para 40px */
    padding-bottom: 60px; /* Mantém o padding inferior */
}
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 100%;
    }
    
    .footer-tagline {
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-links {
        justify-content: center;
        gap: 40px;
        width: 100%;
    }
    
    .link-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: auto;
    }
    
    .link-title {
        text-align: center;
        width: 100%;
    }
    
    .footer-link {
        text-align: center;
        width: 100%;
    }
    
    .footer {
        min-height: auto;
        padding: 40px 0 20px;
    }
    
    .footer-bottom {
        text-align: center;
        width: 100%;
    }
    
    .copyright {
        text-align: center;
    }
}



/* ========== UTILITÁRIOS ========== */
html {
    scroll-behavior: smooth;
}
@media (max-width: 768px) {
  .contact-section {
    background-image: none;
    background: linear-gradient(135deg, #0a0a0a 0%, #070707 100%);
  }
}
.floating-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-wpp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #4a4a4a; /* Cinza médio */
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-wpp a:hover {
    background-color: #5a5a5a; /* Cinza um pouco mais claro no hover */
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-wpp svg {
    width: 32px;
    height: 32px;
}

/* Para telas menores */
@media (max-width: 768px) {
    .floating-wpp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-wpp a {
        width: 50px;
        height: 50px;
    }
    
    .floating-wpp svg {
        width: 28px;
        height: 28px;
    }
}
.nav-logo {
    margin-top: 5px;
}