:root {
    --primary-blue: #0f2e45;
    --deep-blue: #0b2234;
    --light-gray: #cfd6dc;
    --accent-gray: #9aa7b2;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-blue);
    color: var(--white);
}

.no-scroll {
    overflow: hidden;
}

/* LOADER INSTITUCIONAL */

.institutional-loader {
    position: fixed;
    inset: 0;
    background: #020b12;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.institutional-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    max-width: 400px;
}

.loader-logo {
    font-size: 1rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 40px;
}

.loader-status {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.loader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.loader-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #0078ff, #00b3ff);
    transition: width 0.2s ease;
}

.loader-percentage {
    font-size: 0.8rem;
    color: var(--accent-gray);
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
    background: radial-gradient(circle at 20% 30%, rgb(0, 0, 0), transparent 60%);
}

/* Camada animada */

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.03), transparent 60%);
    animation: moveBackground 12s ease-in-out infinite alternate;
}

@keyframes moveBackground {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    overflow: hidden;
}

.scroll-indicator::after {
    content: "";
    position: absolute;
    top: -40px;
    width: 100%;
    height: 40px;
    background: var(--white);
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% { top: -40px; }
    100% { top: 60px; }
}

/* Fundo com grid tecnológico sutil */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-content {
    position: relative;
    /*max-width: 900px;*/
    z-index: 2;
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--light-gray);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Autoridade */

.authority {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--accent-gray);
    margin-bottom: 3rem;
}

.authority span {
    border-left: 2px solid rgba(255,255,255,0.15);
    padding-left: 12px;
}

/* Botões */

.buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6e6e6;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.4);
    padding: 14px 28px;
    text-decoration: none;
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--white);
}

/* Indicador inferior */

.hero-footer {
    position: absolute;
    bottom: 40px;
    left: 8%;
    font-size: 0.85rem;
    color: var(--accent-gray);
    letter-spacing: 1px;
}

/* HEADER PREMIUM */

.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 8%;
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.main-header.scrolled {
    background: rgba(5, 15, 22, 0.85);
    padding: 15px 8%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    position: relative;
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.4);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* ========================= */
/* MENU MOBILE */
/* ========================= */

/* DESKTOP */

/* ========================= */
/* DESKTOP NAV */
/* ========================= */

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-desktop a {
    position: relative;
    text-decoration: none;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 0.85;
}

/* Hover elegante */

.nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 1px;
    background: var(--white);
    transition: width 0.35s cubic-bezier(.77,0,.18,1);
}

.nav-desktop a:hover {
    opacity: 1;
}

.nav-desktop a:hover::after {
    width: 100%;
}

/* ========================= */
/* CTA DO MENU */
/* ========================= */

.nav-desktop .nav-cta {
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.35);
    transition: all 0.35s ease;
    backdrop-filter: blur(4px);
}

.nav-desktop .nav-cta::after {
    display: none;
}

.nav-desktop .nav-cta:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ========================= */
/* EFEITO QUANDO SCROLL */
/* ========================= */

.main-header.scrolled .nav-desktop a {
    opacity: 0.75;
}

.main-header.scrolled .nav-desktop a:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }
}

/* ===================== */
/* HAMBURGER */
/* ===================== */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1200;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: white;
    transition: 0.4s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
}

/* ===================== */
/* MOBILE MENU */
/* ===================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: #020b12;
    transition: right 0.5s ease;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
}

.mobile-cta {
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.4);
}

/* ===================== */
/* OVERLAY */
/* ===================== */

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 1000;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* BLOQUEIO DE SCROLL */

.no-scroll {
    overflow: hidden;
}

/* RESPONSIVO */

@media (max-width: 992px) {

    .nav {
        position: fixed;
        inset: 0;
        background: #020b12;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateY(-100%);
        transition: transform 0.5s ease;
        z-index: 1000;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav a {
        font-size: 1.4rem;
        font-weight: 500;
    }

}

/* ===================================================== */
/* MEGA MENU SOLUÇÕES */
/* ===================================================== */

.has-mega {
    position: relative;
}

.nav-link-mega {
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    opacity: 0.85;
    transition: 0.3s ease;
}

.nav-link-mega:hover {
    opacity: 1;
}

/* MEGA MENU */

.mega-menu {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 900px;
    background: rgba(10, 15, 20, 0.95);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.05);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(.77,0,.18,1);
    z-index: 999;
}

.mega-menu.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-menu-container {
    display: flex;
    padding: 60px;
    gap: 60px;
}

.mega-menu-left {
    flex: 1;
}

.mega-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #9aa3af;
    display: block;
    margin-bottom: 20px;
}

.mega-menu-left h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mega-menu-left p {
    font-size: 0.95rem;
    color: #a8b0ba;
    line-height: 1.7;
}

.mega-menu-right {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mega-card {
    padding: 30px;
    text-decoration: none;
    background: linear-gradient(180deg, #161a22, #0f131a);
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.35s ease;
    color: white;
}

.mega-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.mega-card h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.mega-card p {
    font-size: 0.85rem;
    color: #9aa3af;
}

/* ===================================================== */
/* MOBILE SUBMENU */
/* ===================================================== */

.mobile-submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-submenu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
}

.mobile-submenu-content {
    display: none;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
    font-size: 1.2rem;
}

.mobile-submenu-content a {
    color: #cfd3da;
    text-decoration: none;
}

.mobile-submenu-content.active {
    display: flex;
}

/* MANIFESTO PREMIUM */

.manifesto {
    position: relative;
    padding: 180px 8%;
    background-color: #0b2234;
    overflow: hidden;
}

.manifesto-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgb(0, 0, 0), transparent 60%);
    animation: manifestoMove 18s ease-in-out infinite alternate;
}

@keyframes manifestoMove {
    0% { transform: translateX(-30px) translateY(0px); }
    100% { transform: translateX(30px) translateY(-20px); }
}

.manifesto-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.manifesto-header {
    margin-bottom: 60px;
}

.manifesto-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent-gray);
    display: inline-block;
    margin-bottom: 20px;
}

.manifesto h2 {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Linha estrutural animada */

.manifesto-line {
    width: 2px;
    height: 0;
    background: rgba(255,255,255,0.15);
    margin: 40px 0 60px 0;
    transition: height 1.2s ease;
}

.manifesto-line.active {
    height: 120px;
}

.manifesto-text p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 800px;
}

.manifesto-text .highlight {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 50px;
    position: relative;
}

.manifesto-text .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0%;
    height: 1px;
    background: var(--white);
    transition: width 1s ease;
}

.manifesto-text .highlight.active::after {
    width: 100%;
}

/* Reveal Animation */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ESCALA PREMIUM */

.scale {
    position: relative;
    padding: 180px 8%;
    background-color: #071a28;
    overflow: hidden;
}

.scale-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgb(0, 0, 0), transparent 60%);;
    animation: scaleMove 20s ease-in-out infinite alternate;
}

