@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Outfit:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {

    --c-bg: #0B1A33;

    --c-bg2: #0F2040;

    --c-bg3: #122449;

    --c-bg4: #060E1E;

    --c-blue: #284574;

    --c-blue-lt: #3A5F9C;

    --c-blue-dim: #1C2E5D;

    --c-accent: #ebf1fc;

    --c-accent-lt: #6B95FF;

    --c-accent-dim: #224BA6;

    --c-accent-glow: rgba(58, 112, 226, 0.35);
    --c-accent-light-blue: #8aade6;

    --c-gold: #D4AF37;
    --c-gold-lt: #E1C582;
    --c-gold-dim: #AC9055;

    --c-cream: #F4F1E8;

    --c-muted: #8A9BB8;

    --c-border: rgba(58, 112, 226, 0.15);
    --c-border2: rgba(58, 112, 226, 0.07);

    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-circ: cubic-bezier(0.76, 0, 0.24, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);

    --max-w: 1140px;

    --f-display: 'Outfit', system-ui, sans-serif;       
    --f-body:    'Manrope', system-ui, sans-serif;      
    --f-ui:      'Space Grotesk', system-ui, sans-serif;

    --f-serif:   'Outfit', system-ui, sans-serif;
    --f-sans:    'Manrope', system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--c-accent-lt);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

a:hover {
    color: var(--c-accent);
}

body {
    background: var(--c-bg);
    color: var(--c-cream);
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 500; 
    line-height: 1.15;
    color: var(--c-cream);
    letter-spacing: -0.02em; 
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 600; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3.1rem); font-weight: 500; letter-spacing: -0.02em; }
h3 { font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 500; letter-spacing: 0; color: var(--c-accent-lt); }

p, li, address { 
    font-family: var(--f-body); 
    font-weight: 400; 
    color: var(--c-muted); 
}

p strong { 
    color: var(--c-cream); 
    font-weight: 600; 
}

label { 
    font-family: var(--f-ui); 
}

.eyebrow {
    font-family: var(--f-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em; 
    text-transform: uppercase;
    color: var(--c-accent);
    display: block;
    margin-bottom: 1rem;
}

.eyebrow--gold {
    color: var(--c-gold);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
}

.divider {
    width: 48px;
    height: 2px;
    background: var(--c-accent);
    margin: 1.5rem 0;
}

.divider--center {
    margin-left: auto;
    margin-right: auto;
}

.img-ph {
    background: linear-gradient(135deg, var(--c-bg2) 0%, var(--c-bg3) 100%);
    border: 1px dashed rgba(58, 112, 226, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 0.95rem;
    color: var(--c-accent-dim);
    text-align: center;
    padding: 2rem;
    width: 100%;
    transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}

.img-ph:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--f-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo),
        background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn--primary {
    background: var(--c-accent-dim);
    color: #FFFFFF;
    border: 1px solid transparent;
}

.btn--primary:hover {
    background: transparent;
    color: var(--c-bg);
    transform: translateY(-2px);
    border: 1px solid rgba(244, 241, 232, 0.2);
}

.btn--outline {
    background: transparent;
    color: var(--c-cream);
    border: 1px solid rgba(244, 241, 232, 0.2);
}

.btn--outline:hover,
.btn--primary:hover {
    border-color: var(--c-accent-lt);
    color: var(--c-accent-lt);
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--c-gold);
    color: var(--c-bg);
}

.btn--gold:hover {
    background: var(--c-gold-lt);
    color: var(--c-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.3);
}

.btn--glow {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn--glow:hover {
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.6);
}

.btn--blue {
    background: var(--c-accent-dim);
    color: var(--c-accent);
}

.btn--blue:hover {
    background: var(--c-accent-light-blue);
    color: var(--c-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(107, 149, 255, 0.3);
}

.btn--blue-glow {
    box-shadow: 0 4px 20px rgba(107, 149, 255, 0.4);
}

.btn--blue-glow {
    position: relative;
    background: transparent !important;
    border: none !important;
    overflow: hidden;
    z-index: 1;
    border-radius: 0;
    padding: 0.8rem 1.8rem;
    box-shadow: 0 4px 20px rgba(107, 149, 255, 0.2);
    color: white;
}

.btn--blue-glow::before {
    content: '';
    position: absolute;
    z-index: -2;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 500%;
    transform: translate(-50%, -50%) rotate(0deg);

    background-image: conic-gradient(transparent,
            var(--c-accent-dim),
            var(--c-accent-lt),
            var(--c-accent-light-blue),
            transparent 35%);
    animation: btn-rotate-border 3.5s linear infinite;
}

.btn--blue-glow::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background-color: var(--c-accent-dim);
    border-radius: 0;
    transition: background-color 0.3s var(--ease-soft);
}

