/* ==========================================================================
   Design System & Variables (Dark Theme Default)
   ========================================================================== */
:root {
    --bg-main: #0E0E0E;
    --bg-surface: #151515;
    --bg-surface-glow: rgba(255, 140, 0, 0.06);

    --color-primary: #FFB800;
    --color-primary-hover: #FFC933;
    --color-secondary: #10b981;
    --color-secondary-hover: #059669;
    --color-accent: #1e293b;
    --color-warning: #f59e0b;
    --color-grunge-red: #0B2D6E;   /* Deep navy blue accent */

    --text-primary: #F0EAD6;       /* Off-white paper */
    --text-secondary: #A89880;
    --text-muted: #6B5E50;

    --border-color: rgba(240, 234, 214, 0.1);
    --border-glow: rgba(255, 184, 0, 0.25);

    --font-heading: 'Oswald', 'Impact', 'Outfit', sans-serif;
    --font-grunge: 'Oswald', 'Impact', sans-serif;
    --font-mono: 'Roboto Mono', 'Courier New', monospace;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --shadow-premium: 0 25px 60px -15px rgba(255, 184, 0, 0.15), 0 15px 40px -10px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 40px -8px rgba(255, 184, 0, 0.25);
    --radius-lg: 4px;              /* Grunge: sharp corners */
    --radius-md: 2px;

    --logo-rings: #F0EAD6;
    --ticker-height: 0rem;
    --navbar-offset-y: 2.2rem;
    --navbar-offset-y-scrolled: 0.75rem;

    /* Grunge texture overlay opacity */
    --grunge-opacity: 0.045;
}

/* ==========================================================================
   Light Mode Theme Variables
   ========================================================================== */
body.light-mode {
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-glow: rgba(255, 140, 0, 0.12);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #4b5563;

    --border-color: rgba(15, 23, 42, 0.08);
    --border-glow: rgba(255, 140, 0, 0.3);

    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.1);

    --logo-rings: #000000;
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    transition: background-color 0.3s ease;
}

/* ==========================================================================
   Grunge Keyframe Animations
   ========================================================================== */
@keyframes grunge-jitter {
    0%,100% { transform: translate(0,0) skewX(0deg); }
    10%      { transform: translate(-1px, 1px) skewX(0.3deg); }
    20%      { transform: translate(1px, -1px) skewX(-0.2deg); }
    30%      { transform: translate(-1px, 0) skewX(0.1deg); }
    50%      { transform: translate(1px, 1px) skewX(-0.3deg); }
    70%      { transform: translate(0, -1px) skewX(0.2deg); }
    90%      { transform: translate(1px, 0) skewX(0deg); }
}

@keyframes grunge-flicker {
    0%,100% { opacity: 1; }
    8%       { opacity: 0.88; }
    16%      { opacity: 1; }
    24%      { opacity: 0.92; }
    32%      { opacity: 1; }
    48%      { opacity: 0.85; }
    56%      { opacity: 1; }
    72%      { opacity: 0.94; }
    80%      { opacity: 1; }
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes glitch-clip {
    0%  { clip-path: inset(40% 0 50% 0); transform: translate(-3px, 0); }
    20% { clip-path: inset(10% 0 80% 0); transform: translate(3px, 0); }
    40% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 0); }
    60% { clip-path: inset(30% 0 60% 0); transform: translate(2px, 0); }
    80% { clip-path: inset(80% 0 5% 0);  transform: translate(-1px, 0); }
    100%{ clip-path: inset(0); transform: translate(0); }
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--bg-main);
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;

    /* Grunge dot grid */
    background-image:
        radial-gradient(circle, rgba(255, 184, 0, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(255, 184, 0, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 184, 0, 0.015) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 40px 40px;
}

body.has-fixed-ticker {
    --ticker-height: 2.35rem;
    --navbar-offset-y: calc(var(--ticker-height) + 1rem);
    --navbar-offset-y-scrolled: calc(var(--ticker-height) + 0.55rem);
    padding-top: var(--ticker-height);
}

/* Light mode: gradiente de céu contínuo em todo o corpo */
body.light-mode {
    background-color: transparent;
    background-image:
        radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(170deg,
            #5fa8c8 0%,
            #7dbcd8 12%,
            #a8cedf 26%,
            #c8d8e0 42%,
            #d8c8a0 62%,
            #e8d4a4 76%,
            #f0deb0 100%);
    background-size: 40px 40px, 100% 100%;
    background-attachment: fixed;
}

/* Grunge overlays — como divs reais para não conflitar com stacking context */
.grunge-noise-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: var(--grunge-opacity);
    pointer-events: none;
    z-index: 9000;
    mix-blend-mode: overlay;
}

.grunge-scanlines-overlay {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.025) 2px,
        rgba(0,0,0,0.025) 4px
    );
    pointer-events: none;
    z-index: 8999;
}

img,
video,
svg {
    max-width: 100%;
}

main,
section,
header,
footer,
.container,
.glass-card,
.quote-form,
.input-group,
.input-wrapper {
    min-width: 0;
}

input,
textarea,
select,
button {
    max-width: 100%;
}

body.light-mode {
    --bg-main: #c8d8e0;           /* ponto médio do gradiente céu */
    --bg-surface: rgba(255,255,255,0.55);
    --text-primary: #0B1E3D;
    --text-secondary: #2B3D5C;
    --text-muted: #4B6080;
    --border-color: rgba(11,30,61,0.1);
    --border-glow: rgba(11,45,110,0.2);
}

/* Global Typography */
h1, h2, h3, h4 {
    font-family: var(--font-grunge);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* ==========================================================================
   Grunge Ticker Banner
   ========================================================================== */
.grunge-ticker {
    width: 100%;
    background: var(--color-grunge-red);
    overflow: hidden;
    height: var(--ticker-height);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 930;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(0,0,0,0.4);
}

.grunge-ticker::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    opacity: 0.12;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.grunge-ticker-track {
    display: inline-flex;
    gap: 2rem;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: #F0EAD6;
    text-transform: uppercase;
}

.ticker-sep {
    color: rgba(240,234,214,0.5);
    font-size: 0.6rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-primary-hover);
}

/* Container */
.container {
    width: 100%;
    padding: 4rem clamp(1rem, 5%, 3rem);
}

/* Scroll Progress */
#scroll-progress {
    position: fixed;
    top: var(--ticker-height);
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--bg-main));
    z-index: 9999;
    width: 0%;
    transform-origin: left;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    z-index: 900;
    background: rgba(14, 14, 14, 0.25);
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 0.75rem clamp(1rem, 3%, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition: background 0.2s ease, padding 0.2s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 0 0.5px rgba(255,184,0,0.05);
}

body.light-mode .navbar-container {
    background: rgba(14, 14, 14, 0.4);
    border-color: rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 184, 0, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

/* Branded SVG Logo */
.logo-svg {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    color: var(--logo-rings);
    transition: color 0.3s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-grunge);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F0EAD6;
}

.brand-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.navbar-menu a {
    color: rgba(240,234,214,0.65);
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.navbar-menu a:hover {
    color: #F0EAD6;
    border-bottom-color: var(--color-primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Toggles */
.btn-icon-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* navbar é sempre dark — toggle fica sempre com estilo dark */
body.light-mode .btn-icon-toggle {
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.22);
    color: #1a1a1a;
}

.btn-icon-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

body.light-mode .btn-icon-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-primary);
}

.btn-icon-toggle i {
    width: 16px;
    height: 16px;
}

.lang-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.35));
}

.lang-label svg {
    display: block;
    width: 1.25rem;
    height: auto;
    border-radius: 2px;
}

/* Hide inactive icons in theme toggle */
.theme-icon-sun {
    display: none;
}
.theme-icon-moon {
    display: block;
}
body.light-mode .theme-icon-sun {
    display: block;
}
body.light-mode .theme-icon-moon {
    display: none;
}

.btn-nav {
    background: var(--color-primary);
    color: #000;
    border: none;
    padding: 0.55rem 1.4rem;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    font-family: var(--font-grunge);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.15s ease, transform 0.1s ease;
}

