@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* ==============================
   RESET BÁSICO
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ==============================
   VARIÁVEIS DE TEMA
============================== */
:root {
    --primary-blue: #0c69b2;
    --primary-blue-dark: #004b86;

    --light-bg: #f8f8f8;
    --lighter-bg: #eaeaea;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-color: rgba(204, 204, 204, 0.8);

    --text-primary: #222222;
    --text-secondary: #555555;

    --secondary-glow: #8a2be2;
    --tertiary-glow: #01142e;
    --blue-glow: #1e90ff;
    --dark-blue-glow: #003366;

    --floating-random-text: #318adf;
    --primary-blue-royal: #1577da;
    --primary-pink: #ff2cdf;
    --primary-purple: #8a2be2;
    --darker-bg: #e2e2e2;
}

body {
    background: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ==============================
   CARROSSEL
============================== */
.carousel-container {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    top: 60px;
    transition: background-color 0.5s ease-in-out;
}

/* Cor de fundo por traz do carrossel */
.carousel-container:has(.carousel-wrapper img[alt="Imagem 1"][class="active"]) {
    background-color: #001F52;
}

.carousel-container:has(.carousel-wrapper img[alt="Imagem 2"][class="active"]) {
    background-color: #212022;
}

.carousel-container:has(.carousel-wrapper img[alt="Imagem 3"][class="active"]) {
    background-color: #465F1F;
}

.carousel-wrapper {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-images {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
}

.carousel-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-images img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    transition: background-color .3s ease;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots button.active {
    background-color: white;
}

/* ==============================
   BACKGROUND / EFEITOS
============================== */
.custom-bg {
    position: fixed;
    inset: 0;
    background: var(--light-bg);
    overflow: hidden;
    z-index: -5;
}

.custom-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center,
            #ffffff 0%,
            #ffffff 85%,
            rgba(138, 43, 226, 0.2) 90%,
            rgba(30, 144, 255, 0.2) 95%,
            transparent 100%);
    animation: gradientRotate 30s linear infinite;
    filter: blur(25px);
    mix-blend-mode: overlay;
    z-index: -5;
}

@keyframes gradientRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}


/* ==============================
   FUNDO / EFEITOS
============================== */
.custom-bg {
    position: fixed;
    inset: 0;
    background: var(--light-bg);
    overflow: hidden;
    z-index: -5;
}

.custom-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center,
            #ffffff 0%,
            #ffffff 85%,
            rgba(138, 43, 226, 0.2) 90%,
            rgba(30, 144, 255, 0.2) 95%,
            transparent 100%);
    animation: gradientRotate 30s linear infinite;
    filter: blur(25px);
    mix-blend-mode: overlay;
    z-index: -5;
}

@keyframes gradientRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}


/* Textura leve */
.noise-overlay {
    position: fixed;
    inset: 0;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0, 0, 0, 0.05) 2px, rgba(0, 0, 0, 0.05) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(0, 0, 0, 0.04) 2px, rgba(0, 0, 0, 0.04) 4px);
}

/* ==============================
   NAV / TOPO
============================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    transition: all .3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    transition: all .3s ease;
}

.mobile-menu-button:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.hamburger {
    position: relative;
    width: 25px;
    height: 20px;
    margin: auto;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 1px;
    left: 0;
    transition: all .25s ease-in-out;
    transform-origin: center;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.mobile-menu-button.active .hamburger span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
    background: var(--primary-blue);
}

.mobile-menu-button.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -25px;
}

.mobile-menu-button.active .hamburger span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
    background: var(--primary-blue);
}

/* Lateral mobile */
.mobile-menu {
    position: fixed;
    top: 86px;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: calc(100vh - 86px);
    background: var(--lighter-bg);
    backdrop-filter: blur(15px);
    border-left: 2px solid var(--border-color);
    z-index: 9999;
    transition: right .4s cubic-bezier(.23, 1, .32, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.mobile-menu-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
}

.mobile-menu-logo::before {
    content: '>';
    margin-right: .5rem;
    color: var(--primary-blue);
    transition: all .3s ease;
}

.mobile-menu-logo::after {
    content: '_';
    animation: blink 1s infinite;
    color: var(--text-primary);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.mobile-menu-nav {
    padding: 0;
    flex-grow: 1;
}

.mobile-menu-nav ul {
    list-style: none;
}

.mobile-menu-nav li {
    margin: 0;
}

.mobile-menu-nav a {
    display: block;
    padding: 1.5rem 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: all .3s ease;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-nav a:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.02);
    padding-left: 3rem;
}

.mobile-menu-nav a::before {
    content: '>';
    position: absolute;
    left: 2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all .3s ease;
    color: var(--primary-blue);
}

.mobile-menu-nav a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-nav li:last-child a {
    border-bottom: none;
}

.mobile-menu-cta {
    padding: 2rem;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border-color);
}

