:root {
  --bg:        #060708;
  --surface:   #0C0E10;
  --card:      #111418;
  --border:    #1C2028;
  --border-hi: #252C36;
  --teal:      #00D4AA;
  --teal-dim:  #00A882;
  --teal-glow: rgba(0,212,170,0.2);
  --orange:    #FF6B2B;
  --orange-dim: rgba(255,107,43,0.10);
  --white:     #F4F8FF;
  --muted:     #3A4A58;
  --red-fpv:   #FF2D55;
}

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      font-family: 'DM Sans', sans-serif;
      color: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      padding: 16px 56px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(6,7,8,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: padding 0.3s;
    }

    .nav-logo {
      font-family: 'Syncopate', sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.14em; color: var(--white);
      display: flex; align-items: center; gap: 10px;
    }

    .nav-logo-icon {
      width: 32px; height: 32px;
      background: rgba(0,212,170,0.08); border-radius: 4px;
      border: 1px solid rgba(0,212,170,0.3);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 16px var(--teal-glow);
    }

    .nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }

    .nav-links a {
      font-size: 11px; font-weight: 400;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--muted); text-decoration: none; transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--teal); }

    .nav-cta {
      padding: 9px 22px;
      border: 1px solid var(--teal);
      color: var(--teal) !important;
      font-size: 10px !important; font-weight: 500 !important;
      letter-spacing: 0.14em; text-transform: uppercase;
      text-decoration: none; border-radius: 2px;
      transition: background 0.2s, box-shadow 0.2s !important;
    }

    .nav-cta:hover { background: var(--teal-dim) !important; box-shadow: 0 0 20px var(--teal-glow) !important; }

    /* ── HERO — full immersive ── */
    .hero {
      min-height: 100vh;
      position: relative; overflow: hidden;
      display: flex; flex-direction: column;
    }

    /* Background cover photo */
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
    }

    .hero-bg img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: center 30%;
      transform: scale(1.04);
      animation: slowzoom 18s ease-in-out infinite alternate;
    }

    @keyframes slowzoom {
      from { transform: scale(1.04); }
      to   { transform: scale(1.10); }
    }

    /* Multi-layer overlay for drama */
    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background:
        linear-gradient(to top, rgba(6,7,8,1) 0%, rgba(6,7,8,0.6) 35%, rgba(6,7,8,0.1) 65%, transparent 100%),
        linear-gradient(to right, rgba(6,7,8,0.7) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(0,212,170,0.05) 0%, transparent 60%);
    }

    /* Noise grain texture */
    .hero-grain {
      position: absolute; inset: 0; z-index: 2;
      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='0.035'/%3E%3C/svg%3E");
      pointer-events: none; opacity: 0.8;
    }

    /* Scan line effect */
    .hero-scanlines {
      position: absolute; inset: 0; z-index: 2;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
      );
      pointer-events: none;
    }

    .hero-content {
      position: relative; z-index: 3;
      flex: 1;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 0 72px 80px;
    }

    /* Floating HUD elements */
    .hud-top-right {
      position: absolute; top: 96px; right: 56px; z-index: 3;
      display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
    }

    .hud-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 10px; font-weight: 400; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--teal);
      opacity: 0.7;
    }

    .hud-dot {
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 6px var(--teal);
      animation: blink 2s ease-in-out infinite;
    }

    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

    .hud-line {
      position: absolute; top: 96px; left: 56px; z-index: 3;
      display: flex; flex-direction: column; gap: 4px;
    }

    .hud-corner {
      width: 32px; height: 32px;
      border-top: 1.5px solid var(--teal);
      border-left: 1.5px solid var(--teal);
      opacity: 0.5;
    }

    /* Main hero text */
    .hero-eyebrow {
      display: flex; align-items: center; gap: 14px;
      font-size: 11px; font-weight: 400;
      letter-spacing: 0.24em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 20px;
    }

    .eyebrow-line { width: 40px; height: 1px; background: var(--teal); }

    .hero-headline {
      font-family: 'Syncopate', sans-serif;
      font-size: clamp(40px, 6vw, 82px);
      font-weight: 700; line-height: 0.92;
      letter-spacing: -0.01em; color: var(--white);
      margin-bottom: 8px;
    }

    .hero-headline .accent { color: var(--teal); }
    .hero-headline .outline {
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
    }

    .hero-sub {
      font-family: 'Syncopate', sans-serif;
      font-size: clamp(18px, 2.5vw, 32px);
      font-weight: 400; letter-spacing: 0.06em;
      color: rgba(255,255,255,0.35); margin-bottom: 28px;
    }

    .hero-desc {
      font-size: 15px; font-weight: 300; font-style: italic;
      line-height: 1.75; color: var(--white);
      max-width: 520px; margin-bottom: 40px; opacity: 0.8;
    }

    .hero-tags {
      display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
    }

    .hero-tag {
      padding: 7px 16px; border-radius: 2px;
      font-size: 10.5px; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      border: 1px solid;
    }

    .hero-tag.cinema { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); }
    .hero-tag.fpv    { border-color: var(--red-fpv); color: var(--red-fpv); background: rgba(255,45,85,0.08); }
    .hero-tag.aerea  { border-color: var(--orange); color: var(--orange); background: var(--orange-dim); }

    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

    .btn-primary {
      padding: 14px 32px; background: var(--teal); color: var(--bg);
      font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
      border-radius: 2px; text-decoration: none;
      transition: filter 0.2s, transform 0.2s;
      box-shadow: 0 0 32px var(--teal-glow);
    }

    .btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); }

    .btn-ghost {
      padding: 14px 28px; background: transparent; color: var(--white);
      font-size: 11px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
      border-radius: 2px; text-decoration: none;
      border: 1px solid rgba(255,255,255,0.15);
      transition: border-color 0.2s;
    }

    .btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

    /* Hero bottom strip */
    .hero-strip {
      position: relative; z-index: 3;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: grid; grid-template-columns: repeat(4,1fr);
    }

    .strip-item {
      padding: 20px 36px;
      border-right: 1px solid rgba(255,255,255,0.06);
      display: flex; align-items: center; gap: 14px;
    }

    .strip-item:last-child { border-right: none; }

    .strip-icon { font-size: 22px; flex-shrink: 0; }

    .strip-num {
      font-family: 'Syncopate', sans-serif;
      font-size: 24px; font-weight: 700;
      color: var(--teal); line-height: 1; letter-spacing: -0.02em;
    }

    .strip-label { font-size: 10.5px; color: var(--muted); margin-top: 3px; letter-spacing: 0.06em; }

    /* ── SECTIONS ── */
    section { padding: 96px 72px; }

    .section-eyebrow {
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.24em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 14px;
      display: flex; align-items: center; gap: 12px;
    }

    .section-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--teal); }

    .section-title {
      font-family: 'Syncopate', sans-serif;
      font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 700; line-height: 1.05;
      letter-spacing: -0.01em; color: var(--white);
      margin-bottom: 16px;
    }

    .section-title .accent { color: var(--teal); }
    .section-sub { font-size: 15px; font-style: italic; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 520px; }

    /* ── SERVIÇOS ── */
    #servicos { background: var(--surface); }

    .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }

    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
      border: 1px solid var(--border); border-radius: 2px; overflow: hidden;
    }

    .service-card {
      background: var(--surface); padding: 0;
      position: relative; overflow: hidden;
      transition: background 0.3s;
      display: flex; flex-direction: column;
    }

    .service-card:hover { background: var(--card); }

    .service-img {
      width: 100%; height: 200px; overflow: hidden; position: relative;
    }

    .service-img img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.7) saturate(0.9);
      transition: transform 0.5s ease, filter 0.5s;
    }

    .service-card:hover .service-img img { transform: scale(1.06); filter: brightness(0.85) saturate(1.1); }

    /* Top accent line per card */
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s ease; z-index: 1;
    }

    .service-card.cinema::before { background: var(--teal); }
    .service-card.fpv::before    { background: var(--red-fpv); }
    .service-card.aerea::before  { background: var(--orange); }

    .service-card:hover::before { transform: scaleX(1); }

    .service-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }

    .service-type {
      font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
      margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
    }

    .service-type.cinema { color: var(--teal); }
    .service-type.fpv    { color: var(--red-fpv); }
    .service-type.aerea  { color: var(--orange); }

    .service-type::before { content: ''; width: 16px; height: 1px; background: currentColor; }

    .service-name {
      font-family: 'Syncopate', sans-serif;
      font-size: 16px; font-weight: 700;
      color: var(--white); margin-bottom: 10px; line-height: 1.2;
      letter-spacing: -0.01em;
    }

    .service-desc { font-size: 13px; font-weight: 300; font-style: italic; color: var(--muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }

    .service-features { display: flex; flex-direction: column; gap: 6px; }

    .feature-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 400; color: var(--white);
    }

    .feature-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
    .service-card.fpv .feature-dot   { background: var(--red-fpv); }
    .service-card.aerea .feature-dot { background: var(--orange); }

    /* ── VIDEO / REEL ── */
    #reel {
      background: var(--bg);
      padding: 0;
    }

    .reel-header {
      padding: 80px 72px 48px;
      display: flex; justify-content: space-between; align-items: flex-end;
      border-bottom: 1px solid var(--border);
    }

    .reel-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 300px 300px;
      gap: 2px;
    }

    .reel-item {
      position: relative; overflow: hidden; cursor: pointer;
    }

    .reel-item.large { grid-row: span 2; }

    .reel-item img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.65) saturate(0.8);
      transition: transform 0.5s ease, filter 0.5s;
    }

    .reel-item:hover img { transform: scale(1.06); filter: brightness(0.8) saturate(1.1); }

    /* Video play overlay */
    .reel-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(6,7,8,0.7) 0%, transparent 50%);
      transition: background 0.3s;
    }

    .reel-item:hover .reel-overlay { background: linear-gradient(to top, rgba(6,7,8,0.5) 0%, rgba(0,212,170,0.05) 100%); }

    .reel-play {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1.5px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
      backdrop-filter: blur(8px);
    }

    .reel-item:hover .reel-play {
      background: var(--teal);
      border-color: var(--teal);
      transform: translate(-50%, -50%) scale(1.1);
    }

    .reel-item.large .reel-play { width: 72px; height: 72px; font-size: 24px; }

    .reel-label {
      position: absolute; bottom: 10px; left: 15px; z-index: 1;
      font-family: 'Syncopate', sans-serif;
      font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
      color: rgba(255,255,255,0.6);
      transition: color 0.3s;
    }

    .reel-item:hover .reel-label { color: var(--teal); }

    .reel-type {
      position: absolute; top: 9px; left: 11px; z-index: 1;
      font-size: 8px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 2px;
    }

    .reel-type.cinema { background: var(--teal-dim); color: var(--teal); border: 1px solid rgba(0,212,170,0.3); }
    .reel-type.fpv    { background: rgba(255,45,85,0.12); color: var(--red-fpv); border: 1px solid rgba(255,45,85,0.3); }
    .reel-type.aerea  { background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(255,107,43,0.3); }

    /* YouTube embed note */
    .reel-note {
      padding: 20px 72px;
      font-size: 12px; font-style: italic; color: var(--muted);
      border-top: 1px solid var(--border);
      text-align: center;
    }

    /* ── SOBRE ── */
    #sobre {
      background: var(--surface);
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }

    .sobre-imgs {
      position: relative; height: 560px;
    }

    /* Foto principal: olhando para cima — cobre 68% da largura */
    .sobre-img-main {
      position: absolute; top: 0; left: 0;
      width: 68%; height: 380px;
      border-radius: 2px; overflow: hidden;
    }

    .sobre-img-main img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 20%;
      filter: brightness(0.9);
    }

    .sobre-img-main::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(to right, var(--teal), transparent);
    }

    /* Foto secundária: segurando o drone — contain para aparecer por inteiro */
    .sobre-img-sub {
      position: absolute; bottom: 0; right: 0;
      width: 52%; height: 340px;
      border-radius: 2px; overflow: hidden;
      border: 2px solid var(--bg);
    }

    /* Blurred background layer — same image, fills laterals organically */
    .sobre-img-sub::before {
      content: '';
      position: absolute; inset: -20px;
      background: var(--drone-bg-img) center center / cover no-repeat;
      filter: blur(18px) brightness(0.45) saturate(0.7);
      transform: scale(1.1);
      z-index: 0;
    }

    .sobre-img-sub img {
      position: relative; z-index: 1;
      width: 100%; height: 100%;
      object-fit: contain;
      object-position: center bottom;
      filter: brightness(0.95);
    }

    .sobre-img-sub::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(to right, var(--orange), transparent);
      z-index: 2;
    }

    /* HUD badges entre as fotos */
    .sobre-hud {
      position: absolute; top: 200px; right: calc(52% + 6px);
      display: flex; flex-direction: column; gap: 6px; z-index: 2;
    }

    .hud-badge {
      background: rgba(0,212,170,0.12);
      border: 1px solid rgba(0,212,170,0.3);
      padding: 8px 14px; border-radius: 2px;
      backdrop-filter: blur(12px);
    }

    .hud-badge-val {
      font-family: 'Syncopate', sans-serif;
      font-size: 18px; font-weight: 700; color: var(--teal); line-height: 1;
    }

    .hud-badge-label { font-size: 9px; color: rgba(255,255,255,0.4); margin-top: 3px; letter-spacing: 0.1em; text-transform: uppercase; }

    .sobre-content { padding: 20px 0; }

    .sobre-bio { font-size: 15px; font-weight: 300; font-style: italic; line-height: 1.8; color: var(--muted); margin-bottom: 28px; }

    .sobre-specs {
      display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 36px;
    }

    .spec-card {
      background: var(--card); border: 1px solid var(--border); border-radius: 2px;
      padding: 16px 18px;
      border-left: 2px solid var(--teal);
    }

    .spec-card.fpv { border-left-color: var(--red-fpv); }

    .spec-icon { font-size: 18px; margin-bottom: 8px; display: block; }
    .spec-title { font-size: 12px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
    .spec-desc { font-size: 11.5px; font-style: italic; color: var(--muted); line-height: 1.4; }

    /* ── EQUIPAMENTOS ── */
    #equipamentos { background: var(--bg); }

    .equip-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--border);
      border: 1px solid var(--border); border-radius: 2px;
      overflow: hidden; margin-top: 56px;
    }

    .equip-card {
      background: var(--bg); padding: 32px 28px;
      display: flex; flex-direction: column; gap: 14px;
      transition: background 0.25s;
    }

    .equip-card:hover { background: var(--card); }

    .equip-icon-wrap {
      width: 52px; height: 52px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; border: 1px solid var(--border);
      background: var(--card);
    }

    .equip-brand {
      font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--teal);
    }

    .equip-name {
      font-family: 'Syncopate', sans-serif;
      font-size: 13px; font-weight: 700; color: var(--white);
      line-height: 1.2; letter-spacing: -0.01em;
    }

    .equip-specs { display: flex; flex-direction: column; gap: 5px; }
    .equip-spec { font-size: 11.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
    .equip-spec::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

    /* ── DEPOIMENTOS ── */
    #depoimentos { background: var(--surface); }

    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px; margin-top: 56px;
    }

    .testimonial-card {
      background: var(--card); border: 1px solid var(--border); border-radius: 2px; padding: 28px 24px;
      position: relative; overflow: hidden;
    }

    .testimonial-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, var(--teal), var(--orange));
    }

    .testimonial-project { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }

    .testimonial-text { font-size: 14px; font-style: italic; font-weight: 300; line-height: 1.7; color: var(--white); margin-bottom: 20px; }

    .testimonial-author { display: flex; align-items: center; gap: 12px; }

    .author-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--teal-dim); border: 1px solid var(--teal);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Syncopate', sans-serif; font-size: 12px; color: var(--teal); font-weight: 700;
    }

    .author-name { font-size: 13px; font-weight: 500; color: var(--white); }
    .author-role { font-size: 11px; font-style: italic; color: var(--muted); margin-top: 1px; }

    .testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; }
    .star { color: var(--teal); font-size: 12px; }

    /* ── CONTATO ── */
    #contato {
      background: var(--bg);
      position: relative; overflow: hidden;
    }

    /* Big background text */
    #contato::before {
      content: 'FLY';
      position: absolute; bottom: -40px; right: -20px;
      font-family: 'Syncopate', sans-serif;
      font-size: 220px; font-weight: 700;
      color: transparent;
      -webkit-text-stroke: 1px rgba(0,212,170,0.06);
      pointer-events: none; line-height: 1;
      user-select: none;
    }

    .contato-wrapper {
      display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
      align-items: start; position: relative; z-index: 1;
    }

    .contato-left { }

    .contato-desc { font-size: 15px; font-style: italic; font-weight: 300; color: var(--muted); line-height: 1.75; margin-bottom: 36px; }

    .contato-infos { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }

    .contato-info {
      display: flex; align-items: center; gap: 16px;
      padding: 14px 18px; background: var(--card);
      border: 1px solid var(--border); border-radius: 2px;
      text-decoration: none;
      transition: border-color 0.2s;
    }

    .contato-info:hover { border-color: var(--teal); }

    .contato-info-icon {
      width: 38px; height: 38px; border-radius: 2px;
      background: var(--teal-dim); border: 1px solid rgba(0,212,170,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }

    .contato-info-label { font-size: 9px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; display: block; }
    .contato-info-value { font-size: 13px; font-weight: 400; color: var(--white); margin-top: 3px; display: block; }

    /* Hangar badge */
    .hangar-badge {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 18px; background: rgba(79,126,255,0.08);
      border: 1px solid rgba(79,126,255,0.2); border-radius: 2px;
      text-decoration: none; transition: border-color 0.2s;
    }

    .hangar-badge:hover { border-color: #4F7EFF; }
    .hangar-badge-icon { font-size: 18px; flex-shrink: 0; }
    .hangar-badge-label { font-size: 9px; color: rgba(79,126,255,0.6); letter-spacing: 0.12em; text-transform: uppercase; display: block; }
    .hangar-badge-value { font-size: 13px; color: #8FB0FF; margin-top: 2px; display: block; }

    .contato-form { display: flex; flex-direction: column; gap: 0; background: var(--card); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }

    .form-header { padding: 24px 28px; border-bottom: 1px solid var(--border); }
    .form-header-title { font-family: 'Syncopate', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
    .form-header-sub { font-size: 12px; font-style: italic; color: var(--muted); margin-top: 4px; }

    .form-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 14px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }

    .form-label { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

    .form-input, .form-select, .form-textarea {
      background: rgba(255,255,255,0.04); border: 1px solid var(--border-hi);
      border-radius: 2px; padding: 11px 14px;
      font-size: 14px; font-style: italic; font-weight: 300; color: var(--white);
      font-family: 'DM Sans', sans-serif; outline: none; width: 100%;
      transition: border-color 0.2s;
    }

    .form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); }
    .form-textarea { resize: vertical; min-height: 90px; }
    .form-select option { background: var(--card); }

    .form-footer { padding: 0 28px 28px; }

    .form-btn {
      width: 100%; padding: 14px; background: var(--teal); color: var(--bg);
      font-family: 'Syncopate', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
      border-radius: 2px; border: none; cursor: pointer;
      transition: filter 0.2s; box-shadow: 0 0 24px var(--teal-glow);
    }

    .form-btn:hover { filter: brightness(1.1); }

    /* ── FOOTER ── */
    footer {
      background: #030405;
      padding: 24px 72px;
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid rgba(255,255,255,0.04);
    }

    .footer-logo {
      font-family: 'Syncopate', sans-serif;
      font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
      color: rgba(255,255,255,0.15);
      display: flex; align-items: center; gap: 8px;
    }

    .footer-logo span { color: var(--teal); opacity: 0.5; }

    .footer-copy { font-size: 11px; color: rgba(255,255,255,0.1); font-style: italic; }

    .footer-hangar { font-size: 11px; color: rgba(255,255,255,0.15); font-style: italic; }
    .footer-hangar a { color: rgba(79,126,255,0.5); text-decoration: none; transition: color 0.2s; }
    .footer-hangar a:hover { color: #4F7EFF; }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      nav { padding: 14px 20px; }
      .nav-links { display: none; }
      .hero-content { padding: 0 24px 60px; }
      .hud-top-right, .hud-line { display: none; }
      .hero-strip { grid-template-columns: 1fr 1fr; }
      .strip-item { padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.06); }
      section { padding: 64px 24px; }
      .services-header { flex-direction: column; gap: 16px; }
      .services-grid { grid-template-columns: 1fr; }
      .reel-header { padding: 48px 24px 32px; flex-direction: column; gap: 16px; }
      .reel-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .reel-item.large { grid-row: span 1; }
      #sobre { grid-template-columns: 1fr; gap: 48px; }
      .sobre-imgs { min-height: 500px; }
      .equip-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .contato-wrapper { grid-template-columns: 1fr; gap: 40px; }
      .form-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px; }
      .reel-note { padding: 16px 24px; }
    }
    /* ── Lightbox ─────────────────────────────────────────────── */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0,0,0,0.92);
      align-items: center;
      justify-content: center;
      cursor: zoom-out;
      animation: lbFadeIn 0.25s ease;
    }
    #lightbox.active { display: flex; }
    #lightbox img {
      max-width: 92vw;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 4px;
      box-shadow: 0 8px 48px rgba(0,0,0,0.7);
      cursor: default;
      animation: lbZoomIn 0.25s ease;
    }
    #lightbox-close {
      position: absolute;
      top: 20px;
      right: 24px;
      color: white;
      font-size: 32px;
      line-height: 1;
      cursor: pointer;
      opacity: 0.7;
      transition: opacity 0.2s;
      background: none;
      border: none;
      padding: 0;
    }
    #lightbox-close:hover { opacity: 1; }
    @keyframes lbFadeIn  { from { opacity: 0; } to { opacity: 1; } }
    @keyframes lbZoomIn  { from { transform: scale(0.93); } to { transform: scale(1); } }