.btn-nav:hover {
    background: var(--color-primary-hover);
    color: #000;
    transform: translate(-1px, -1px);
    transform: scale(1.03);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px;
    padding-bottom: 80px;
    overflow: hidden;
    background: transparent; /* herda o gradiente do body.light-mode */
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0,0,0,0.015) 10px,
        rgba(0,0,0,0.015) 11px
    );
    pointer-events: none;
    z-index: 0;
}

.hero::after { display: none; }

.hero-container {
    position: relative;
    z-index: 3;
    padding: 0;
    text-align: center;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 900px);
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Hero Badge — grunge tag */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-grunge-red);
    border: none;
    color: #F0EAD6;
    padding: 0.35rem 1rem;
    border-radius: 0;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    animation: grunge-flicker 8s step-end infinite;
}

.badge-icon {
    width: 14px;
    height: 14px;
}

/* Hero Title & Description */
.hero-title {
    font-family: var(--font-grunge);
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 1.0;
    font-weight: 700;
    color: #0B1E3D;
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    overflow-wrap: break-word;
    animation: grunge-jitter 12s step-end infinite;
}

@supports (text-wrap: balance) {
    .hero-title {
        text-wrap: balance;
    }
}

.highlight-text {
    color: var(--color-grunge-red);
    display: inline-block;
}

/* Yellow Highlighter Brush Stroke */
.highlight-opalair {
    position: relative;
    color: inherit;
    z-index: 1;
    display: inline-block;
    transition: color 0.3s ease;
}

.highlight-opalair.active {
    color: #0b1220; /* Dark contrast text */
}

.highlight-opalair::after {
    content: "";
    position: absolute;
    left: -4px;
    top: 5%;
    height: 90%;
    width: 0;
    background: #ffb800; /* Golden Yellow highlighter */
    z-index: -1;
    transform: skewX(-10deg) rotate(-0.5deg);
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: left center;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 184, 0, 0.25);
}

.highlight-opalair.active::after {
    width: calc(100% + 8px);
}

/* Typewriter Cursor */
.typewriter-cursor {
    color: var(--color-primary);
    font-weight: 300;
    margin-left: 2px;
    animation: cursor-blink 0.8s step-end infinite;
}

@keyframes cursor-blink {
    from, to { color: transparent }
    50% { color: var(--color-primary) }
}

.hero-desc {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: #2B3D5C;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 560px;
    border-top: 2px solid var(--color-grunge-red);
    padding-top: 0.9rem;
    letter-spacing: 0.02em;
    text-align: center;
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 0;
    font-family: var(--font-grunge);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary {
    background: var(--color-primary);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    box-shadow: 4px 4px 0 rgba(255,184,0,0.3);
    transform: translate(-2px, -2px);
}

.btn-secondary {
    background: var(--color-primary);
    color: #000;
    border: none;
}

.btn-secondary:hover {
    background: var(--color-primary-hover);
    transform: translate(-2px, -2px);
}

.btn-outline {
    background: #000000;
    color: #ffffff;
    border: 1.5px solid #000000;
}

body.light-mode .btn-outline {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.btn-outline:hover {
    background: #222222;
    border-color: #222222;
    transform: translate(-2px, -2px);
}

body.light-mode .btn-outline:hover {
    background: #222222;
    border-color: #F0EAD6;
}

/* ==========================================================================
   Hero Plane Image Integration
   ========================================================================== */
.hero-plane-container {
    width: 100%;
    max-width: 820px;
    margin: 0 auto 2.5rem auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: hero-plane-float 8s ease-in-out infinite 2.5s;
}

/* Subtle accent glow behind the plane in dark mode */
.hero-plane-container::before {
    content: "";
    position: absolute;
    width: 680px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

body.light-mode .hero-plane-container::before {
    background: radial-gradient(circle, rgba(255, 184, 0, 0.28) 0%, transparent 70%);
}

.hero-plane-img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    perspective: 2400px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    opacity: 0;
    animation: plane-approach 2.5s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.hero-plane-img:hover {
    filter: drop-shadow(0 25px 45px rgba(255, 184, 0, 0.55));
    transform: scale(1.08);
}

/* Giro 3D: a vista lateral rotaciona e vira para a vista de frente, uma de cada vez */
.hero-plane-flip {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    animation: hero-plane-turn 13s cubic-bezier(0.45, 0, 0.55, 1) infinite 3s;
}
.hero-frame {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.hero-frame-1 {
    position: relative;
    transform: rotateY(0deg);
}
.hero-frame-2 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotateY(180deg) scale(0.9);
    animation: hero-frame2-approach 13s cubic-bezier(0.33, 0, 0.2, 1) infinite 3s;
}

/* Mantém o quadro 1, gira até a frente (quadro 2), segura e volta — em loop */
@keyframes hero-plane-turn {
    0%, 28%   { transform: rotateY(0deg); }
    50%, 78%  { transform: rotateY(180deg); }
    100%      { transform: rotateY(360deg); }
}

/* Quadro 2 (vista de frente): aproxima suavemente enquanto está virado para o usuário */
@keyframes hero-frame2-approach {
    0%, 50%   { transform: rotateY(180deg) scale(0.9); }
    78%       { transform: rotateY(180deg) scale(1.16); }
    100%      { transform: rotateY(180deg) scale(1.16); }
}

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
    .hero-plane-flip { animation: none; transform: none; }
    .hero-frame-2 { display: none; }
}

.hero-ticker {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    height: 2.65rem;
    margin: 0 auto 1.4rem;
    transform: translateX(-50%);
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--color-grunge-red);
    border-top: 1px solid rgba(255, 184, 0, 0.28);
    border-bottom: 1px solid rgba(255, 184, 0, 0.28);
    box-shadow: 0 12px 30px rgba(11, 45, 110, 0.22);
}

.hero-ticker::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 100%;
    opacity: 0.26;
    pointer-events: none;
}

.hero-ticker-track {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: max-content;
    min-width: max-content;
    flex-wrap: nowrap;
    animation: ticker-scroll 24s linear infinite;
    will-change: transform;
}

.hero-ticker-group {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 0.8rem;
    padding-right: 0.8rem;
    white-space: nowrap;
    color: #F0EAD6;
    font-family: var(--font-mono);
    font-size: clamp(0.78rem, 1.8vw, 1rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-ticker .ticker-sep {
    color: rgba(255, 184, 0, 0.72);
}

@keyframes plane-approach {
    0% {
        transform: scale(0.15) translateY(-85px) rotate(-1.5deg);
        filter: blur(8px) drop-shadow(0 0 0 rgba(0,0,0,0));
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(0px) rotate(0deg);
        filter: blur(0px) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
        opacity: 1;
    }
}

@keyframes hero-plane-float {
    0% {
        transform: scale(1) translateY(0px) rotate(0deg);
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    }
    50% {
        transform: scale(1.08) translateY(-12px) rotate(0.5deg);
        filter: drop-shadow(0 25px 40px rgba(255, 184, 0, 0.45));
    }
    100% {
        transform: scale(1) translateY(0px) rotate(0deg);
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    }
}

@media (max-width: 768px) {
    .hero-plane-container {
        max-width: 480px;
        margin-bottom: 1.5rem;
    }
    .hero-frame {
        max-height: 260px;
    }
}

@media (max-width: 480px) {
    .hero-plane-container {
        max-width: 380px;
        margin-bottom: 1.25rem;
    }
    .hero-frame {
        max-height: 210px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .service-photo-track,
    .space-gallery-track {
        animation: none;
    }
}

/* ==========================================================================
   Glassmorphism System Styles
   ========================================================================== */
.glass-card {
    background: rgba(21, 21, 21, 0.85);
    border: 1px solid rgba(240, 234, 214, 0.1);
    border-radius: 0;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: background 0.15s step-end, border-color 0.15s step-end;
}

body.light-mode .glass-card {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(11,30,61,0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

/* ==========================================================================
   Common Section Styles
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-family: var(--font-grunge);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    overflow-wrap: break-word;
}

@supports (text-wrap: balance) {
    .section-header h2 {
        text-wrap: balance;
    }
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Services Section (Features)
   ========================================================================== */
.features {
    background-color: transparent;
    padding: 6rem 0;
}

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

.service-card {
    border-radius: var(--radius-lg);
    padding: 3rem 2.25rem;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: var(--mouse-y, 0px);
    left: var(--mouse-x, 0px);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--bg-surface-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-premium);
}

.service-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
}

.service-icon-box i,
.service-icon-box svg {
    width: 28px;
    height: 28px;
    stroke-width: 2px;
}

/* Branded Accent Glows */
.yellow-glow {
    background: rgba(255, 140, 0, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(255, 140, 0, 0.2);
}
.dark-glow {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

body.light-mode .dark-glow {
    background: rgba(15, 23, 42, 0.05);
    color: #000;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Segunda dobra — texto + vídeo 9:16 */
.intro-video-section {
    background: #0E0E0E;
    padding: 6rem clamp(1.5rem, 6%, 5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Glow sutil de fundo */
.intro-video-section::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11,45,110,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.intro-video-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Texto */
.intro-video-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-video-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.intro-video-tag::before {
    content: "";
    width: 24px;
    height: 1.5px;
    background: #ffffff;
    display: inline-block;
}

.intro-video-title {
    font-family: var(--font-grunge);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #F0EAD6;
    line-height: 1.0;
}

.intro-video-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(240,234,214,0.55);
    line-height: 1.75;
    max-width: 480px;
    border-left: 2px solid rgba(11,45,110,0.5);
    padding-left: 1rem;
}

/* Stats */
.intro-video-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.intro-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.intro-stat-num {
    font-family: var(--font-grunge);
    font-size: 2.2rem;
    font-weight: 700;
    color: #F0EAD6;
    line-height: 1;
    letter-spacing: 0.04em;
}

.intro-stat-unit {
    font-size: 1.2rem;
    color: var(--color-primary);
}

.intro-stat-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240,234,214,0.45);
}

.intro-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(240,234,214,0.15);
    flex-shrink: 0;
}

/* Imagem editorial */
.intro-image-card {
    position: relative;
    width: clamp(280px, 34vw, 430px);
    aspect-ratio: 1;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.7), 8px 8px 0 rgba(11,45,110,0.45);
    border: 1px solid rgba(240,234,214,0.1);
}

.intro-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.86) 100%);
    pointer-events: none;
}