.custom-button {
    display: flex;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--light-bg);
    padding: 10px 10px;
    border: none;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all .3s ease;
    width: 150px;
    text-align: center;
    border-radius: 10px;
    font-size: .9rem;
}

.custom-button:hover {
    transform: translateY(-2px);
}

/* Animações do menu mobile (usadas via JS) */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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


.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: .9rem;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #2ea2db;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-glow));
    transition: width .3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-button-text {
    display: flex;
    color: var(--light-bg);
    padding-left: 15px;
    border: none;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all .3s ease;
    font-size: .75rem;
}

.nav-button-blue-svg,
.nav-button-white-svg {
    top: 0;
    left: 0;
    margin-top: 5px;
    margin-right: 10px;
    height: 30px;
    width: auto;
    object-fit: cover;
    transform: translateX(-10px);
    z-index: 1;
    pointer-events: none;
}

/* ==============================
   HERO
============================== */
.hero {
    padding: 130px 0px 100px 0px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-svg {
    top: 0;
    left: 0;
    height: 250px;
    width: auto;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

@media (min-width: 1100px) {
    .hero-svg {
        height: 250px;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin: 0 auto 3rem;
    margin-top: 25px;
    max-width: 800px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    letter-spacing: 1px;
    text-decoration: none;
    background: linear-gradient(135deg, #197fe6, #104E8B);
    color: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(12, 105, 178, .8), 0 0 26px rgba(138, 43, 226, .35);
}

/* ==============================
   about / CARDS
============================== */
.about {
    background: #d9e2ec;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all .4s ease;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 70px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
}


.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 30px;
    padding-bottom: 40px;

}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 0 95px;
}

.about-card {
    background: var(--card-bg);
    padding: 2rem;
    position: relative;
    transition: all .4s ease;
    border-radius: 20px;
    min-height: 300px;
    align-items: center;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card:hover::before {
    opacity: 0.06;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    box-shadow: 0 0 15px rgba(12, 105, 178, .30), 0 0 18px rgba(138, 43, 226, .25);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0481ce;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ==============================
   ANIMAÇÃO 
============================== */
.number-counter {
    padding-bottom: 50px;
}

.number-counter-container {
    padding-bottom: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.number-counter-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.number-counter-item {
    display: flex;
    position: relative;
    flex-direction: column;
    padding-bottom: 0px;
    transition: transform .3s ease;
    justify-content: last baseline;
}

.number-counter-item:hover {
    transform: translateY(-5px);
}

.number-counter-number {
    font-size: 6rem;
    font-weight: 900;
    color: #000;
    background: linear-gradient(135deg, var(--primary-blue-royal), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, .3));
}

.number-counter-label {
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}



/* ==============================
   details / CARDS
============================== */
.details {
    padding: 60px 20px;
}

.details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.details-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0481ce;
    position: relative;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.details-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, rgb(58, 189, 250), rgb(50, 86, 204));
    border-radius: 2px;
}

.details-text p {
    margin-bottom: 1.3rem;
    text-align: justify;
    color: var(--text-primary);
    background-color: #fff;
    box-shadow: 0px 0px 10px 10px #fff;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Cards abaixo do slider */
.details-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 10px auto 0;
    align-items: start;
}

/* Texto da segunda linha */
.details-text-bottom p {
    margin-bottom: 1.3rem;
    text-align: justify;
    color: var(--text-primary);
    background-color: #fff;
    box-shadow: 0px 0px 10px 10px #fff;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Container dos novos cards */
.new-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: -150px;
    gap: 20px;
}

/* Estilo dos novos cards */
.new-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0481ce;
    margin-bottom: 10px;
}

.new-card p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.new-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .details-text {
        margin-bottom: -90px;
    }

    .details-container {
        margin-bottom: 90px;
        grid-template-columns: 1fr;
    }

    .details-slider {
        margin-top: 20px;
    }

    .details-bottom {
        grid-template-columns: 1fr;
    }

    .new-cards-container {
        margin-top: -20px;
        grid-template-columns: 1fr;
    }
}

/* ==============================
   contact
============================== */
.contact {
    text-align: center;
    position: relative;
    padding-top: 50px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-glow));
    box-shadow: 0 0 10px rgba(12, 105, 178, .35), 0 0 12px rgba(138, 43, 226, .25);
}

.cards-contact-container {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 200px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 -10px 10px -5px #fff;
    padding-bottom: 50px;
}

.cards-contact {
    display: flex;
    text-align: center;
    white-space: nowrap;
    align-items: center;
    flex-direction: column;
    width: 200px;
    height: 150px;
    border-radius: 30%;
}