@keyframes scaleMove {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.scale-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.scale-header {
    text-align: center;
    margin-bottom: 80px;
}

.scale-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent-gray);
    display: inline-block;
    margin-bottom: 20px;
}

.scale h2 {
    font-size: 2.6rem;
    font-weight: 600;
}

.scale-line {
    height: 1px;
    width: 0%;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 100px auto;
    transition: width 1.5s ease;
}

.scale-line.active {
    width: 100%;
}

.scale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 60px;
}

.scale-item {
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.scale-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.scale-item h3 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.scale-item p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.7;
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ARQUITETURA PREMIUM */

.architecture {
    position: relative;
    padding: 180px 8%;
    background-color: #0e2739;
    overflow: hidden;
}

.architecture-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 60%, rgba(0,120,255,0.08), transparent 60%);
    animation: archMove 22s ease-in-out infinite alternate;
}

@keyframes archMove {
    0% { transform: translateX(-25px); }
    100% { transform: translateX(25px); }
}

.architecture-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.architecture-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px auto;
}

.architecture-line {
    height: 1px;
    width: 0%;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 100px auto;
    transition: width 1.5s ease;
}

.architecture-line.active {
    width: 100%;
}

.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

.architecture-card {
    position: relative;
    padding: 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transform-style: preserve-3d;
    transition: transform 0.4s ease, border 0.4s ease;
    overflow: hidden;
}

.architecture-card:hover {
    border-color: rgba(255,255,255,0.2);
}

.architecture-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.architecture-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.7;
}

/* Glow interno */

.card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,120,255,0.25), transparent 70%);
    top: -150px;
    left: -150px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.architecture-card:hover .card-glow {
    opacity: 1;
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* SETOR PREMIUM */

.sector {
    position: relative;
    padding: 180px 8%;
    background-color: #0c2536;
    overflow: hidden;
}

.sector-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,120,255,0.07), transparent 70%);
    animation: sectorMove 25s ease-in-out infinite alternate;
}

@keyframes sectorMove {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.sector-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.sector-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px auto;
}

/* Linha central estrutural */

.sector-divider {
    width: 1px;
    height: 0;
    background: rgba(255,255,255,0.1);
    margin: 0 auto 80px auto;
    transition: height 1.5s ease;
}

.sector-divider.active {
    height: 140px;
}

.sector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.sector-card {
    position: relative;
    padding: 60px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.sector-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
}

.sector-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.sector-card ul {
    list-style: none;
}

.sector-card ul li {
    font-size: 1rem;
    font-weight: 300;
    color: var(--light-gray);
    margin-bottom: 18px;
    position: relative;
    padding-left: 22px;
    transition: all 0.3s ease;
}

.sector-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--white);
    transition: transform 0.3s ease;
}

.sector-card ul li:hover {
    color: var(--white);
}

.sector-card ul li:hover::before {
    transform: scale(1.6);
}

/* Glow */

.sector-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0,120,255,0.25), transparent 70%);
    top: -150px;
    left: -150px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sector-card:hover .sector-glow {
    opacity: 1;
}

/* Responsivo */

@media(max-width: 900px) {
    .sector-grid {
        grid-template-columns: 1fr;
    }
}

/* METODOLOGIA PREMIUM */

.methodology {
    position: relative;
    padding: 180px 8%;
    background-color: #061621;
    overflow: hidden;
}

.methodology-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(0,120,255,0.07), transparent 70%);
    animation: methodologyMove 22s ease-in-out infinite alternate;
}

@keyframes methodologyMove {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.methodology-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
}

.methodology-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 120px auto;
}

/* Linha estrutural */

.methodology-line {
    height: 1px;
    width: 0%;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 100px auto;
    transition: width 1.5s ease;
}

.methodology-line.active {
    width: 100%;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
}

.step {
    position: relative;
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.step:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.step:hover .step-number {
    background: rgba(0,120,255,0.3);
    box-shadow: 0 0 20px rgba(0,120,255,0.5);
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.step p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.6;
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* SECURITY PREMIUM */

.security {
    position: relative;
    padding: 180px 8%;
    background-color: #04121b;
    overflow: hidden;
}

/* Grid técnico animado */

.security-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    from { transform: translateY(0); }
    to { transform: translateY(50px); }
}

.security-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.security-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 120px auto;
}

/* Linha estrutural */

.security-line {
    width: 0%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 100px auto;
    transition: width 1.5s ease;
}

.security-line.active {
    width: 100%;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

.security-card {
    position: relative;
    padding: 55px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
    overflow: hidden;
}

.security-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,120,255,0.5);
}

/* Glow institucional */

.security-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0,120,255,0.25), transparent 70%);
    top: -150px;
    left: -150px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.security-card:hover .security-glow {
    opacity: 1;
}

.security-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 18px;
}

.security-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.7;
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* IMPACTO PREMIUM */

.impact {
    position: relative;
    padding: 180px 8%;
    background-color: #08202f;
    overflow: hidden;
}

.impact-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.impact-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.impact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 120px auto;
}

.impact-line {
    width: 0%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 100px auto;
    transition: width 1.5s ease;
}

.impact-line.active {
    width: 100%;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 70px;
}

.impact-item {
    padding: 50px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
}

.impact-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0,120,255,0.5);
}

.impact-number {
    font-size: 3rem;
    font-weight: 600;
    margin: 15px 0;
}

.impact-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 25px;
    overflow: hidden;
}

.impact-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #0078ff, #00b3ff);
    transition: width 2s ease;
}

.impact-item p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.7;
}

/* CTA PREMIUM */

.cta {
    position: relative;
    padding: 220px 8%;
    background-color: #020b12;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgb(13, 42, 63), transparent 60%);
    animation: ctaMove 18s ease-in-out infinite alternate;
}

@keyframes ctaMove {
    0% { transform: translateY(-20px); }
    100% { transform: translateY(20px); }
}

.cta-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

/* Linha estrutural */

.cta-line {
    width: 0%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 100px auto;
    transition: width 1.5s ease;
}

.cta-line.active {
    width: 100%;
}

.cta-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent-gray);
    display: inline-block;
    margin-bottom: 30px;
}

.cta h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.cta p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 60px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-primary {
    position: relative;
    padding: 18px 36px;
    background: var(--white);
    color: #020b12;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-primary:hover {
    transform: scale(1.05);
}

.cta-secondary {
    border: 1px solid rgba(255,255,255,0.4);
    padding: 18px 36px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: var(--white);
    transform: scale(1.05);
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER PREMIUM */

.footer {
    background-color: #01070c;
    color: var(--white);
    padding: 120px 8% 50px 8%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.7;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--light-gray);
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

/* Linha divisória */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--accent-gray);
}

/* Animação */

@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {

  .hero h1 {
      font-size: 2.2rem;
  }

  .authority {
      flex-direction: column;
      gap: 15px;
  }

  .buttons {
      flex-direction: column;
      align-items: flex-start;
  }

}