.intro-image-caption {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1rem;
    z-index: 1;
    display: grid;
    gap: 0.15rem;
}

.intro-image-caption span {
    color: #F0EAD6;
    font-family: var(--font-grunge);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.intro-image-caption small {
    color: rgba(240,234,214,0.68);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.45;
}

/* Mobile: empilha */
@media (max-width: 768px) {
    .intro-video-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .intro-video-tag {
        justify-content: center;
    }
    .intro-video-sub {
        border-left: none;
        border-top: 2px solid rgba(11,45,110,0.5);
        padding-left: 0;
        padding-top: 0.75rem;
    }
    .intro-video-stats {
        justify-content: center;
    }
    .intro-image-card {
        width: min(360px, 86vw);
    }
}

.service-photo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 2.5rem 0 2.25rem;
    padding: 0.35rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.service-photo-track {
    display: flex;
    width: max-content;
    animation: servicePhotoMarquee 42s linear infinite;
    will-change: transform;
}

.service-photo-set {
    display: flex;
    flex-shrink: 0;
    gap: 1rem;
    padding-right: 1rem;
}

.service-photo {
    position: relative;
    display: block;
    width: 100%;
    min-height: 210px;
    aspect-ratio: 4 / 3;
    padding: 0;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    appearance: none;
    cursor: pointer;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-image:
        linear-gradient(180deg, rgba(3, 7, 18, 0.08), rgba(3, 7, 18, 0.78)),
        var(--photo),
        linear-gradient(135deg, rgba(255, 140, 0, 0.12), rgba(0, 0, 0, 0.55));
    background-size: 108%;
    background-position: center;
    box-shadow: inset 0 -40px 70px rgba(0, 0, 0, 0.35);
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-size 0.35s ease;
}

.service-photo:hover,
.service-photo:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255, 140, 0, 0.58);
    background-size: 116%;
    box-shadow: inset 0 -48px 80px rgba(0, 0, 0, 0.45), 0 18px 42px rgba(0, 0, 0, 0.28);
}

.service-photo:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.service-carousel-photo {
    flex: 0 0 auto;
    width: auto;
    height: clamp(300px, 46vw, 470px);
    min-height: 0;
    /* Mesma proporção das fotos (retrato 3:4) → preenche inteiro, sem faixas e sem corte */
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    background-image:
        linear-gradient(180deg, rgba(3, 7, 18, 0), rgba(3, 7, 18, 0.10)),
        var(--photo),
        linear-gradient(135deg, rgba(13, 18, 32, 0.5), rgba(8, 12, 22, 0.5));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.service-carousel-photo:hover,
.service-carousel-photo:focus-visible {
    background-size: cover;
}

body.light-mode .service-photo {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(15, 23, 42, 0.72)),
        var(--photo),
        linear-gradient(135deg, rgba(255, 140, 0, 0.16), rgba(15, 23, 42, 0.3));
}

body.light-mode .service-carousel-photo {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(15, 23, 42, 0.06)),
        var(--photo),
        linear-gradient(135deg, rgba(232, 236, 243, 0.5), rgba(223, 228, 236, 0.5));
}

/* ==========================================================================
   Space Section
   ========================================================================== */
.space-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 140, 0, 0.025), transparent 36%),
        radial-gradient(circle at 8% 22%, rgba(255, 140, 0, 0.08), transparent 28%),
        radial-gradient(circle at 92% 74%, rgba(255, 255, 255, 0.05), transparent 34%),
        rgba(11, 19, 43, 0.16);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

body.light-mode .space-section {
    background: rgba(255,255,255,0.2);
    border-color: rgba(11,30,61,0.08);
}

.space-header {
    margin-bottom: 2.75rem;
}

.space-gallery-marquee {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 0.65rem 0 1rem;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.space-gallery-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: spacePhotoMarquee 78s linear infinite;
    will-change: transform;
}

.space-photo-set {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: clamp(0.85rem, 1.4vw, 1.35rem);
    padding-right: clamp(0.85rem, 1.4vw, 1.35rem);
}

.space-gallery-photo {
    flex: 0 0 auto;
    width: auto;
    height: clamp(310px, 34vw, 500px);
    min-height: 0;
    aspect-ratio: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;
    background: #0b1220;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

/* Imagem inteira (proporção natural): altura fixa, largura conforme a foto — sem corte e sem faixas */
.space-gallery-photo img,
.space-gallery-photo video {
    display: block;
    height: 100%;
    width: auto;
    transition: transform 0.4s ease;
}

.space-gallery-photo:nth-child(4n + 1),
.space-gallery-photo:nth-child(4n + 3) {
    height: clamp(340px, 38vw, 540px);
}

.space-gallery-photo:hover,
.space-gallery-photo:focus-visible {
    transform: translateY(-4px);
}
.space-gallery-photo:hover img,
.space-gallery-photo:focus-visible img {
    transform: scale(1.04);
}

body.light-mode .space-gallery-photo {
    border-color: rgba(15, 23, 42, 0.1);
    background: #e7ecf3;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
}

/* Vídeos no marquee do espaço (cadastrados pelo admin) */
.space-gallery-video {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.space-gallery-video video {
    position: static;
    width: auto;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
    pointer-events: none;
}

@keyframes servicePhotoMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes spacePhotoMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

body.lightbox-open {
    overflow: hidden;
}

.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 3vw, 2.5rem);
    background: rgba(3, 7, 18, 0.88);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.photo-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.photo-lightbox-panel {
    position: relative;
    width: min(96vw, 1100px);
    max-height: 90vh;
    display: grid;
    gap: 0.9rem;
}

.photo-lightbox img,
.photo-lightbox-video {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: #000;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.photo-lightbox-video[hidden] {
    display: none;
}

.photo-lightbox-caption {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-transform: uppercase;
}

.photo-lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--text-primary);
    background: rgba(3, 7, 18, 0.68);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.photo-lightbox-close:hover,
.photo-lightbox-close:focus-visible {
    transform: scale(1.04);
    background: rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.55);
}

.photo-lightbox-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