.btn--blue-glow:hover::before {
    animation-duration: 3.0s;

}

.btn--blue-glow:hover::after {
    background-color: #0a1938;
    box-shadow: 0 0px 20px var(--c-accent);
    color: white!important;
}

.btn--ice-glow {
    position: relative;
    background: transparent !important;
    border: none !important;
    overflow: hidden;
    z-index: 1;
    border-radius: 0;
    padding: 0.8rem 1.8rem;

    box-shadow: 0 4px 20px rgba(235, 241, 252, 0.15);
    color: var(--c-bg2);
    transition: box-shadow 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
}

.btn--ice-glow::before {
    content: '';
    position: absolute;
    z-index: -2;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 500%;
    transform: translate(-50%, -50%) rotate(0deg);

    background-image: conic-gradient(
            transparent,
            rgba(255, 255, 255, 0.9),
            var(--c-accent),
            var(--c-accent-light-blue),
            transparent 35%
    );
    animation: btn-rotate-border 3.5s linear infinite;
}

.btn--ice-glow::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);

    background-color: var(--c-accent)!important;

    color: var(--c-bg2);
    border-radius: 0;
    transition: background-color 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

.btn--ice-glow:hover {
    color: var(--c-bg2);

    box-shadow: 0 6px 28px rgba(235, 241, 252, 0.4);
}

.btn--ice-glow:hover::before {
    animation-duration: 2.0s; 
}

.btn--ice-glow:hover::after {

    background-color: var(--c-bg); 

    box-shadow: inset 0 0 15px rgba(138, 173, 230, 0.2);
}

.t-eyebrow {
    opacity: 0;
}

.t-eyebrow.anim {
    animation: rsl-fadeInLeft 1.1s var(--ease-expo) both;
    animation-delay: var(--delay, 300ms);
}

.t-title {
    opacity: 0;
}

.t-title.anim {
    opacity: 1;
}

.t-title.anim .word {
    display: inline-block;
    opacity: 0;
    animation: rsl-wordReveal 1.2s var(--ease-expo) both;
    animation-delay: calc(var(--delay, 100ms) + var(--word-index, 0) * 80ms);
}

.t-body {
    opacity: 0;
}

.t-body.anim {
    animation: rsl-fadeInUp 1.1s var(--ease-expo) both;
    animation-delay: var(--delay, 200ms);
}

.t-cta {
    opacity: 0;
}

.t-cta.anim {
    animation: rsl-fadeInRight 1.1s var(--ease-expo) both;
    animation-delay: var(--delay, 400ms);
}

.img-reveal {
    position: relative;
    overflow: hidden;
}

.img-reveal::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: var(--curtain, var(--c-bg2));
    transform: scaleX(1);
    transform-origin: left center;
}

.img-reveal.anim::before {
    animation: rsl-curtainReveal 1.2s var(--ease-circ) both;
    animation-delay: var(--delay, 0ms);
}

.img-reveal .img-inner,
.img-reveal .img-ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateX(50px) scale(1.04);
    opacity: 0;
}

.img-reveal.anim .img-inner,
.img-reveal.anim .img-ph {
    animation: rsl-imgSlide 1.4s var(--ease-expo) both;
    animation-delay: var(--delay, 0ms);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 1.8rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.55s var(--ease-soft), padding 0.55s var(--ease-soft),
        box-shadow 0.55s var(--ease-soft), backdrop-filter 0.55s;
}

.site-header.scrolled {
    background: rgba(6, 14, 30, 0.96);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    padding: 1rem 2.5rem;
    border-bottom: 1px solid var(--c-border2);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    animation: rsl-fadeInLeft 1.1s 0.1s var(--ease-expo) both;
}