@media (max-width: 992px) {

.footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

}

@media (max-width: 600px) {

.footer-grid {
    grid-template-columns: 1fr;
}

}

/* HERO INSTITUCIONAL */

.institutional-hero {
    position: relative;
    padding: 220px 8% 160px 8%;
    background-color: #071a28;
    overflow: hidden;
}

.institutional-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgb(0, 0, 0), transparent 60%);;
    animation: instHeroMove 20s ease-in-out infinite alternate;
}

@keyframes instHeroMove {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.institutional-hero-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.institutional-tag {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent-gray);
    display: inline-block;
    margin-bottom: 30px;
}

.institutional-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.institutional-hero p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.8;
    max-width: 700px;
}

/* CONSOLIDAÇÃO ENTERPRISE */

.institutional-consolidation {
    position: relative;
    padding: 200px 8%;
    background: #081c2a;
    overflow: hidden;
}

/* Grid tecnológico sutil */

.consolidation-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
}

.inst-consolidation-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
}

.inst-consolidation-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 120px;
    align-items: center;
}

/* Lado esquerdo */

.inst-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    display: inline-block;
    margin-bottom: 25px;
}

.inst-consolidation-left h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.inst-highlight {
    font-size: 1.15rem;
    color: #c3d1db;
    line-height: 1.9;
    margin-bottom: 60px;
}

/* Pilares */

.inst-pillars {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pillar h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.pillar p {
    font-size: 1rem;
    color: #9fb4c3;
    line-height: 1.7;
}

/* Lado direito - métricas */

.inst-metrics {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.metric span {
    font-size: 3rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.metric p {
    font-size: 1rem;
    color: #9fb4c3;
}

/* Hover sutil nas métricas */

.metric:hover span {
    color: #00aaff;
    transition: 0.3s ease;
}

/* Responsivo */

@media (max-width: 992px) {

    .inst-consolidation-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .inst-metrics {
        border-left: none;
        padding-left: 0;
    }

    .inst-consolidation-left h2 {
        font-size: 2.2rem;
    }
}

/* INFRAESTRUTURA ENTERPRISE */

.institutional-infrastructure {
    position: relative;
    padding: 200px 8%;
    background: #f5f7fa;
    color: #0e1a24;
    overflow: hidden;
}

/* Grid arquitetônico */

.infra-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.infra-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 120px;
    align-items: center;
    z-index: 2;
}

.infra-tag {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #5f6c78;
    display: inline-block;
    margin-bottom: 25px;
}

.infra-left h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.infra-left > p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 60px;
    color: #3a4a57;
}

/* Bloco lateral */

.infra-info {
    border-left: 2px solid #d0d7de;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.infra-item h4 {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #0e1a24;
}

.infra-item p {
    font-size: 1rem;
    color: #4a5a67;
    line-height: 1.6;
}

/* Mapa institucional */

.infra-map {
    position: relative;
    width: 100%;
    height: 350px;
    background: #e9edf2;
    border: 1px solid #d0d7de;
    overflow: hidden;
}

/* ponto */

.map-point {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #0078ff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* pulso */

.map-pulse {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0,120,255,0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsivo */

@media (max-width: 992px) {
    .infra-container {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .infra-left h2 {
        font-size: 2.2rem;
    }
}
.metrics-wrapper {
    position: relative;
}

.metrics-lines {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    stroke: rgba(255,255,255,0.15);
    stroke-width: 2;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}
.consolidation-grid-bg {
    will-change: transform;
}

.inst-chart {
    margin-top: 80px;
}

.inst-chart svg {
    width: 100%;
    height: 200px;
}

.inst-chart polyline {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: chartDraw 2s ease forwards;
}

@keyframes chartDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* ESTRUTURA ORGANIZACIONAL */

.organizational-structure {
    padding: 200px 8%;
    background: #f4f6f9;
    color: #0e1a24;
}

.org-container {
    max-width: 1300px;
    margin: 0 auto;
}

.org-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.org-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6b7c88;
    display: inline-block;
    margin-bottom: 25px;
}

.org-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.org-header p {
    font-size: 1.1rem;
    color: #4a5a67;
    line-height: 1.8;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.org-card {
    padding: 50px;
    background: white;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.org-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0078ff, #00aaff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.org-card:hover::before {
    transform: scaleX(1);
}

.org-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.org-icon {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #0078ff;
    letter-spacing: 2px;
}

.org-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.org-card p {
    font-size: 1rem;
    color: #4a5a67;
    line-height: 1.7;
}

/* TIME ESTRATÉGICO */

.strategic-team {
    padding: 220px 8%;
    background: #050f18;
    color: white;
}

.team-container {
    max-width: 1300px;
    margin: 0 auto;
}

.team-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.team-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    display: inline-block;
    margin-bottom: 25px;
}

.team-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.team-header p {
    font-size: 1.1rem;
    color: #9fb4c3;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    position: relative;
    padding: 60px 40px;
    background: linear-gradient(180deg, #0b1d2a, #091722);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: 0.4s ease;
}

.team-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0,170,255,0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0,170,255,0.08), transparent 60%);
    pointer-events: none;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.team-card p {
    font-size: 1rem;
    color: #9fb4c3;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* PRESENÇA NACIONAL */

.national-presence {
    padding: 220px 8%;
    background: #f4f6f9;
    color: #0e1a24;
}

.presence-container {
    max-width: 1300px;
    margin: 0 auto;
}

.presence-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.presence-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6b7c88;
    display: inline-block;
    margin-bottom: 25px;
}

.presence-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.presence-header p {
    font-size: 1.1rem;
    color: #4a5a67;
    line-height: 1.8;
}

.presence-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
    align-items: center;
}

/* MAPA */

.presence-map {
    position: relative;
}

.brazil-map path {
    fill: #dce3ea;
    stroke: #b8c4cf;
    stroke-width: 2;
    transition: 0.3s ease;
}

.presence-map:hover .brazil-map path {
    fill: #cfd9e3;
}

/* Pontos animados */

.map-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #0078ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot-1 { top: 35%; left: 50%; }
.dot-2 { top: 55%; left: 40%; }
.dot-3 { top: 65%; left: 60%; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* INFO */

.presence-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.presence-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.presence-item p {
    font-size: 1rem;
    color: #4a5a67;
    line-height: 1.7;
}

/* Responsivo */

@media (max-width: 992px) {
    .presence-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .presence-header h2 {
        font-size: 2.2rem;
    }
}

/* VISÃO & FUTURO */

.vision-section {
    position: relative;
    padding: 240px 8%;
    background: #03121c;
    color: white;
    overflow: hidden;
}

.vision-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0,170,255,0.08), transparent 60%);
    animation: visionMove 18s ease-in-out infinite alternate;
}

@keyframes visionMove {
    0% { transform: translateY(-20px); }
    100% { transform: translateY(20px); }
}

.vision-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
}