body.light-mode .photo-lightbox-panel {
    background: rgba(248, 250, 252, 0.97);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}

body.light-mode .photo-lightbox-caption {
    color: #0f172a;
}

body.light-mode .photo-lightbox-close {
    border-color: rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

body.light-mode .photo-lightbox-close:hover,
body.light-mode .photo-lightbox-close:focus-visible {
    background: rgba(15, 23, 42, 0.12);
    border-color: rgba(255, 140, 0, 0.5);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Service Features List */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    text-align: left;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.service-features-list svg {
    color: var(--color-primary); /* Golden yellow checkmarks */
    flex-shrink: 0;
}

.btn-toggle {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.light-mode .btn-toggle {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.08);
}

.btn-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

body.light-mode .btn-toggle:hover {
    background: rgba(15, 23, 42, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    min-width: 0;
}

.input-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.input-icon {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    background: rgba(3, 7, 18, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

body.light-mode .input-wrapper input,
body.light-mode .input-wrapper textarea {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
}

.input-wrapper textarea {
    padding-left: 2.75rem;
    resize: vertical;
}

.textarea-icon {
    top: 1rem;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.15);
    background: rgba(3, 7, 18, 0.8);
}

body.light-mode .input-wrapper input:focus,
body.light-mode .input-wrapper textarea:focus {
    background: #ffffff;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

/* Table Styles */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

#media-list-table {
    width: 100%;
    border-collapse: collapse;
    background-color: transparent;
    text-align: left;
}

#media-list-table th,
#media-list-table td {
    padding: 1.25rem 2.25rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

#media-list-table th {
    background-color: rgba(11, 19, 43, 0.25);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

body.light-mode #media-list-table th {
    background-color: rgba(15, 23, 42, 0.03);
}

#media-list-table tbody tr {
    transition: background-color 0.2s ease;
}

#media-list-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

body.light-mode #media-list-table tbody tr:hover {
    background-color: rgba(15, 23, 42, 0.01);
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-warning {
    background: rgba(255, 140, 0, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.badge-pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* ==========================================================================
   Operations Gallery Section ("Atendimentos")
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
}

.gallery-media-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* Altura limitada (não fica gigante) e preenche a largura — sem faixas laterais */
.gallery-media-wrapper img,
.gallery-media-wrapper video {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-media-wrapper img {
    transform: scale(1.05);
}

.gallery-info-box {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.gallery-info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-info-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.badge-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.25rem 0.50rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

body.light-mode .gallery-media-wrapper {
    background: #e2e8f0;
}

body.light-mode .badge-type {
    background: rgba(15, 23, 42, 0.65);
    color: #ffffff;
}

/* ==========================================================================
   Instagram Section Mockup Styling
   ========================================================================== */
.instagram-card {
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 140, 0, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 140, 0, 0.08), transparent 34%),
        rgba(11, 19, 43, 0.45);
}

body.light-mode .instagram-card {
    background:
        linear-gradient(135deg, rgba(255, 140, 0, 0.13), transparent 34%),
        rgba(255, 255, 255, 0.78);
}

.insta-follow-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 2rem;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(255, 140, 0, 0.26);
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.1);
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.instagram-brand-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 7px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(253, 29, 29, 0.22);
}

.insta-profile-header {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.25rem;
    align-items: flex-start;
}

.insta-avatar-wrapper {
    flex-shrink: 0;
}

.insta-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #1e293b;
    padding: 5px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.insta-avatar svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-main);
    color: var(--logo-rings);
    box-sizing: border-box;
    padding: 10px;
    transition: background 0.3s ease, color 0.3s ease;
}

.insta-profile-details {
    flex-grow: 1;
}

.insta-username-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.insta-identity {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.insta-name-line {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.insta-username {
    font-size: 1.75rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0;
}

.insta-handle {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.insta-verified-icon {
    color: #0095f6; /* Official Instagram Verified Blue */
    width: 20px;
    height: 20px;
    fill: #0095f6;
}

/* Adjust fill so inside matches checkmark */
.insta-verified-icon path {
    stroke: #fff;
    stroke-width: 2.5px;
}

.verified-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.btn-insta-follow {
    font-size: 0.9rem;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    white-space: nowrap;
}

.insta-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.insta-stats span strong {
    font-weight: 600;
}

.insta-bio {
    line-height: 1.6;
}

.bio-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.bio-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.insta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.insta-link i {
    width: 15px;
    height: 15px;
}

/* Grid layout for posts */
.insta-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.insta-post {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.insta-post-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.insta-post-img-1 {
    background-image: url('insta_assets/voeopalair_1688995507_3143844634967059841_57430703394.jpg');
}
.insta-post-img-2 {
    background-image: url('insta_assets/voeopalair_1687440965_3130804190619453964_57430703394.jpg');
}
.insta-post-img-3 {
    background-image: url('insta_assets/voeopalair_1688579251_3140352829818569758_57430703394.jpg');
}
.insta-post-img-4 {
    background-image: url('insta_assets/voeopalair_1781541469_3920172918742076892_57430703394.jpg');
}
.insta-post-img-5 {
    background-image: url('insta_assets/voeopalair_1781541469_3920175173188770665_57430703394.jpg');
}
.insta-post-img-6 {
    background-image: url('insta_assets/voeopalair_1779239948_3900868579795537667_57430703394.jpg');
}

.insta-visual-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.insta-visual-icon.color-yellow {
    color: var(--color-primary);
}

.insta-visual-icon.color-white {
    color: #ffffff;
}

/* Graphical fallback visual squares */
.overlay-dark-blue {
    background: linear-gradient(135deg, #0b132b 0%, #1e293b 100%);
}
.overlay-dark-yellow {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, #030712 100%);
}

.insta-visual-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.insta-visual-content span {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.insta-visual-content small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.insta-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.insta-post:hover .insta-post-overlay {
    opacity: 1;
}

.insta-post:hover .insta-post-img {
    transform: scale(1.04);
}

.insta-overlay-stats {
    display: flex;
    gap: 1.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.insta-overlay-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.insta-overlay-stats i {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* ==========================================================================
   Important Operational Information Section Styling
   ========================================================================== */
.info-board-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.info-video-shell {
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.info-video-shell-portrait {
    width: min(100%, 420px);
    justify-self: center;
    padding: 0.85rem;
}

.info-video-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 12px;
    background: #000;
    object-fit: cover;
}

.info-video-shell-portrait video {
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.info-video-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 0.35rem 0.25rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.info-video-caption i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.info-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-item-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.08);
}

.info-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.25);
    color: var(--color-primary);
    flex-shrink: 0;
}

.info-item-icon i,
.info-item-icon .verified-svg {
    width: 24px;
    height: 24px;
}

.info-item-content {
    flex-grow: 1;
}

.info-item-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-item-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   FAQ Section Styling
   ========================================================================== */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-accordion-container details {
    background: rgba(11, 19, 43, 0.45);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body.light-mode .faq-accordion-container details {
    background: rgba(255, 255, 255, 0.75);
}

.faq-accordion-container details[open] {
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.08);
    background: rgba(11, 19, 43, 0.6);
}

body.light-mode .faq-accordion-container details[open] {
    background: rgba(255, 255, 255, 0.95);
}

.faq-accordion-container summary {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
    transition: color 0.3s ease;
}

.faq-accordion-container summary::-webkit-details-marker {
    display: none;
}

.faq-accordion-container summary::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-primary);
    border-bottom: 2px solid var(--text-primary);
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-right: 0.5rem;
}

.faq-accordion-container details[open] summary::after {
    transform: rotate(-135deg);
    border-color: var(--color-primary);
}

.faq-accordion-container details[open] summary {
    color: var(--color-primary);
    border-bottom: 1px solid var(--border-color);
}

.faq-accordion-container .faq-content {
    padding: 1.25rem 1.5rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-secondary);
    animation: faqSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes faqSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Mobile Navigation Menu & Toggle Button Styling
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle .menu-icon-close {
    display: none;
}

.btn-nav-desktop {
    display: inline-flex;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    background: rgba(3, 7, 18, 0.96);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

body.light-mode .mobile-menu-overlay {
    background: rgba(248, 250, 252, 0.97);
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 90%;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.is-open .mobile-menu-content {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
}

.mobile-menu-links li a {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.mobile-menu-links li a:hover {
    color: var(--color-primary);
    transform: scale(1.05);
}

.mobile-menu-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}

.mobile-quote-btn {
    width: 100%;
    max-width: 320px;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    text-align: center;
    justify-content: center;
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .navbar-container {
    z-index: 1001;
}

/* ==========================================================================
   Hangar Directions Section
   ========================================================================== */
.hangar-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.04), rgba(11, 19, 43, 0.16));
}

body.light-mode .hangar-section {
    background: rgba(255,255,255,0.18);
    border-color: rgba(11,30,61,0.08);
}

.hangar-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.75fr);
    gap: 4rem;
    align-items: center;
}

.board-eyebrow {
    display: inline-block;
    margin-bottom: 0.6rem;
    color: var(--color-primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hangar-info h2 {
    max-width: 540px;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.hangar-info p {
    max-width: 560px;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.7;
}

.hangar-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 620px;
    margin-bottom: 2rem;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: rgba(3, 7, 18, 0.36);
}

body.light-mode .hangar-address {
    background: rgba(255, 255, 255, 0.68);
}

.hangar-address-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 184, 0, 0.34);
    background: rgba(255, 184, 0, 0.12);
    color: var(--color-primary);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hangar-address-icon i,
.hangar-address-icon svg,
.hangar-address-pin {
    display: block;
    width: 1.35rem;
    height: 1.35rem;
    stroke-width: 2.35;
}

body.light-mode .hangar-address-icon {
    background: rgba(11, 45, 110, 0.08);
    border-color: rgba(11, 45, 110, 0.18);
    color: #0B2D6E;
}

.hangar-address address {
    color: var(--text-primary);
    font-style: normal;
    line-height: 1.65;
}

.hangar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hangar-video-shell {
    justify-self: center;
    width: min(100%, 390px);
    padding: 0.75rem;
    border-radius: 22px;
    box-shadow: var(--shadow-premium);
}

.hangar-video-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 0;
    border-radius: 16px;
    background: #000;
    object-fit: cover;
}

.hangar-video-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 0.35rem 0.25rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.hangar-video-caption i {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    color: var(--color-primary);
}

/* ==========================================================================
   Quote Section (Orçamento)
   ========================================================================== */
.quote-section {
    background-color: rgba(11, 19, 43, 0.15);
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

body.light-mode .quote-section {
    background: rgba(255,255,255,0.22);
    border-color: rgba(11,30,61,0.08);
}

.quote-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.quote-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
}

.quote-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.info-list-item i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.text-yellow {
    color: var(--color-primary);
}

.quote-form-container {
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    width: 100%;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
    min-width: 0;
}

.btn-block {
    width: 100%;
    padding: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 140, 0, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(3, 7, 18, 0.82), #020617 72%);
    border-top: 1px solid var(--border-color);
    padding: 4rem clamp(1rem, 5%, 3rem) 3rem;
    color: var(--text-muted);
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.04) 0.5px, transparent 0.5px),
        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: 80px 80px, 160px 160px, 80px 80px, 80px 80px;
    background-position: 0 0, 40px 40px, 0 0, 0 0;
    opacity: 0.4;
    pointer-events: none;
}