.cards-contact p {
    margin-bottom: 1.3rem;
    text-align: center;
    color: var(--text-primary);
    text-align: justify;
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .cards-contact-container {
        flex-direction: column;
        margin-bottom: -80px;
        gap: 40px;
    }
}

.container-about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 70px;
}

/* ==============================
   FOOTER
============================== */
.footer {
    padding: 30px 2rem 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    background: #343A40;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom {
    color: #fff;
    font-size: .9rem;
}

.footer-bottom p {
    margin: .5rem 0;
}

.footer-credit {
    font-size: .85rem;
    opacity: .8;
    margin-top: .5rem;
}

.footer-credit a {
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
    font-weight: 600;
}

.footer-contract {
    font-size: .85rem;
    opacity: .8;
    margin-top: .5rem;
}

.footer-contract a {
    color: #39B6F7;
    text-decoration: none;
    transition: all .3s ease;
    font-weight: 600;
    border: none;
    outline: none;
}

.footer-contract a:hover,
.footer-credit a:hover {
    color: #a5dbff;
    text-shadow: 0 0 10px #a5dbff;
}

.footer-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-social a img {
    width: 50px;
    height: 50px;
    margin-bottom: -5px
}

/* ==============================
   RESPONSIVO
============================== */
@media (min-width: 1100px) {
    .mobile-menu-button {
        display: none !important;
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .nav-top {
        flex: 0 0 auto;
    }

    .nav-links {
        flex: 1;
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 0 2rem;
        max-width: none;
    }

    .nav-links a {
        padding: 0;
        border-bottom: none;
        font-size: .9rem;
    }

    .nav-links a:hover {
        background: none;
        transform: none;
        padding-left: 0;
    }

    .nav-links a::before {
        display: none;
    }

    .nav-button-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
        clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
        height: 60px;
        margin-bottom: -1px;
        text-decoration: none;
    }

    .nav-button-container>p {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        width: 230px;
    }

    .nav-button-blue-svg {
        display: none;
    }

    .custom-button {
        width: auto;
        max-width: none;
    }
}

@media (max-width: 1100px) {
    .about-grid {
        margin: 0;
    }

    .number-counter-grid {
        flex-direction: column;
        justify-content: center;
    }

    .mobile-menu-button {
        display: block !important;
    }

    .nav-links {
        display: none;
    }

    .nav-button-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        margin-bottom: -1px;
        margin: 10px 0;
        margin-left: 20px;
        border-radius: 5px;
        text-decoration: none;
    }

    .nav-button-container>p {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: row;
        width: auto;
        padding: 20px 0;
        padding-right: 20px;
        margin-left: -10px;
        height: 30px;
    }

    .nav-button-text {
        color: var(--text-secondary);
    }

    .nav-button-blue-svg {
        height: 25px;
        width: auto;
        margin-left: 10px;
    }

    .nav-button-white-svg {
        display: none;
    }

    .mobile-menu-button {
        margin-right: 14px;
    }

    .hero-title {
        font-size: 2.5rem;
        font-family: 'Varela Round', sans-serif;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .number-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact {
        padding: 80px 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links a {
        padding: .5rem 1rem;
    }

    .footer-separator {
        display: none;
    }

    .footer {
        padding: 40px 1rem 30px;
    }

    .matrix-rain {
        display: none;
    }

    .particles {
        opacity: 0.5;
    }

    .particle {
        animation-duration: 30s !important;
    }

    .orb {
        filter: blur(100px);
        opacity: 0.3;
    }

    .data-streams,
    .noise-overlay {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 90%;
        max-width: none;
    }

    .mobile-menu-header {
        padding: 1.5rem;
    }

    .mobile-menu-nav a {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .mobile-menu-cta {
        padding: 1.5rem;
    }

    .custom-button {
        padding: .8rem 1.5rem;
        font-size: .7rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-nexus,
    .hero-flow {
        display: block;
        margin: 0;
    }
}

/* ==============================
   ANIMAÇÕES DE SCROLL / EFEITOS
============================== */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all .8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.data-streams {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -3;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue-royal), transparent);
    opacity: 0;
    animation: dataFlow 3s ease-in-out infinite;
}

.data-stream:nth-child(odd) {
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
    animation-duration: 4s;
}

@keyframes dataFlow {
    0% {
        width: 0;
        opacity: 0;
        transform: translateX(0);
    }

    50% {
        width: 300px;
        opacity: 0.8;
    }

    100% {
        width: 0;
        opacity: 0;
        transform: translateX(100vw);
    }
}

/* Acessibilidade: reduz movimento */
@media (prefers-reduced-motion: reduce) {

    .custom-gradient,
    .grid-lines,
    .grid-glow,
    .particle,
    .orb,
    .matrix-column,
    .data-stream {
        animation: none !important;
    }
}