.site-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: none;
    transition: transform 0.4s var(--ease);
}

.site-logo img:hover {
    transform: scale(1.03);
}

.site-logo .logo-fallback {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--c-cream);
}

.site-logo .logo-fallback em {
    color: var(--c-accent);
}

.header-nav {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    animation: rsl-fadeInRight 0.9s 0.2s var(--ease-expo) both;
}

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    background: var(--c-bg4);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../../assets/images/corporativo/img-01.webp');
    background-size: cover;
    background-position: center center;
    transform: scale(1.05);
    animation: heroZoom 16s ease-out forwards;
    filter: brightness(0.35) saturate(0.7);
}

#particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: auto;
}

#particles-js canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.hero-ov {
    position: absolute;
    inset: 0;

    z-index: 2;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 740px;
    padding: 10rem 2rem 6rem;
    margin-left: max(2rem, calc((100vw - var(--max-w)) / 2));
}

.hero-inner .eyebrow {
    margin-bottom: 1.4rem;
}

.hero-inner h1 {
    color: var(--c-cream);
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.hero-inner p {
    font-size: 1.05rem;
    color: var(--c-accent);
    max-width: 580px;
    margin-bottom: 2.8rem;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.airport-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--f-ui);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-accent);
    opacity: 0.75;
}

.airport-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--c-accent);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-muted);
    opacity: 0.55;
    pointer-events: none;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--c-accent), transparent);
    animation: sp 2s ease-in-out infinite;
}

@keyframes sp {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}

#numeros {

    background:
        linear-gradient(rgba(15, 32, 64, 0.95), rgba(15, 32, 64, 0.95));
    background-size: cover;

    background-position: center;

    padding: 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.nums {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.num-item {
    text-align: center;
    padding: 3.2rem 1.5rem;
    position: relative;
    transition: background 0.4s var(--ease);
}

.num-item:hover {
    background: rgba(58, 112, 226, 0.04);
}

.num-item+.num-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: var(--c-border);
}

.num-item strong {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 700;
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.num-item span {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-muted);
    font-weight: 500;
}

#logos-clientes {
    background: var(--c-bg3);
    padding: 4.5rem 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    overflow: hidden;
}

.logos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.logos-header p {
    font-family: var(--f-ui);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin: 0;
}

.logos-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: logoScroll 36s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 3.5rem;
    min-width: 180px;
    border-right: 1px solid var(--c-border);
    opacity: 0.38;
    transition: opacity 0.4s var(--ease);
}

.logo-item:hover {
    opacity: 0.9;
}

.logo-item img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.4s var(--ease), opacity 0.4s var(--ease);
}

.logo-item:hover img {

    filter: brightness(0) saturate(100%) invert(44%) sepia(87%) saturate(3015%) hue-rotate(210deg) brightness(93%) contrast(92%);
}

#prova {
    background: var(--c-bg);
    padding: 6.5rem 0;
    border-bottom: 1px solid var(--c-border2);
}

.prova-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.prova-text h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.prova-text p {
    font-size: 0.95rem;
    max-width: 520px;
}

.prova-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--c-border);
    border: 1px solid var(--c-border);
}

.prova-logo-item {
    background: var(--c-bg2);
    padding: 2.2rem 1rem;
    text-align: center;
    font-family: var(--f-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--c-muted);
    letter-spacing: 0.06em;
    transition: all 0.35s var(--ease-soft);
}

.prova-logo-item:hover {
    background: var(--c-bg3);
    color: var(--c-accent-lt);
}

.setor-tag {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-top: 0.4rem;
    font-weight: 500;
}

.prova-footer-bar {
    grid-column: span 3;
    padding: 1.2rem;
    background: var(--c-bg2);
    text-align: center;
}

.prova-footer-bar p {
    font-size: 0.78rem;
    color: var(--c-muted);
}

#tipos {
    background: var(--c-bg2);
}

.tipos-header {
    margin-bottom: 4.5rem;
}

.tipos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--c-border);
    border: 1px solid var(--c-border);
}

.tipo-card {
    background: var(--c-bg2);
    padding: 3rem 2.4rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s var(--ease);
}

.tipo-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--c-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s var(--ease-expo);
}