body.light-mode .footer {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 140, 0, 0.14), transparent 28%),
        linear-gradient(180deg, #0f172a, #020617 72%);
    color: #94a3b8;
}

.footer-container {
    position: relative;
    z-index: 1;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) minmax(180px, 1fr);
    align-items: center;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand-block {
    display: grid;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff; /* Footer logo text stays white */
}

.footer-logo .logo-svg {
    color: #ffffff;
}

.footer-logo .brand-title {
    color: #ffffff;
}

.footer-summary {
    max-width: 430px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    gap: 0.75rem;
    justify-self: end;
}

.footer-links a {
    color: var(--text-secondary);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-contact-card {
    justify-self: end;
    width: min(100%, 280px);
    padding: 1.5rem;
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 16px;
    background: rgba(255, 140, 0, 0.05);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.footer-card-label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-instagram-link {
    display: inline-flex;
    align-items: center;
    width: 100%;
    gap: 0.85rem;
    color: var(--text-primary);
}

.footer-instagram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 14px;
    background: transparent;
    box-shadow: 0 12px 28px rgba(253, 29, 29, 0.18);
    overflow: hidden;
}

.footer-instagram-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-instagram-link strong,
.footer-instagram-link small {
    display: block;
}

.footer-instagram-link strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.footer-instagram-link small {
    margin-top: 0.1rem;
    color: var(--color-primary);
    font-size: 0.84rem;
    font-weight: 800;
}

.footer-instagram-link:hover .footer-instagram-icon {
    transform: translateY(-2px) scale(1.03);
}

.footer-instagram-icon {
    transition: transform 0.2s ease;
}

body.light-mode .footer-links a,
body.light-mode .footer-summary {
    color: #cbd5e1;
}

.footer-service-strip {
    display: grid;
    gap: 0.55rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.65rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    text-align: center;
}

.footer-services {
    color: var(--color-primary);
    font-family: var(--font-grunge);
    font-size: clamp(1rem, 2.4vw, 1.45rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-service-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1rem;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-service-contact span,
.footer-service-contact a {
    color: inherit;
}

.footer-service-contact a {
    text-decoration: underline;
    text-decoration-color: rgba(255, 184, 0, 0.45);
    text-underline-offset: 4px;
}

.footer-service-contact a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-credit a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Seletor de Tipo de Atendimento (Executivo / Aeromédico) — com avião animado
   ========================================================================== */
.quote-tipo-group { margin-bottom: 1.25rem; }

.tipo-selector {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    padding-top: 30px;
}

/* Aviãozinho que voa para a opção escolhida */
.tipo-plane {
    position: absolute;
    top: 2px;
    left: 25%;
    width: 26px;
    height: 26px;
    margin-left: -13px;
    color: var(--color-primary);
    pointer-events: none;
    transition: left 0.55s cubic-bezier(0.5, -0.35, 0.3, 1.45);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35));
    z-index: 3;
}
.tipo-plane svg { width: 100%; height: 100%; display: block; }

.tipo-selector[data-active="aeromedico"] .tipo-plane { left: 75%; }

@keyframes tipoPlaneFly {
    0%   { transform: translateY(0) rotate(0deg) scale(1); }
    35%  { transform: translateY(-12px) rotate(12deg) scale(1.12); }
    70%  { transform: translateY(-4px) rotate(-4deg) scale(1.05); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
}
.tipo-plane.is-flying { animation: tipoPlaneFly 0.6s ease; }

/* Opções */
.tipo-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 1rem 0.5rem;
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.tipo-option svg { width: 22px; height: 22px; transition: transform 0.3s ease; }
.tipo-option:hover { transform: translateY(-2px); color: var(--text-primary); }

.tipo-option.is-active {
    border-color: var(--color-primary);
    color: var(--text-primary);
    background: rgba(255, 184, 0, 0.08);
    box-shadow: 0 0 0 1px var(--color-primary) inset, 0 10px 26px rgba(255, 184, 0, 0.12);
}
.tipo-option.is-active svg { transform: scale(1.12); color: var(--color-primary); }

body.light-mode .tipo-option { background: rgba(15, 23, 42, 0.03); }
body.light-mode .tipo-option.is-active { background: rgba(255, 184, 0, 0.14); }

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.7rem;
    border: 1px solid rgba(255, 140, 0, 0.18);
    border-radius: 999px;
    color: var(--color-primary);
    background: rgba(255, 140, 0, 0.08);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.footer-badges i {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.whatsapp-floating-btn {
    --whatsapp-green-rgb: 37, 211, 102;
    position: fixed;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 920;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 16px 36px rgba(var(--whatsapp-green-rgb), 0.28), 0 0 0 0 rgba(var(--whatsapp-green-rgb), 0.5);
    transition: box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    animation: whatsapp-pulse 2.2s ease-out infinite;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 20px 40px rgba(var(--whatsapp-green-rgb), 0.45);
}

.whatsapp-floating-btn img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.mobile-menu-open .whatsapp-floating-btn {
    opacity: 0;
    pointer-events: none;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 16px 36px rgba(var(--whatsapp-green-rgb), 0.34), 0 0 0 0 rgba(var(--whatsapp-green-rgb), 0.56);
    }
    70% {
        box-shadow: 0 16px 36px rgba(var(--whatsapp-green-rgb), 0.34), 0 0 0 16px rgba(var(--whatsapp-green-rgb), 0);
    }
    100% {
        box-shadow: 0 16px 36px rgba(var(--whatsapp-green-rgb), 0.34), 0 0 0 0 rgba(var(--whatsapp-green-rgb), 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .whatsapp-floating-btn {
        animation: none;
    }

    .js-reveal,
    .js-reveal .glass-card,
    .js-reveal .gallery-item,
    .js-reveal .info-item-card,
    .js-reveal .faq-accordion-container details,
    .js-reveal .quote-form-container,
    .js-reveal .hangar-address,
    .js-reveal .hangar-video-shell,
    .js-reveal .info-video-shell {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==========================================================================
   Scroll-Driven Animations & Keyframes
   ========================================================================== */
/* Scroll shrinking navigation animation */
@keyframes shrink-nav {
    to {
        top: 0;
        padding: 0.4rem 1.5rem;
        background: rgba(14, 14, 14, 0.4);
        border-bottom-color: rgba(255, 184, 0, 0.25);
        box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 0 0.5px rgba(255,184,0,0.05);
    }
}

/* Entry Scroll Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: no-preference) {
    @supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
        .navbar-container {
            animation: shrink-nav auto linear both;
            animation-timeline: scroll(block root);
            animation-range: 0px 100px;
        }
    }
    
    @supports ((animation-timeline: view()) and (animation-range: entry)) {
        .section-reveal {
            animation: fade-in-up auto cubic-bezier(0.16, 1, 0.3, 1) both;
            animation-timeline: view();
            animation-range: entry 10% entry 75%;
        }
    }
}

/* Active style state toggled by scroll fallback JS if native timeline is not supported */
.navbar-scrolled {
    top: 0;
    padding: 0.4rem 1.5rem;
    background: rgba(14, 14, 14, 0.4);
    border-bottom-color: rgba(255, 184, 0, 0.25);
    box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 0 0.5px rgba(255,184,0,0.05);
}

body.light-mode .navbar-scrolled {
    background: rgba(14, 14, 14, 0.4);
    border-bottom-color: rgba(255, 184, 0, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* JS Fallback setup class */
.js-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.98);
}

@media (prefers-reduced-motion: no-preference) {
    .js-reveal .glass-card,
    .js-reveal .gallery-item,
    .js-reveal .info-item-card,
    .js-reveal .faq-accordion-container details,
    .js-reveal .quote-form-container,
    .js-reveal .hangar-address,
    .js-reveal .hangar-video-shell,
    .js-reveal .info-video-shell {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
        transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-active .glass-card,
    .reveal-active .gallery-item,
    .reveal-active .info-item-card,
    .reveal-active .faq-accordion-container details,
    .reveal-active .quote-form-container,
    .reveal-active .hangar-address,
    .reveal-active .hangar-video-shell,
    .reveal-active .info-video-shell {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .reveal-active .glass-card:nth-child(2),
    .reveal-active .gallery-item:nth-child(2),
    .reveal-active .info-item-card:nth-child(2),
    .reveal-active .faq-accordion-container details:nth-child(2) {
        transition-delay: 70ms;
    }

    .reveal-active .glass-card:nth-child(3),
    .reveal-active .gallery-item:nth-child(3),
    .reveal-active .info-item-card:nth-child(3),
    .reveal-active .faq-accordion-container details:nth-child(3) {
        transition-delay: 140ms;
    }

    .reveal-active .glass-card:nth-child(4),
    .reveal-active .gallery-item:nth-child(4),
    .reveal-active .info-item-card:nth-child(4),
    .reveal-active .faq-accordion-container details:nth-child(4) {
        transition-delay: 210ms;
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1120px) {
    .navbar-container {
        padding: 0.6rem 1.25rem;
    }
    /* menu permanece visível — apenas reduz gap */
    .navbar-menu {
        gap: 1rem;
    }
    .navbar-menu a {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .navbar-menu {
        gap: 0.75rem;
    }
    .navbar-menu a {
        font-size: 0.82rem;
    }
    .info-board-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .info-video-shell-portrait {
        width: min(100%, 360px);
    }
    .hero-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        gap: 0;
        text-align: center;
        justify-items: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .quote-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hangar-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hangar-video-shell {
        justify-self: start;
        width: min(100%, 360px);
    }
    .insta-profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    .insta-username-row {
        justify-content: center;
    }
    .insta-identity {
        align-items: center;
    }
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
    }
    .container,
    .section-header,
    .hero-grid,
    .hero-left,
    .quote-grid,
    .quote-info,
    .quote-form-container,
    .leave-testimonial-card,
    .hangar-grid,
    .hangar-info,
    .info-board-grid,
    .info-cards-list,
    .instagram-card,
    .testimonials-grid,
    .gallery-grid,
    .services-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .quote-grid,
    .hangar-grid,
    .info-board-grid {
        justify-items: center;
        text-align: center;
    }
    .quote-info,
    .hangar-info {
        display: grid;
        justify-items: center;
    }
    .quote-info p,
    .hangar-info p,
    .section-header p {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }
    body::before,
    body::after {
        display: none !important;
    }
    .navbar-container {
        padding: 0.65rem 1.25rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    .navbar-menu {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: inline-flex !important;
    }
    .btn-nav-desktop {
        display: none !important;
    }
    .mobile-menu-overlay {
        align-items: flex-start;
        overflow-y: auto;
        padding: 6.75rem 1rem 2rem;
    }
    .mobile-menu-content {
        justify-content: flex-start;
        gap: 2rem;
        min-height: calc(100svh - 8.75rem);
    }
    .mobile-menu-links {
        gap: 1.25rem;
    }
    .mobile-menu-links li a {
        font-size: 1.45rem;
        line-height: 1.2;
    }
    .mobile-quote-btn {
        max-width: 100%;
        padding: 0.95rem 1.5rem;
        font-size: 1rem;
    }
    .whatsapp-floating-btn {
        width: 50px;
        height: 50px;
        min-height: 50px;
        padding: 0;
        border-radius: 50%;
    }
    .hero {
        min-height: 88vh;
        padding-top: 0;
        padding-bottom: 56px;
    }
    .hero-plane {
        width: 100%;
        transform: translate(-44%, -48%);
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-desc {
        font-size: 1.05rem;
    }
    .hero-actions {
        align-items: stretch;
    }
    .quote-form,
    .form-row-2,
    .input-group,
    .input-wrapper {
        width: 100%;
        max-width: 100%;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .input-group label {
        width: 100%;
        text-align: center;
    }
    .input-wrapper input,
    .input-wrapper textarea {
        min-height: 48px;
    }
    .star-rating-selector {
        justify-content: center;
        flex-wrap: wrap;
    }
    .btn-block,
    .quote-form .btn-primary,
    .quote-form .btn-secondary,
    .leave-testimonial-card .btn-primary {
        width: 100%;
        max-width: 420px;
        align-self: center;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .hangar-info h2 {
        font-size: 2rem;
    }
    .hangar-address {
        align-items: flex-start;
        width: 100%;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        overflow-wrap: anywhere;
    }
    .hangar-video-shell {
        justify-self: center;
    }
    .service-photo-marquee {
        margin: 2rem 0 1.75rem;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    }
    .service-carousel-photo {
        flex: 0 0 auto;
        height: 400px;
        border-radius: 16px;
    }
    .space-header {
        margin-bottom: 2rem;
    }
    .space-gallery-marquee {
        width: 100%;
        margin-left: 0;
        padding-bottom: 0.5rem;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    }
    .space-gallery-photo,
    .space-gallery-photo:nth-child(4n + 1),
    .space-gallery-photo:nth-child(4n + 3),
    .space-gallery-photo:nth-child(5n) {
        flex-basis: 72vw;
        height: min(480px, 96vw);
    }
    .gallery-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .instagram-card {
        padding: 1.5rem;
    }
    .insta-follow-tag {
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: var(--radius-md);
    }
    .insta-name-line {
        justify-content: center;
    }
    .insta-username {
        font-size: 1.35rem;
    }
    .btn-insta-follow {
        width: 100%;
    }
    .insta-feed-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    .insta-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-summary {
        margin: 0 auto;
    }
    .footer-links {
        justify-items: center;
        justify-self: center;
    }
    .footer-links a:hover {
        transform: none;
    }
    .footer-service-strip {
        padding: 1.35rem 0;
    }
    .footer-service-contact {
        flex-direction: column;
        gap: 0.4rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    :root {
        --navbar-offset-y: 0;
        --navbar-offset-y-scrolled: 0;
    }
    body.has-fixed-ticker {
        --navbar-offset-y: 0;
        --navbar-offset-y-scrolled: 0;
        padding-top: 0;
    }
    .container {
        width: min(92%, calc(100% - 1.5rem));
        padding: 3.25rem 0;
    }
    .navbar-container {
        top: 0;
        width: 100%;
        padding: 0.55rem 0.75rem;
    }
    .logo-svg {
        width: 34px;
        height: 34px;
    }
    .navbar-logo {
        gap: 0.55rem;
    }
    .brand-title {
        font-size: 1.12rem;
    }
    .brand-sub {
        font-size: 0.56rem;
        letter-spacing: 0.06em;
    }
    .navbar-actions {
        gap: 0.45rem;
    }
    #theme-toggle-btn {
        display: none;
    }
    .btn-icon-toggle {
        width: 36px;
        height: 36px;
    }
    .mobile-menu-overlay {
        padding-top: 4.9rem;
    }
    .mobile-menu-content {
        gap: 1.4rem;
        min-height: calc(100svh - 6.9rem);
    }
    .mobile-menu-links {
        gap: 0.9rem;
    }
    .mobile-menu-links li a {
        font-size: 1.22rem;
    }
    .hero {
        padding-top: 0;
        padding-bottom: 40px;
        align-items: flex-end;
    }
    .hero-plane {
        width: 110%;
        transform: translate(-44%, -46%);
    }
    .hero-container {
        padding: 0;
    }
    .hero-grid {
        max-width: 100%;
        text-align: center;
        justify-items: center;
    }
    .badge {
        max-width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.35;
    }
    .hero-title {
        font-size: clamp(1.9rem, 8.8vw, 2.18rem);
        line-height: 1.1;
        text-align: center;
    }
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 1.8rem;
        text-align: center;
    }
    .hero-actions {
        flex-direction: column;
        gap: 0.85rem;
    }
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        min-height: 48px;
        padding: 0.78rem 1.1rem;
        text-align: center;
    }
    .section-header {
        margin-bottom: 2.4rem;
    }
    .section-header h2,
    .quote-info h2,
    .hangar-info h2 {
        font-size: 1.65rem;
        line-height: 1.18;
    }
    .section-header p,
    .quote-info p,
    .hangar-info p {
        font-size: 1rem;
    }
    .features,
    .quote-section,
    .hangar-section {
        padding: 3.5rem 0;
    }
    .service-card,
    .quote-form-container,
    .instagram-card {
        padding: 1.35rem;
    }
    .quote-form-container,
    .leave-testimonial-card {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .input-wrapper input,
    .input-wrapper textarea {
        padding-right: 0.9rem;
        font-size: 0.95rem;
    }
    .input-icon {
        left: 0.9rem;
    }
    .form-row-2 {
        gap: 1rem;
    }
    .hero-actions,
    .hangar-actions,
    .form-actions {
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .service-carousel-photo {
        flex: 0 0 auto;
        height: 330px;
        border-radius: 12px;
    }
    .space-gallery-photo,
    .space-gallery-photo:nth-child(4n + 1),
    .space-gallery-photo:nth-child(4n + 3),
    .space-gallery-photo:nth-child(5n) {
        flex-basis: 78vw;
        height: min(420px, 116vw);
        border-radius: 14px;
    }
    .info-item-card,
    .hangar-address {
        padding: 1rem;
    }
    .info-item-card {
        gap: 0.85rem;
    }
    .info-item-icon {
        width: 42px;
        height: 42px;
    }
    .hangar-actions,
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .faq-accordion-container summary,
    .faq-accordion-container .faq-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .photo-lightbox {
        padding: 0.75rem;
    }
    .photo-lightbox img {
        border-radius: 10px;
        max-height: 76vh;
    }
}

/* ==========================================================================
   Privacy Policy Styles
   ========================================================================== */
.privacy-card {
    padding: 3.5rem 3rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
    margin-bottom: 4rem;
}
.privacy-title {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.25;
}
.privacy-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3.5rem;
}
.privacy-section {
    margin-bottom: 2.5rem;
}
.privacy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    font-weight: 600;
}
.privacy-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}
.privacy-section ul {
    margin-left: 1.75rem;
    margin-bottom: 1.25rem;
    list-style-type: disc;
}
.privacy-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
    .privacy-card {
        padding: 2.25rem 1.5rem;
    }
    .privacy-title {
        font-size: 2.15rem;
    }
}

.privacy-container {
    padding-top: 140px;
    padding-bottom: 2rem;
}

.privacy-contact-lead {
    margin-bottom: 0.5rem;
}

.privacy-contact-email {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
    text-align: center;
}

.cursor-pointer {
    cursor: pointer;
}

.d-none {
    display: none;
}

/* ==========================================================================
   Testimonials & Feedback System
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-card::after {
    content: "“";
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: serif;
    color: rgba(255, 140, 0, 0.15);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-premium);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.12);
    border: 1px solid var(--border-glow);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-client-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-route {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.testimonial-stars i {
    width: 14px;
    height: 14px;
    fill: var(--color-primary);
}

.testimonial-stars i.star-empty {
    fill: none;
    color: var(--text-muted);
    opacity: 0.35;
}

.testimonial-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

.leave-testimonial-card {
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    max-width: 750px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.leave-testimonial-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.leave-testimonial-card p {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Star Rating Selector */
.star-rating-selector {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.star-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.2rem;
    color: #d1d5db;
    transition: transform 0.18s ease, color 0.18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.star-btn svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
    stroke: currentColor;
    fill: none;
    transition: fill 0.18s ease, stroke 0.18s ease;
}

.star-btn:hover {
    transform: scale(1.2);
    color: var(--color-primary);
}

.star-btn.active,
.star-btn.hover-active {
    color: var(--color-primary);
}

.star-btn.active svg,
.star-btn.hover-active svg {
    fill: var(--color-primary);
    stroke: var(--color-primary);
}

/* Success Toast */
.testimonial-success-toast {
    display: none;
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px dashed rgba(255, 140, 0, 0.4);
    background: rgba(255, 140, 0, 0.03);
    animation: fadeIn 0.4s ease forwards;
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.toast-content i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.toast-content strong {
    font-size: 1.05rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.toast-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: left;
    margin-bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 520px) {
    .leave-testimonial-card {
        padding: 2rem 1.5rem;
    }
    .leave-testimonial-card h3 {
        font-size: 1.45rem;
    }
}


/* ==========================================================================
   Letter-by-Letter Slide-Down Clip Animation
   ========================================================================== */
.letter-anim-wrap {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    line-height: 1.1;
}

.letter-anim-char {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}

.letter-anim-char.is-visible {
    transform: translateY(0);
    opacity: 1;
}

/* Section headings with letter animation ready */
.section-header h2,
.intro-video-title,
.space-header h2,
.quote-section h2,
.hangar-section h2,
.section-header-left h2,
.testimonials-heading h2 {
    overflow: visible;
}

/* ==========================================================================
   Premium Lightbox Redesign
   ========================================================================== */
.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 3vw, 2.5rem);
    background: rgba(3, 7, 18, 0.92);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    backdrop-filter: blur(24px) saturate(1.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.photo-lightbox-panel {
    position: relative;
    width: min(96vw, 1100px);
    max-height: 90vh;
    display: grid;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(14, 14, 14, 0.99) 100%);
    border: 1px solid rgba(255, 184, 0, 0.2);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(255, 184, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(0.94) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-lightbox.is-open .photo-lightbox-panel {
    transform: scale(1) translateY(0);
}

.photo-lightbox img,
.photo-lightbox-video {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 0;
    background: #000;
    display: block;
}

.photo-lightbox-video[hidden],
.photo-lightbox img[hidden] {
    display: none;
}

/* Caption bar at the bottom */
.photo-lightbox-caption {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(to right, rgba(255, 184, 0, 0.08), transparent);
    border-top: 1px solid rgba(255, 184, 0, 0.15);
    padding: 1rem 1.5rem 1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.photo-lightbox-caption::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255, 184, 0, 0.7);
}

/* Premium close button */
.photo-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: 12px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    cursor: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
}

.photo-lightbox-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
}

.photo-lightbox-close:hover,
.photo-lightbox-close:focus-visible {
    transform: scale(1.08) rotate(90deg);
    background: rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 184, 0, 0.6);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
}

.photo-lightbox-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

/* Light mode adjustments */
body.light-mode .photo-lightbox {
    background: rgba(8, 8, 24, 0.88);
}

body.light-mode .photo-lightbox-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 40px 100px rgba(0, 0, 0, 0.25),
        0 0 60px rgba(255, 184, 0, 0.08);
}

body.light-mode .photo-lightbox-caption {
    color: #0f172a;
    background: linear-gradient(to right, rgba(255, 184, 0, 0.06), transparent);
    border-top-color: rgba(255, 140, 0, 0.15);
}

body.light-mode .photo-lightbox-close {
    border-color: rgba(15, 23, 42, 0.15);
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
}

body.light-mode .photo-lightbox-close:hover,
body.light-mode .photo-lightbox-close:focus-visible {
    background: rgba(255, 140, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.5);
}

/* ==========================================================================
   Dobra "Alcance" — globo realista (globe.gl) com malha de operações
   ========================================================================== */
#malha-globo {
    overflow: hidden;
}
.globe-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}
.globe-text .globe-tag {
    display: inline-block;
    font-family: var(--font-mono, monospace);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
    border: 1px solid rgba(255, 184, 0, 0.35);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1.25rem;
}
.globe-text h2 {
    font-family: var(--font-grunge);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}
.globe-text p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 46ch;
    margin-bottom: 1.75rem;
}
.globe-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.globe-chip {
    font-family: var(--font-mono, monospace);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
    white-space: nowrap;
}
body.light-mode .globe-chip {
    background: rgba(15, 23, 42, 0.03);
}
.globe-chip-hub {
    color: var(--color-primary);
    border-color: rgba(255, 184, 0, 0.4);
    background: rgba(255, 184, 0, 0.08);
    font-weight: 700;
}
.globe-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    width: fit-content;
}

/* Palco do globo */
.globe-stage {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #05070d;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.globe-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(255, 184, 0, 0.18) 0%, rgba(255, 184, 0, 0.05) 45%, transparent 70%);
    filter: blur(6px);
    pointer-events: none;
    z-index: 0;
}
#opalair-globe {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease;
}
#opalair-globe canvas {
    display: block;
    border-radius: 16px;
    cursor: grab;
}
.globe-hint {
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: var(--font-mono, monospace);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    pointer-events: none;
    opacity: 0.8;
}
/* Se o globo não carregar, esconde o palco vazio */
.globe-stage.globe-failed { display: none; }