.vision-intro {
    max-width: 800px;
    margin-bottom: 140px;
}

.vision-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    display: inline-block;
    margin-bottom: 25px;
}

.vision-intro h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.vision-intro p {
    font-size: 1.15rem;
    color: #9fb4c3;
    line-height: 1.9;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.vision-card {
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, #061a26, #04131d);
    transition: 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,170,255,0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.vision-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.vision-card p {
    font-size: 1rem;
    color: #9fb4c3;
    line-height: 1.7;
}

/* CASES INSTITUCIONAIS */

.institutional-cases {
    padding: 220px 8%;
    background: #f5f7fa;
    color: #0e1a24;
}

.cases-container {
    max-width: 1300px;
    margin: 0 auto;
}

.cases-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.cases-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6b7c88;
    display: inline-block;
    margin-bottom: 25px;
}

.cases-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.cases-header p {
    font-size: 1.1rem;
    color: #4a5a67;
    line-height: 1.8;
}

.cases-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.case-card {
    padding: 70px;
    background: white;
    border: 1px solid #e2e8f0;
    transition: 0.4s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.case-tag {
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #0078ff;
    font-weight: 600;
}

.case-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.case-card p {
    font-size: 1.05rem;
    color: #4a5a67;
    line-height: 1.8;
    margin-bottom: 40px;
}

.case-metrics {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.case-metrics span {
    font-size: 0.95rem;
    background: #eef3f7;
    padding: 12px 20px;
    border-radius: 4px;
}

/* CTA INSTITUCIONAL FINAL */

.institutional-cta {
    position: relative;
    padding: 260px 8%;
    background: #020b12;
    color: white;
    overflow: hidden;
    text-align: center;
}

.cta-bg-layer {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgb(13, 42, 63), transparent 60%);
    animation: ctaPulse 15s ease-in-out infinite alternate;
}

@keyframes ctaPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.cta-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.cta-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    display: inline-block;
    margin-bottom: 30px;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.15rem;
    color: #9fb4c3;
    line-height: 1.9;
    margin-bottom: 60px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-primary {
    background: white;
    color: #020b12;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.cta-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 18px 40px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

.cta-secondary:hover {
    border-color: #00aaff;
    transform: translateY(-4px);
}

/* HERO SOLUÇÕES */

.solutions-hero {
    position: relative;
    padding: 240px 8% 180px 8%;
    background: #061621;
    color: white;
    overflow: hidden;
}

.solutions-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0,170,255,0.15), transparent 60%);
    animation: solutionsHeroMove 20s ease-in-out infinite alternate;
}

@keyframes solutionsHeroMove {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.solutions-hero-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.solutions-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    display: inline-block;
    margin-bottom: 25px;
}

.solutions-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.solutions-hero p {
    font-size: 1.15rem;
    color: #9fb4c3;
    line-height: 1.9;
    max-width: 700px;
}

/* ECOSSISTEMA */

.solutions-ecosystem {
    padding: 220px 8%;
    background: #f5f7fa;
    color: #0e1a24;
}

.ecosystem-container {
    max-width: 1300px;
    margin: 0 auto;
}

.ecosystem-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.ecosystem-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6b7c88;
    display: inline-block;
    margin-bottom: 25px;
}

.ecosystem-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.ecosystem-header p {
    font-size: 1.1rem;
    color: #4a5a67;
    line-height: 1.8;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.ecosystem-card {
    padding: 60px;
    background: white;
    border: 1px solid #e2e8f0;
    transition: 0.4s ease;
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.ecosystem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.ecosystem-card p {
    font-size: 1rem;
    color: #4a5a67;
    line-height: 1.7;
}

/* ARQUITETURA SOLUÇÕES */

.solutions-architecture {
    padding: 240px 8%;
    background: #03121c;
    color: white;
    position: relative;
}

.architecture-container {
    max-width: 1300px;
    margin: 0 auto;
}

.architecture-header {
    max-width: 800px;
    margin-bottom: 140px;
}

.architecture-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    display: inline-block;
    margin-bottom: 25px;
}

.architecture-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.architecture-header p {
    font-size: 1.1rem;
    color: #9fb4c3;
    line-height: 1.8;
}

/* DIAGRAMA */

.architecture-diagram {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
}

.core-system {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #0b1d2a, #091722);
    padding: 30px 40px;
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    text-align: center;
    z-index: 3;
}

/* Módulos */

.module {
    position: absolute;
    background: #0b1d2a;
    padding: 20px 30px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

.module:hover {
    border-color: #00aaff;
    transform: scale(1.05);
}

.module-1 { top: 40px; left: 50%; transform: translateX(-50%); }
.module-2 { top: 50%; right: 40px; transform: translateY(-50%); }
.module-3 { bottom: 40px; left: 50%; transform: translateX(-50%); }
.module-4 { top: 50%; left: 40px; transform: translateY(-50%); }

/* LINHAS */

.architecture-lines {
    position: absolute;
    inset: 0;
    stroke: rgba(255,255,255,0.2);
    stroke-width: 2;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawArch 2s ease forwards;
}

@keyframes drawArch {
    to {
        stroke-dashoffset: 0;
    }
}

/* Responsivo */

@media (max-width: 768px) {
    .architecture-diagram {
        width: 100%;
        height: 500px;
    }
}

/* SOLUÇÕES DETALHADAS */

.solutions-detailed {
    padding: 240px 8%;
    background: #f5f7fa;
    color: #0e1a24;
}

.solutions-detailed-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 200px;
}

.solution-block {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 120px;
    align-items: center;
}

.solution-block.reverse {
    grid-template-columns: 1fr 1.1fr;
}

.solution-block.reverse .solution-content {
    order: 2;
}

.solution-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6b7c88;
    display: inline-block;
    margin-bottom: 20px;
}

.solution-content h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
}

.solution-content p {
    font-size: 1.1rem;
    color: #4a5a67;
    line-height: 1.8;
    margin-bottom: 30px;
}

.solution-content ul {
    list-style: none;
    padding: 0;
}

.solution-content ul li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #4a5a67;
    position: relative;
    padding-left: 20px;
}

.solution-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #0078ff;
}

/* VISUAL */

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(180deg, #e3e9ef, #d9e2ea);
    border: 1px solid #d0d7de;
    transition: 0.4s ease;
}

.visual-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* Responsivo */

@media (max-width: 992px) {

    .solution-block,
    .solution-block.reverse {
        grid-template-columns: 1fr;
    }

    .solution-block.reverse .solution-content {
        order: 0;
    }
}

/* TECNOLOGIAS */

.solutions-tech {
    padding: 240px 8%;
    background: #04131d;
    color: white;
}

.tech-container {
    max-width: 1300px;
    margin: 0 auto;
}

.tech-header {
    max-width: 800px;
    margin-bottom: 140px;
}

.tech-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    display: inline-block;
    margin-bottom: 25px;
}