.tipo-card:hover {
    background: var(--c-bg3);
}

.tipo-card:hover::before {
    transform: scaleY(1);
}

.tipo-icon {
    font-family: var(--f-display);
    font-size: 2.2rem;
    color: rgba(58, 112, 226, 0.18);
    margin-bottom: 0.8rem;
    line-height: 1;
    transition: color 0.4s var(--ease);
}

.tipo-card:hover .tipo-icon {
    color: var(--c-accent);
}

.tipo-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.9rem;
    color: var(--c-cream);
}

.tipo-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--c-muted);
}

#acesso {
    background: var(--c-bg);
    padding: 7rem 0;
}

.acesso-header {
    margin-bottom: 4rem;
}

.acesso-header h2 {
    margin-bottom: 1.2rem;
}

.acesso-text-wrap {
    max-width: 800px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.acesso-text-wrap p {
    font-size: 0.95rem;
    margin: 0;
}

.acesso-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;

}

.acesso-cards {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--c-border);
    border: 1px solid var(--c-border);
    height: 100%;

}

.acesso-card {
    background: var(--c-bg2);
    padding: 2rem 2.2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.4rem;
    align-items: start;
    flex: 1;

    opacity: 0;
    filter: blur(8px);
    transform: translateY(16px);
    transition:
        opacity 0.7s var(--ease-expo),
        filter 0.7s var(--ease-expo),
        transform 0.7s var(--ease-expo),
        background 0.3s var(--ease);
    transition-delay: var(--delay, 0ms);
}

.acesso-card.visible,
.acesso-card.s-reveal.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.acesso-card:hover {
    background: var(--c-bg3);
}

.acesso-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(58, 112, 226, 0.07);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.acesso-card-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--c-accent);
}

.acesso-card h4 {
    font-family: var(--f-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-cream);
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.acesso-card p {
    font-size: 0.85rem;
    margin: 0;
}

.acesso-card strong {
    color: var(--c-accent-lt);
    font-weight: 500;
}

.acesso-map {
    height: 100%;

    min-height: 400px;

    background: var(--c-bg3);
    border: 1px solid var(--c-border);
    overflow: hidden;
    position: relative;
}

.acesso-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.88) contrast(1.15);
    opacity: 0.7;
    transition: opacity 0.4s var(--ease);
}

.acesso-map iframe:hover {
    opacity: 0.95;
}

@media (max-width: 960px) {
    .acesso-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .acesso-map {
        height: 400px;

        position: relative;
    }
}

@media (max-width: 600px) {
    .acesso-card {
        padding: 1.5rem;
        gap: 1rem;
    }
}

#estrutura {
    background: var(--c-bg2);
}

.estrutura-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: start;
}

.estrutura-visual {
    height: 580px;
    position: sticky;
    top: 120px;
    overflow: hidden;
    border: 1px solid var(--c-border);
    z-index: 5;
    background-image: url("../images/corporativo/img-02.jpg");
    background-size: cover;
    background-position: center center;
}

.estrutura-visual .img-ph {
    height: 100%;
    border: none;
}

.estrutura-list {
    list-style: none;
}

.estrutura-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--c-border2);
    transition: padding-left 0.3s var(--ease);
}

.estrutura-item:first-child {
    border-top: 1px solid var(--c-border2);
}

.estrutura-item:hover {
    padding-left: 0.5rem;
}

.estrutura-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--c-cream);
}

.estrutura-item h3::before {
    content: '—';
    color: var(--c-accent);
    flex-shrink: 0;
    margin-top: 0.05em;
}

.estrutura-item p {
    font-size: 0.88rem;
    padding-left: 1.6rem;
    line-height: 1.7;
}

.sobre-img-block {
    position: relative;
}

.sobre-img-main video{
    width: 100%;
    aspect-ratio: 9/16; 
    --curtain: var(--c-bg2);
}

.sobre-img-accent {
    position: absolute;
    width: 46%;
    right: -2rem;
    bottom: -2.5rem;
    border: 5px solid var(--c-bg);
    box-shadow: 0 22px 56px rgba(44, 36, 24, 0.15);
    aspect-ratio: 1;
    --curtain: var(--c-bg);
    --delay: 350ms;
}