@media (max-width: 900px) {
    .globe-section-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .globe-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .globe-text p { max-width: 60ch; }
    .globe-stage { order: -1; max-width: 420px; }
}

/* ==========================================================================
   Dobra "Conheça uma de nossas aeronaves" — galeria em grade (abre no lightbox)
   ========================================================================== */
.aircraft-gallery {
    column-count: 3;
    column-gap: 1.1rem;
    max-width: 1100px;
    margin: 0 auto;
}
.aircraft-photo {
    display: block;
    width: 100%;
    min-height: 0;
    aspect-ratio: auto;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    break-inside: avoid;
    margin: 0 0 1.1rem;
    cursor: pointer;
}
/* Imagem inteira (proporção natural) — sem corte e sem faixas */
.aircraft-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.aircraft-photo video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.aircraft-photo img,
.aircraft-photo video {
    transition: transform 0.4s ease, filter 0.4s ease;
}
.aircraft-photo:hover img,
.aircraft-photo:focus-visible img {
    transform: scale(1.03);
    filter: brightness(1.05);
}
@media (max-width: 820px) {
    .aircraft-gallery { column-count: 2; column-gap: 0.8rem; }
    .aircraft-photo { margin-bottom: 0.8rem; }
}
@media (max-width: 480px) {
    .aircraft-gallery { column-count: 2; column-gap: 0.6rem; }
    .aircraft-photo { margin-bottom: 0.6rem; border-radius: 12px; }
}