.tech-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.tech-header p {
    font-size: 1.1rem;
    color: #9fb4c3;
    line-height: 1.8;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.tech-block {
    padding: 60px;
    background: linear-gradient(180deg, #071a26, #06131c);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

.tech-block:hover {
    transform: translateY(-10px);
    border-color: rgba(0,170,255,0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.tech-block h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.tech-block ul {
    list-style: none;
    padding: 0;
}

.tech-block ul li {
    margin-bottom: 15px;
    color: #9fb4c3;
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
}

.tech-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #00aaff;
}

/* PROCESSO DE IMPLANTAÇÃO */

.solutions-process {
    padding: 240px 8%;
    background: #f4f6f9;
    color: #0e1a24;
}

.process-container {
    max-width: 1100px;
    margin: 0 auto;
}

.process-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.process-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6b7c88;
    display: inline-block;
    margin-bottom: 25px;
}

.process-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.process-header p {
    font-size: 1.1rem;
    color: #4a5a67;
    line-height: 1.8;
}

/* STEPS */

.process-steps {
    position: relative;
    border-left: 2px solid #d0d7de;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.process-step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0078ff;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1rem;
    color: #4a5a67;
    line-height: 1.7;
}

/* Responsivo */

@media (max-width: 768px) {
    .process-steps {
        padding-left: 30px;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .process-header h2 {
        font-size: 2.2rem;
    }
}

/* DIFERENCIAIS */

.solutions-differentials {
    padding: 240px 8%;
    background: #020f18;
    color: white;
}

.diff-container {
    max-width: 1300px;
    margin: 0 auto;
}

.diff-header {
    max-width: 800px;
    margin-bottom: 140px;
}

.diff-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    display: inline-block;
    margin-bottom: 25px;
}

.diff-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.diff-header p {
    font-size: 1.1rem;
    color: #9fb4c3;
    line-height: 1.8;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.diff-card {
    padding: 60px;
    background: linear-gradient(180deg, #061a26, #04131d);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

.diff-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,170,255,0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.diff-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00aaff;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.diff-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.diff-card p {
    font-size: 1rem;
    color: #9fb4c3;
    line-height: 1.7;
}

/* CTA FINAL SOLUÇÕES */

.solutions-cta {
    position: relative;
    padding: 260px 8%;
    background: #010b12;
    color: white;
    text-align: center;
    overflow: hidden;
}

.solutions-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgb(13, 42, 63), transparent 60%);
    animation: solutionsCtaMove 18s ease-in-out infinite alternate;
}

@keyframes solutionsCtaMove {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.solutions-cta-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

/* Linha estrutural */

.solutions-cta-line {
    width: 0%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 100px auto;
    transition: width 1.5s ease;
}

.solutions-cta-line.active {
    width: 100%;
}

.solutions-cta-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    display: inline-block;
    margin-bottom: 30px;
}

.solutions-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.solutions-cta-content p {
    font-size: 1.15rem;
    color: #9fb4c3;
    line-height: 1.9;
    margin-bottom: 60px;
}

.solutions-cta-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.solutions-cta-primary {
    background: white;
    color: #010b12;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.solutions-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.solutions-cta-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 18px 40px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

.solutions-cta-secondary:hover {
    border-color: #00aaff;
    transform: translateY(-5px);
}

/* ===================================================== */
/* HERO - EMPRESAS PRIVADAS */
/* ===================================================== */

.pp-hero {
    position: relative;
    padding: 260px 8% 200px 8%;
    background: #04131d;
    color: white;
    overflow: hidden;
}

/* Background radial animado */

.pp-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 40%,
        rgba(0,170,255,0.18),
        transparent 60%
    );
    animation: ppHeroMove 18s ease-in-out infinite alternate;
}

@keyframes ppHeroMove {
    0% { transform: translateX(-25px); }
    100% { transform: translateX(25px); }
}

.pp-hero-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

/* Label superior */

.pp-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    margin-bottom: 30px;
}

/* Título */

.pp-hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Descrição */

.pp-hero-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #9fb4c3;
    max-width: 720px;
    margin-bottom: 60px;
}

/* Botões */

.pp-hero-actions {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Responsivo */

@media (max-width: 992px) {

    .pp-hero-title {
        font-size: 2.3rem;
    }

    .pp-hero {
        padding: 200px 8% 160px 8%;
    }

}

/* ===================================================== */
/* INTELIGÊNCIA & AUTOMAÇÃO */
/* ===================================================== */

.pp-intelligence {
    position: relative;
    padding: 240px 8%;
    background: #f5f7fa;
    color: #0e1a24;
    overflow: hidden;
}

/* Fundo tecnológico sutil */

.pp-intelligence-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.pp-intelligence-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
}

/* Header */

.pp-intelligence-header {
    max-width: 850px;
    margin-bottom: 120px;
}

.pp-section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6b7c88;
    margin-bottom: 25px;
}

.pp-intelligence-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.pp-intelligence-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5a67;
}

/* Grid */

.pp-intelligence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 70px;
}

/* Card */

.pp-intelligence-card {
    padding: 60px;
    background: white;
    border: 1px solid #e2e8f0;
    transition: 0.4s ease;
}

.pp-intelligence-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.pp-intel-number {
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #0078ff;
    margin-bottom: 25px;
}

.pp-intelligence-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pp-intelligence-card p {
    font-size: 1rem;
    color: #4a5a67;
    line-height: 1.7;
}

/* Responsivo */

@media (max-width: 992px) {

    .pp-intelligence-header h2 {
        font-size: 2.2rem;
    }

}

.pp-intelligence {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

/* ===================================================== */
/* DESAFIOS CORPORATIVOS */
/* ===================================================== */

.pp-challenges {
    position: relative;
    padding: 240px 8%;
    background: #03121c;
    color: white;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.pp-challenges-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 70% 40%,
        rgba(0,170,255,0.12),
        transparent 60%
    );
}

.pp-challenges-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
}

.pp-challenges-header {
    max-width: 850px;
    margin-bottom: 120px;
}

.pp-challenges-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.pp-challenges-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #9fb4c3;
}

.pp-challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.pp-challenge-card {
    padding: 60px;
    background: linear-gradient(180deg, #061a26, #04131d);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

.pp-challenge-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0,170,255,0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.pp-challenge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.pp-challenge-card p {
    font-size: 1rem;
    color: #9fb4c3;
    line-height: 1.7;
}

/* Responsivo */

@media (max-width: 992px) {

    .pp-challenges-header h2 {
        font-size: 2.2rem;
    }

}

/* ===================================================== */
/* ARQUITETURA ESTRUTURAL */
/* ===================================================== */

.pp-architecture {
    padding: 260px 8%;
    background: #f5f7fa;
    color: #0e1a24;
}

.pp-architecture-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pp-architecture-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.pp-architecture-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.pp-architecture-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5a67;
}

/* Layers */

.pp-architecture-layers {
    border-left: 2px solid #d0d7de;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.pp-layer {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.pp-layer-number {
    font-size: 2rem;
    font-weight: 600;
    color: #0078ff;
    min-width: 60px;
}

.pp-layer-content h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pp-layer-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5a67;
}