#galeria {
    background: var(--c-bg);
    padding-bottom: 7rem;
}

.galeria-header {
    text-align: center;
    padding: 7rem 0 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
    gap: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--c-bg2); 

    opacity: 0;
    filter: blur(12px);
    transform: translateY(30px) scale(0.95);

    transition: opacity 0.9s var(--ease-expo), filter 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
    transition-delay: var(--delay, 0ms);
}

.gallery-item.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; } 
.gallery-item:nth-child(5) { grid-column: span 2; } 
.gallery-item:nth-child(7) { grid-row: span 2; } 
.gallery-item:nth-child(13) { grid-column: span 2; grid-row: span 2; } 

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);

    transition: transform 0.9s var(--ease-expo);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.28) 100%);
    transform: skewX(-25deg);
    z-index: 4;
    pointer-events: none;
}

.gallery-item:hover::after {
    animation: galleryShine 0.85s var(--ease-soft);
}

@keyframes galleryShine {
    100% { left: 125%; }
}

.g-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to top, rgba(11, 26, 51, 0.92) 0%, rgba(11, 26, 51, 0.38) 40%, rgba(11, 26, 51, 0) 70%);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.55s var(--ease-expo), transform 0.55s var(--ease-expo);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1.8rem 1.6rem;
}

.gallery-item:hover .g-overlay {
    opacity: 1;
    transform: translateY(0);
}

.g-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--c-accent); 
    transition: width 0.55s 0.1s var(--ease-expo);
}

.gallery-item:hover .g-overlay::before {
    width: 100%;
}

.g-overlay span {
    font-family: var(--f-display) !important;
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-cream);
    letter-spacing: 0.04em;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.45s 0.08s var(--ease-expo), transform 0.45s 0.08s var(--ease-expo);
    display: block;
}

.gallery-item:hover .g-overlay span {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(13) {
        grid-column: auto;
        grid-row: auto;
    }
}

#fornecedores {
    background: var(--c-bg2);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 5.5rem 0;
}

.forn-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

.forn-text h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.forn-text p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.forn-nota,
.form-urgencia {
    background: rgba(58, 112, 226, 0.04);
    border: 1px solid var(--c-border);
    padding: 1.4rem 1.8rem;
    margin-top: 1.8rem;
}

.forn-nota p,
.form-urgencia p {
    font-family: var(--f-display);
    font-size: 1rem;
    color: var(--c-muted);
    margin: 0;
    line-height: 1.6;
}

.forn-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--c-border);
    padding: 0.5rem 1.1rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-muted);
    transition: all 0.3s var(--ease);
}

.tag:hover {
    background: rgba(58, 112, 226, 0.08);
    border-color: var(--c-accent);
    color: var(--c-accent-lt);
    transform: translateY(-1px);
}

#formulario {
    background: var(--c-bg3);
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5.5rem;
    align-items: start;
}

.form-intro h2 {
    margin-bottom: 1.2rem;
}

.form-intro p {
    font-size: 0.92rem;
    margin-bottom: 1.6rem;
}

.fg {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.4rem;
}

.fg label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 0.55rem;
}

.fg input,
.fg select,
.fg textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(58, 112, 226, 0.18);
    color: var(--c-cream);
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.95rem 1.2rem;
    border-radius: 0;
    outline: none;
    width: 100%;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
    -webkit-appearance: none;
}

.fg select {

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233A70E2' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 2.8rem;
    cursor: pointer;
}