/* Acentos da dobra "Alcance" menos chamativos no modo claro */
body.light-mode .globe-text .globe-tag {
    color: #6f5f3a;
    border-color: rgba(111, 95, 58, 0.28);
    background: rgba(111, 95, 58, 0.06);
}
body.light-mode .globe-chip-hub {
    color: #6f5f3a;
    border-color: rgba(111, 95, 58, 0.3);
    background: rgba(111, 95, 58, 0.08);
}

/* Selo de verificado (azul) — depoimentos e seção de informações */
.verified-badge {
    display: inline-block;
    width: 0.95em;
    height: 0.95em;
    margin-left: 0.3rem;
    vertical-align: -0.16em;
    flex-shrink: 0;
}
.testimonial-client-name .verified-badge {
    width: 16px;
    height: 16px;
    vertical-align: -3px;
}

/* ==========================================================================
   Banner do Hangar — full-bleed com carrossel de 2 imagens (crossfade)
   ========================================================================== */
.hangar-banner {
    position: relative;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    overflow: hidden;
    background: #0b1220;
    display: block;
}
/* Imagem inteira (proporção natural) — largura cheia, sem corte e sem faixas */
.hangar-img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.4s ease;
}

/* Setas de navegação */
.hangar-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(3, 7, 18, 0.4);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hangar-nav:hover {
    background: var(--color-primary);
    color: #030712;
    border-color: transparent;
}
.hangar-nav-prev { left: clamp(0.75rem, 3vw, 2rem); }
.hangar-nav-next { right: clamp(0.75rem, 3vw, 2rem); }