/* Responsivo */

@media (max-width: 768px) {

    .pp-architecture-layers {
        padding-left: 30px;
    }

    .pp-layer-number {
        font-size: 1.5rem;
    }

    .pp-architecture-header h2 {
        font-size: 2.2rem;
    }

}

/* ===================================================== */
/* SEGURANÇA & GOVERNANÇA */
/* ===================================================== */

.pp-governance {
    position: relative;
    padding: 260px 8%;
    background: #020f18;
    color: white;
    overflow: hidden;
}

.pp-governance-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 40%,
        rgba(0,170,255,0.12),
        transparent 60%
    );
}

.pp-governance-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
}

.pp-governance-header {
    max-width: 850px;
    margin-bottom: 120px;
}

.pp-governance-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.pp-governance-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #9fb4c3;
}

/* Grid */

.pp-governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.pp-governance-card {
    padding: 60px;
    background: linear-gradient(180deg, #061a26, #04131d);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

.pp-governance-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0,170,255,0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.pp-governance-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.pp-governance-card p {
    font-size: 1rem;
    color: #9fb4c3;
    line-height: 1.7;
}

/* Responsivo */

@media (max-width: 992px) {

    .pp-governance-header h2 {
        font-size: 2.2rem;
    }

}

/* ===================================================== */
/* PERFORMANCE & IMPACTO */
/* ===================================================== */

.pp-performance {
    position: relative;
    padding: 280px 8%;
    background: #03121c;
    color: white;
    overflow: hidden;
}

.pp-performance-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 70px 70px;
    animation: gridMove 30s linear infinite;
}

.pp-performance-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}

.pp-performance-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.pp-section-label.light {
    color: #6e8aa1;
}

.pp-performance-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.pp-performance-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #9fb4c3;
}

/* Grid */

.pp-performance-grid {
    display: grid;
    gap: 100px;
}

/* Métrica */

.pp-metric {
    padding: 60px;
    background: linear-gradient(180deg, #061a26, #04131d);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

.pp-metric:hover {
    transform: translateY(-10px);
    border-color: rgba(0,170,255,0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.pp-metric-number {
    font-size: 4rem;
    font-weight: 600;
    color: #00aaff;
    margin-bottom: 15px;
}

.pp-metric-label {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #9fb4c3;
}

/* Barra */

.pp-metric-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}

.pp-metric-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #0078ff, #00aaff);
    transition: width 2s ease;
}

/* Responsivo */

@media (max-width: 992px) {
    .pp-performance-header h2 {
        font-size: 2.2rem;
    }
}

/* ===================================================== */
/* MODELOS DE ATUAÇÃO */
/* ===================================================== */

.pp-models {
    padding: 280px 8%;
    background: #f5f7fa;
    color: #0e1a24;
}

.pp-models-container {
    max-width: 1300px;
    margin: 0 auto;
}

.pp-models-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.pp-models-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.pp-models-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5a67;
}

/* Grid */

.pp-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

/* Card */

.pp-model-card {
    padding: 70px;
    background: white;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.pp-model-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.pp-model-card.active {
    border-color: #0078ff;
    box-shadow: 0 20px 50px rgba(0,120,255,0.1);
}

.pp-model-index {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0078ff;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.pp-model-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.pp-model-card p {
    font-size: 1rem;
    color: #4a5a67;
    margin-bottom: 30px;
    line-height: 1.7;
}

.pp-model-card ul {
    list-style: none;
    padding: 0;
}

.pp-model-card ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4a5a67;
    position: relative;
    padding-left: 20px;
}

.pp-model-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #0078ff;
}

/* ===================================================== */
/* SETORES PRIVADOS */
/* ===================================================== */

.pp-sectors {
    position: relative;
    padding: 300px 8%;
    background: #020f18;
    color: white;
    overflow: hidden;
}

.pp-sectors-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 60% 30%,
        rgba(0,170,255,0.1),
        transparent 60%
    );
}

.pp-sectors-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
}

.pp-sectors-header {
    max-width: 800px;
    margin-bottom: 140px;
}

.pp-sectors-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.pp-sectors-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #9fb4c3;
}

/* Grid com layout mais espaçado */

.pp-sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 100px 80px;
}

/* Card */

.pp-sector-card {
    padding: 70px;
    border-left: 3px solid rgba(0,170,255,0.3);
    transition: all 0.4s ease;
}

.pp-sector-card:hover {
    transform: translateX(10px);
    border-left-color: #00aaff;
}

.pp-sector-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.pp-sector-card p {
    font-size: 1rem;
    color: #9fb4c3;
    line-height: 1.7;
}

/* Responsivo */

@media (max-width: 992px) {

    .pp-sectors-header h2 {
        font-size: 2.2rem;
    }

}

/* ===================================================== */
/* CTA FINAL INSTITUCIONAL */
/* ===================================================== */

.pp-final {
    position: relative;
    padding: 320px 8%;
    background: #010b12;
    color: white;
    text-align: center;
    overflow: hidden;
}

.pp-final-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0,170,255,0.15),
        transparent 60%
    );
    animation: ppFinalPulse 18s ease-in-out infinite alternate;
}

@keyframes ppFinalPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.pp-final-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

/* Linha estrutural */

.pp-final-line {
    width: 0%;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto 100px auto;
    transition: width 1.5s ease;
}

.pp-final-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    margin-bottom: 30px;
}

.pp-final h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.pp-final p {
    font-size: 1.15rem;
    color: #9fb4c3;
    line-height: 1.9;
    margin-bottom: 70px;
}

/* Botões */

.pp-final-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pp-final-primary {
    background: white;
    color: #010b12;
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.pp-final-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.pp-final-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 20px 50px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

.pp-final-secondary:hover {
    border-color: #00aaff;
    transform: translateY(-6px);
}

/* Responsivo */

@media (max-width: 992px) {

    .pp-final h2 {
        font-size: 2.2rem;
    }

}

/* ===================================================== */
/* HERO - SETOR PÚBLICO */
/* ===================================================== */

.pg-hero {
    position: relative;
    padding: 280px 8% 220px 8%;
    background: #021019;
    color: white;
    overflow: hidden;
}

.pg-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 30% 40%, rgba(0,170,255,0.18), transparent 60% );
    animation: pgHeroMove 20s ease-in-out infinite alternate;
}

@keyframes pgHeroMove {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.pg-hero-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.pg-hero-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    margin-bottom: 30px;
    display: inline-block;
}

.pg-hero-title {
    font-size: 3.1rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.pg-hero-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #9fb4c3;
    max-width: 750px;
    margin-bottom: 60px;
}