.fg select option {
    background: var(--c-bg3);
    color: var(--c-cream);
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: rgba(138, 155, 184, 0.35);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--c-accent);
    background: rgba(58, 112, 226, 0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-disc {
    font-size: 0.72rem;
    color: var(--c-muted);
    text-align: center;
    margin-top: 0.9rem;
    opacity: 0.6;
}

.form-or {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 1.8rem 0;
    font-size: 0.68rem;
    color: var(--c-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-or::before,
.form-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--c-border);
}

#faq {
    background: var(--c-bg);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 5.5rem;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-item {
    border-bottom: 1px solid var(--c-border2);
}

.faq-item:first-child {
    border-top: 1px solid var(--c-border2);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.7rem 0;
    cursor: pointer;
    font-family: var(--f-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--c-cream);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: color 0.3s var(--ease);
    outline: none;
}

.faq-q:hover {
    color: var(--c-accent-lt);
}

.faq-ico {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border: 1px solid var(--c-accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--c-accent);
    transition: all 0.4s var(--ease-expo);
    position: relative;
}

.faq-ico::after {
    content: '+';
    display: block;
    line-height: 1;
}

.faq-item.open .faq-ico {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: var(--c-bg);
    transform: rotate(180deg);
}

.faq-item.open .faq-ico::after {
    content: '−';
}

.faq-a {
    display: none;
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.8;
    padding-bottom: 1.8rem;
    max-width: 580px;
    animation: rsl-fadeInUp 0.5s var(--ease-expo) both;
}

.faq-item.open .faq-a {
    display: block;
}

#cta-final {
    background:
        linear-gradient(rgba(15, 32, 64, 0.95), rgba(15, 32, 64, 0.95)),
        url("../images/corporativo/bg_footer.webp");
    background-size: cover;

    background-position: center center;

    padding: 8.5rem 0;
    text-align: center;
    border-top: 1px solid var(--c-border);
    position: relative;
    overflow: hidden;
}

#cta-final .eyebrow {
    text-align: center;
}

#cta-final h2 {
    margin-bottom: 1.2rem;
}

#cta-final p {
    max-width: 540px;
    margin: 0 auto 3.2rem;
    font-size: 1rem;
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.link-int {
    margin-top: 4.5rem;
    font-size: 0.78rem;
    color: var(--c-muted);
}

.link-int a {
    color: var(--c-accent-dim);
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 2px;
}

.link-int a:hover {
    color: var(--c-accent-lt);
    border-color: var(--c-accent-lt);
}

footer {
    background: var(--c-bg4);
    padding: 3.2rem 0;
    border-top: 1px solid var(--c-border2);
    text-align: center;
}

footer p {
    font-size: 0.72rem;
    color: white;
    opacity: 0.45;
    letter-spacing: 0.08em;
    margin: 0;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000; 
    background: rgba(6, 14, 30, 0.95); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.gallery-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.5s var(--ease-expo), opacity 0.5s var(--ease-expo);
    transition-delay: 0.1s; 
}

.gallery-lightbox.active .lightbox-img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.lightbox-close:hover {
    color: var(--c-accent-lt); 
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-img {
        max-width: 95vw;
        max-height: 80vh;
    }
    .lightbox-close {
        top: 1rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }
}

@media (max-width: 960px) {
    section {
        padding: 5rem 0;
    }

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

    .num-item:nth-child(3)::before {
        display: none;
    }

    .num-item:nth-child(n+3) {
        border-top: 1px solid var(--c-border2);
    }

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

    .acesso-layout,
    .estrutura-layout,
    .form-layout,
    .faq-layout,
    .forn-inner,
    .prova-inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .estrutura-visual,
    .faq-intro {
        position: static;
        height: 380px;
    }

    .galeria-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .galeria-grid li:first-child {
        grid-column: span 2;
        height: 260px;
    }

    .galeria-grid li {
        height: 200px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .prova-logos {
        grid-template-columns: 1fr 1fr;
    }

    .prova-logo-item:last-child {
        grid-column: span 2;
    }

    .hero-inner {
        margin-left: 0;
        padding-top: 8.5rem;
    }

    .site-header {
        padding: 1.2rem 2rem;
    }

    .site-header.scrolled {
        padding: 0.9rem 2rem;
    }
}

@media (max-width: 600px) {
    .nums {
        grid-template-columns: 1fr;
    }

    .num-item+.num-item::before {
        display: none;
    }

    .num-item {
        border-bottom: 1px solid var(--c-border2);
        padding: 2.2rem 1.2rem;
    }

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

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

    .galeria-grid li,
    .galeria-grid li:first-child {
        grid-column: auto;
        height: 220px;
    }

    .prova-logos {
        grid-template-columns: 1fr;
    }

    .prova-logo-item:last-child {
        grid-column: auto;
    }

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

    .hero-btns .btn {
        justify-content: center;
    }

    .logo-item {
        padding: 0 2rem;
        min-width: 130px;
    }

    .logo-item img {
        height: 28px;
    }
}