/* Contador */
.hangar-counter {
    position: absolute;
    right: clamp(1rem, 4vw, 2.5rem);
    bottom: 1.4rem;
    z-index: 3;
    color: #fff;
    font-family: var(--font-mono, monospace);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.hangar-counter #hangar-current { color: var(--color-primary); font-weight: 700; }

@media (max-width: 600px) {
    .hangar-nav { width: 40px; height: 40px; font-size: 1.4rem; }
}

/* Sobreposição para legibilidade do texto */
.hangar-banner-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: 3rem 0 3.25rem;
    background: linear-gradient(180deg, transparent 0%, rgba(3, 7, 18, 0.15) 35%, rgba(3, 7, 18, 0.82) 100%);
    pointer-events: none;
}
.hangar-banner-overlay .container { pointer-events: auto; }
.hangar-banner-content {
    color: #fff;
}
.hangar-banner-tag {
    display: inline-block;
    font-family: var(--font-mono, monospace);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
    border: 1px solid rgba(255, 184, 0, 0.5);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1rem;
    background: rgba(3, 7, 18, 0.35);
}
.hangar-banner-content h2 {
    font-family: var(--font-grunge);
    color: #fff;
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.9rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hangar-banner-content p {
    max-width: 60ch;
    font-size: 1.02rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

/* Acessibilidade: sem animação, mostra a primeira imagem fixa */
@media (prefers-reduced-motion: reduce) {
    .hangar-img { transition: none; }
}

@media (max-width: 600px) {
    .hangar-banner { height: clamp(340px, 60vh, 520px); }
    .hangar-banner-overlay { padding: 2rem 0 2.25rem; }
}

/* Aviso de moderação no formulário de depoimento */
.testimonial-review-note {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 1rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md, 10px);
    background: rgba(255, 184, 0, 0.06);
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.45;
}
.testimonial-review-note svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--color-primary);
}