.pg-hero-actions {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.pg-hero-primary {
    background: white;
    color: #021019;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.pg-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.pg-hero-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 18px 45px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

.pg-hero-secondary:hover {
    border-color: #00aaff;
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .pg-hero-title {
        font-size: 2.2rem;
    }
}

/* ===================================================== */
/* CONFORMIDADE PÚBLICA */
/* ===================================================== */

.pg-compliance {
    padding: 260px 8%;
    background: #f4f6f9;
    color: #0e1a24;
}

.pg-compliance-container {
    max-width: 1300px;
    margin: 0 auto;
}

.pg-compliance-header {
    max-width: 850px;
    margin-bottom: 120px;
}

.pg-section-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6b7c88;
    display: inline-block;
    margin-bottom: 25px;
}

.pg-compliance-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.pg-compliance-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5a67;
}

.pg-compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 70px;
}

.pg-compliance-card {
    padding: 70px;
    background: white;
    border: 1px solid #e2e8f0;
    transition: 0.4s ease;
}

.pg-compliance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.pg-compliance-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pg-compliance-card p {
    font-size: 1rem;
    color: #4a5a67;
    line-height: 1.7;
}

/* ===================================================== */
/* MODERNIZAÇÃO PÚBLICA */
/* ===================================================== */

.pg-modernization {
    position: relative;
    padding: 300px 8%;
    background: #021019;
    color: white;
    overflow: hidden;
}

.pg-modernization-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0,170,255,0.08), transparent 60%);
}

.pg-modernization-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}

.pg-modernization-header {
    max-width: 850px;
    margin-bottom: 140px;
}

.pg-modernization-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.pg-modernization-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #9fb4c3;
}

/* Steps verticais */

.pg-modernization-steps {
    border-left: 2px solid rgba(255,255,255,0.15);
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.pg-step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.pg-step-index {
    font-size: 2rem;
    font-weight: 600;
    color: #00aaff;
    min-width: 60px;
}

.pg-step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pg-step-content p {
    font-size: 1rem;
    color: #9fb4c3;
    line-height: 1.8;
}

@media (max-width: 768px) {

    .pg-modernization-steps {
        padding-left: 30px;
    }

    .pg-modernization-header h2 {
        font-size: 2.2rem;
    }

}

/* ===================================================== */
/* LICITAÇÕES & CONTRATOS */
/* ===================================================== */

.pg-procurement {
    padding: 300px 8%;
    background: #f4f6f9;
    color: #0e1a24;
}

.pg-procurement-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pg-procurement-header {
    max-width: 850px;
    margin-bottom: 140px;
}

.pg-procurement-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.pg-procurement-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5a67;
}

/* Blocos horizontais */

.pg-procurement-blocks {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.pg-procurement-item {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid #d0d7de;
    transition: 0.3s ease;
}

.pg-procurement-item:hover {
    transform: translateX(8px);
}

.pg-procurement-index {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0078ff;
    min-width: 60px;
}

.pg-procurement-content h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pg-procurement-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5a67;
}

@media (max-width: 768px) {

    .pg-procurement-item {
        flex-direction: column;
        gap: 20px;
    }

    .pg-procurement-header h2 {
        font-size: 2.2rem;
    }

}

/* ===================================================== */
/* INFRAESTRUTURA & SEGURANÇA */
/* ===================================================== */

.pg-infrastructure {
    position: relative;
    padding: 320px 8%;
    background: #021019;
    color: white;
    overflow: hidden;
}

.pg-infrastructure-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 70px 70px;
    animation: infraGridMove 30s linear infinite;
}

@keyframes infraGridMove {
    from { background-position: 0 0; }
    to { background-position: 200px 200px; }
}

.pg-infrastructure-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
}

.pg-infrastructure-header {
    max-width: 850px;
    margin-bottom: 140px;
}

.pg-infrastructure-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.pg-infrastructure-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #9fb4c3;
}

/* Grid */

.pg-infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
}

/* Card */

.pg-infra-card {
    padding: 70px;
    background: linear-gradient(180deg, #061a26, #04131d);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

.pg-infra-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0,170,255,0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.pg-infra-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pg-infra-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #9fb4c3;
}

@media (max-width: 992px) {
    .pg-infrastructure-header h2 {
        font-size: 2.2rem;
    }
}

/* ===================================================== */
/* CTA FINAL - SETOR PÚBLICO */
/* ===================================================== */

.pg-final {
    position: relative;
    padding: 340px 8%;
    background: #010b12;
    color: white;
    text-align: center;
    overflow: hidden;
}

.pg-final-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgb(13, 42, 63), transparent 60%);
    animation: pgFinalPulse 20s ease-in-out infinite alternate;
}

@keyframes pgFinalPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}

.pg-final-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.pg-final-divider {
    width: 0%;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto 120px auto;
    transition: width 1.5s ease;
}

.pg-final-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    margin-bottom: 30px;
}

.pg-final h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.pg-final p {
    font-size: 1.15rem;
    color: #9fb4c3;
    line-height: 1.9;
    margin-bottom: 80px;
}

/* Botões */

.pg-final-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pg-final-primary {
    background: white;
    color: #010b12;
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.pg-final-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.pg-final-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 20px 50px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

.pg-final-secondary:hover {
    border-color: #00aaff;
    transform: translateY(-6px);
}

@media (max-width: 992px) {
    .pg-final h2 {
        font-size: 2.2rem;
    }
}

/* ===================================================== */
/* HERO TECNOLOGIA */
/* ===================================================== */

.tech-hero {
    position: relative;
    padding: 300px 8% 220px 8%;
    background: #04131d;
    color: white;
    overflow: hidden;
}

.tech-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(0,170,255,0.18), transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(0,120,255,0.12), transparent 60%);
    animation: techHeroMove 22s ease-in-out infinite alternate;
}

@keyframes techHeroMove {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.tech-hero-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.tech-hero-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    margin-bottom: 30px;
    display: inline-block;
}

.tech-hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.tech-hero-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #9fb4c3;
    max-width: 750px;
}

@media (max-width: 992px) {
    .tech-hero-title {
        font-size: 2.2rem;
    }
}

/* ===================================================== */
/* ARQUITETURA TECNOLÓGICA */
/* ===================================================== */

.tech-architecture {
    padding: 280px 8%;
    background: #f4f6f9;
    color: #0e1a24;
}

.tech-architecture-container {
    max-width: 1100px;
    margin: 0 auto;
}

.tech-architecture-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.tech-architecture-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.tech-architecture-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5a67;
}

.tech-layers {
    display: grid;
    gap: 80px;
}

.tech-layer {
    gap: 40px;
    align-items: flex-start;
}

.tech-layer-number {
    font-size: 2rem;
    font-weight: 600;
    color: #0078ff;
    min-width: 60px;
}

.tech-layer h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.tech-layer p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5a67;
}

/* ===================================================== */
/* STACK TECNOLÓGICA */
/* ===================================================== */

.tech-stack {
    position: relative;
    padding: 300px 8%;
    background: #021019;
    color: white;
    overflow: hidden;
}

.tech-stack-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: stackGridMove 35s linear infinite;
}

@keyframes stackGridMove {
    from { background-position: 0 0; }
    to { background-position: 200px 200px; }
}

.tech-stack-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
}

.tech-stack-header {
    max-width: 850px;
    margin-bottom: 140px;
}

.tech-section-label.light {
    color: #6e8aa1;
}

.tech-stack-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.tech-stack-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #9fb4c3;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
}

.tech-stack-card {
    padding: 70px;
    background: linear-gradient(180deg, #061a26, #04131d);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

.tech-stack-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0,170,255,0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.tech-stack-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.tech-stack-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #9fb4c3;
}

/* ===================================================== */
/* EVOLUÇÃO TECNOLÓGICA */
/* ===================================================== */

.tech-evolution {
    padding: 300px 8%;
    background: #f4f6f9;
    color: #0e1a24;
}

.tech-evolution-container {
    max-width: 1100px;
    margin: 0 auto;
}

.tech-evolution-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.tech-evolution-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.tech-evolution-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5a67;
}

.tech-evolution-timeline {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.tech-evo-item {
    display: flex;
    gap: 40px;
}

.tech-evo-index {
    font-size: 2rem;
    font-weight: 600;
    color: #0078ff;
    min-width: 60px;
}

/* ===================================================== */
/* CTA FINAL TECNOLOGIA */
/* ===================================================== */

.tech-final {
    position: relative;
    padding: 340px 8%;
    background: #010b12;
    color: white;
    text-align: center;
    overflow: hidden;
}

.tech-final-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0,170,255,0.15),
        transparent 65%
    );
    animation: techFinalPulse 18s ease-in-out infinite alternate;
}

@keyframes techFinalPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.tech-final-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.tech-final-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    margin-bottom: 30px;
    display: inline-block;
}

.tech-final h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.tech-final p {
    font-size: 1.15rem;
    color: #9fb4c3;
    margin-bottom: 60px;
}

.tech-final-button {
    background: white;
    color: #010b12;
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.tech-final-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* ===================================================== */
/* HERO CONTATO */
/* ===================================================== */

.contact-hero {
    position: relative;
    padding: 300px 8% 220px 8%;
    background: #04131d;
    color: white;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 35% 40%,
        rgba(0,170,255,0.18),
        transparent 60%
    );
    animation: contactHeroMove 20s ease-in-out infinite alternate;
}

@keyframes contactHeroMove {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.contact-hero-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.contact-hero-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    margin-bottom: 30px;
    display: inline-block;
}

.contact-hero-title {
    font-size: 3rem;
    margin-bottom: 30px;
}

.contact-hero-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #9fb4c3;
}

/* ===================================================== */
/* PERFIL CONTATO */
/* ===================================================== */

.contact-profile {
    padding: 280px 8%;
    background: #f4f6f9;
    color: #0e1a24;
}

.contact-profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-profile-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.contact-profile-header h2 {
    font-size: 2.8rem;
}

.contact-profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

.contact-profile-card {
    padding: 70px;
    background: white;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: 0.4s ease;
}

.contact-profile-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: #0078ff;
}

.contact-profile-card.active {
    border-color: #0078ff;
    box-shadow: 0 20px 50px rgba(0,120,255,0.1);
}

/* ===================================================== */
/* FORMULÁRIO EXECUTIVO */
/* ===================================================== */

.contact-form-section {
    padding: 300px 8%;
    background: #021019;
    color: white;
}

.contact-form-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-header {
    max-width: 800px;
    margin-bottom: 120px;
}

.contact-form-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.contact-form-header p {
    font-size: 1.1rem;
    color: #9fb4c3;
}

.contact-form {
    background: linear-gradient(180deg, #061a26, #04131d);
    padding: 100px;
    border: 1px solid rgba(255,255,255,0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #6e8aa1;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 18px;
    background: #04131d;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #00aaff;
    outline: none;
}

.form-submit {
    margin-top: 80px;
    text-align: center;
}

.form-submit button {
    background: white;
    color: #021019;
    padding: 20px 60px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-submit button:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* ===================================================== */
/* RESPONSIVO FORMULÁRIO EXECUTIVO */
/* ===================================================== */

@media (max-width: 1200px) {
    .contact-form {
        padding: 80px;
    }
}

@media (max-width: 992px) {

    .contact-form-section {
        padding: 180px 6%;
    }

    .contact-form {
        padding: 60px 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .dynamic-fields {
        grid-column: span 1;
    }

    .contact-form-header h2 {
        font-size: 2rem;
    }

}

@media (max-width: 576px) {

    .contact-form-section {
        padding: 120px 5%;
    }

    .contact-form {
        padding: 40px 25px;
        border-radius: 8px;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
    }

    .form-submit {
        margin-top: 50px;
    }

    .form-submit button {
        width: 100%;
        padding: 18px;
        font-size: 1rem;
    }

}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    box-sizing: border-box;
}

/* Campos dinâmicos */

.dynamic-fields {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.dynamic-fields.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================== */
/* CONFIRMAÇÃO CONTATO */
/* ===================================================== */

.confirm-hero {
    position: relative;
    padding: 300px 8% 200px 8%;
    background: #04131d;
    color: white;
    text-align: center;
    overflow: hidden;
}

.confirm-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0,170,255,0.15),
        transparent 65%
    );
    animation: confirmPulse 18s ease-in-out infinite alternate;
}

@keyframes confirmPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.confirm-hero-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.confirm-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6e8aa1;
    display: inline-block;
    margin-bottom: 30px;
}

.confirm-hero h1 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.confirm-hero p {
    font-size: 1.15rem;
    color: #9fb4c3;
    line-height: 1.9;
}

/* PROCESSO */

.confirm-process {
    padding: 260px 8%;
    background: #f4f6f9;
    color: #0e1a24;
}

.confirm-process-container {
    max-width: 1100px;
    margin: 0 auto;
}

.confirm-line {
    width: 0%;
    height: 1px;
    background: #d0d7de;
    margin-bottom: 120px;
    transition: width 1.5s ease;
}

.confirm-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 120px;
}

.confirm-step {
    display: flex;
    gap: 40px;
}

.confirm-step-index {
    font-size: 2rem;
    font-weight: 600;
    color: #0078ff;
    min-width: 60px;
}

.confirm-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.confirm-step p {
    font-size: 1rem;
    color: #4a5a67;
    line-height: 1.8;
}

/* AÇÕES */

.confirm-actions {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.confirm-primary {
    background: #021019;
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.confirm-primary:hover {
    transform: translateY(-6px);
}

.confirm-secondary {
    border: 1px solid #021019;
    padding: 18px 45px;
    text-decoration: none;
    color: #021019;
    transition: 0.3s ease;
}

.confirm-secondary:hover {
    transform: translateY(-6px);
}

.contact-error {
    background: #8b0000;
    color: white;
    padding: 20px;
    margin-bottom: 40px;
}