/*
==============================================================================
  SL REDES - DESIGN SYSTEM & UI ARCHITECTURE
==============================================================================

  TABLE OF CONTENTS:
  1. CSS CUSTOM PROPERTIES (Variables)      - Line 25
  2. RESET & BASE HTML ESTILOS              - Line 55
  3. TIPOGRAFIA & UTILITÁRIOS               - Line 85
  4. LAYOUT GLOBALS (Containers, Buttons)   - Line 130
  5. COMPONENTES: TOPBAR & NAVIGATION       - Line 200
  6. SEÇÃO: HERO (Painel principal)         - Line 280
  7. SEÇÕES: SERVIÇOS & GALERIA DE FOTOS    - Line 410
  8. SEÇÕES: DEPOIMENTOS (Testimonials)     - Line 715
  9. RESPONSIVIDADE (Media Queries Móvel)   - Line 870

==============================================================================
*/
.mobile-menu-btn,
.floating-cta {
  display: none;
}

:root {
  --bg: #f4faff;
  --bg-soft: #e7f1ff;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --line: rgba(18, 95, 185, 0.12);
  --line-strong: rgba(18, 95, 185, 0.34);
  --text: #0f2a4e;
  --muted: #496987;
  --gold: #0f6fd1;
  --gold-soft: #0b4f99;
  --accent: #0a67c7;
  --accent-soft: #37a0ff;
  --shadow: 0 16px 48px rgba(12, 73, 139, 0.12);
  --radius-main: 30px;
  --radius-sm: 12px;
  --container: min(1600px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

svg {
  max-width: 100%;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  background: #050b16;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(17, 111, 206, 0.16), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(89, 162, 231, 0.2), transparent 18%),
    radial-gradient(circle at 78% 78%, rgba(13, 125, 221, 0.09), transparent 18%),
    linear-gradient(180deg, #fbfeff 0%, #f4faff 42%, #eaf4ff 100%);
  min-height: 100vh;
}

body.gateway-active {
  background: #050b16;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 111, 206, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 111, 206, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  z-index: -1;
  pointer-events: none;
}

.page-glow-left {
  top: -120px;
  left: -120px;
  background: rgba(17, 111, 206, 0.22);
}

.page-glow-right {
  top: 120px;
  right: -120px;
  background: rgba(98, 177, 244, 0.24);
}

.topbar {
  position: absolute;
  top: max(24px, env(safe-area-inset-top));
  left: 0;
  right: 0;
  z-index: 40;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(248, 251, 255, 0.98), rgba(225, 237, 248, 0.95)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.36), transparent 42%);
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 18px rgba(12, 34, 66, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  height: 51px;
  width: auto;
  display: block;
  object-fit: contain;
}

.hero h1,
.hero-panel h2,
.section-heading h2,
.service-card h3,
.project-card h3,
.process-steps h3,
.testimonial-card strong,
.contact-copy h2 {
  font-family: "Cormorant Garamond", serif;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #1a2f4c;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-main);
  transition: background 220ms ease, color 220ms ease;
}

.nav a:hover {
  background: rgba(18, 95, 185, 0.08);
  color: #0a67c7;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.nav-cta {
  background: linear-gradient(135deg, #0a67c7 0%, #1690f1 100%);
  color: #ffffff;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-main);
  font-size: 0.92rem;
  box-shadow: 0 4px 16px rgba(10, 103, 199, 0.22);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #0b5cb5 0%, #1480d8 100%);
  box-shadow: 0 8px 24px rgba(10, 103, 199, 0.32);
}

.nav-cta:hover,
.button:hover,
.floating-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: calc(150px + env(safe-area-inset-top, 0px)) 0 78px;
  background: #091a2d;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 20, 34, 0.64) 0%, rgba(7, 20, 34, 0.52) 30%, rgba(7, 20, 34, 0.18) 60%, rgba(7, 20, 34, 0.4) 100%),
    linear-gradient(180deg, rgba(5, 16, 29, 0.24) 0%, rgba(5, 16, 29, 0.36) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 45%, rgba(160, 198, 231, 0.34), transparent 34%),
    linear-gradient(90deg, rgba(205, 222, 236, 0.2) 0%, rgba(205, 222, 236, 0.05) 28%, transparent 52%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 620px);
  gap: clamp(28px, 3.2vw, 48px);
  align-items: center;
  min-height: calc(100svh - 228px);
  position: relative;
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.84);
}

.hero-copy {
  max-width: 780px;
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  max-width: 24ch;
  width: auto;
  font-size: clamp(3rem, 4.45vw, 5rem);
  line-height: 0.92;
  font-weight: 600;
  color: #ffffff;
  text-wrap: balance;
}

.hero-mobile-break {
  display: none;
}

.hero-text,
.section-heading p,
.service-card p,
.project-card,
.process-steps p,
.testimonial-card p,
.contact-copy p,
.contact-notes span,
.form-note,
.trust-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 55ch;
  margin: 24px 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(244, 248, 252, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 34px 0 0;
}

.button-primary {
  background: linear-gradient(135deg, #0a67c7 0%, #1690f1 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(10, 103, 199, 0.24);
}

.hero .button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li,
.hero-summary article,
.trust-grid>div,
.service-card,
.project-card,
.process-shell,
.testimonial-card,
.contact-card,
.contact-notes article {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-points li {
  padding: 14px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.hero-stage {
  position: relative;
  display: grid;
  gap: 18px;
  z-index: 2;
  align-self: center;
  width: min(100%, 620px);
  justify-self: end;
}

.hero-panel {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(160deg, rgba(248, 251, 255, 0.98), rgba(225, 237, 248, 0.95)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.36), transparent 42%);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 52px rgba(8, 20, 36, 0.18);
}

.hero-panel-primary {
  display: grid;
  gap: 24px;
  padding: 34px 30px 28px;
}

.panel-label,
.trust-kicker,
.project-type,
.card-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(17, 111, 206, 0.18);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0;
  color: #23334b;
  font-size: clamp(1.95rem, 2.15vw, 2.55rem);
  line-height: 1.02;
  font-weight: 600;
  max-width: 30ch;
}

.hero-detail-list {
  display: grid;
  gap: 18px;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-detail-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.hero-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(24, 104, 190, 0.1);
  color: #1b6bc2;
  border: 1px solid rgba(24, 104, 190, 0.14);
}

.hero-detail-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-detail-item p {
  margin: 0;
  color: #304d69;
  line-height: 1.46;
  font-size: 0.93rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: max-content;
  max-width: 100%;
  gap: 10px;
  margin-top: 2px;
}

.hero-metrics article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  padding: 15px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(12px);
}

.metrics-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(24, 104, 190, 0.08);
  color: #1b6bc2;
  border: 1px solid rgba(24, 104, 190, 0.12);
}

.metrics-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-metrics strong {
  display: block;
  font-size: 1.02rem;
  color: var(--gold-soft);
  line-height: 1.15;
}

.hero-metrics span {
  display: block;
  margin-top: 4px;
  color: #4b6784;
  font-size: 0.78rem;
  line-height: 1.2;
}

.hero-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-summary article {
  padding: 16px 16px 18px;
  border-radius: 22px;
}

.hero-summary-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.hero-summary span,
.contact-notes span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-summary strong,
.contact-notes strong {
  display: block;
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.section {
  padding: 92px 0 0;
}

.section-heading {
  max-width: none;
  width: 100%;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  width: 100%;
  font-size: clamp(2.15rem, 3.6vw, 4rem);
  line-height: 0.98;
  font-weight: 600;
  white-space: nowrap;
}

.title-force-break {
  white-space: normal;
}

.section-heading p {
  max-width: 58ch;
  margin: 18px auto 0;
}

.section-heading.left p {
  margin-left: 0;
}

.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  padding: 30px;
  border-radius: 30px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(10, 103, 199, 0.08) 0%, transparent 70%);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(12, 73, 139, 0.18), 0 0 0 1px rgba(10, 103, 199, 0.12);
  border-color: rgba(10, 103, 199, 0.22);
}

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

.service-card:hover .card-index {
  background: linear-gradient(135deg, #0a67c7 0%, #1690f1 100%);
  color: #ffffff;
  border-color: transparent;
  transition: all 0.3s ease;
}

.card-index {
  margin-bottom: 16px;
}

.service-card h3,
.project-card h3,
.process-steps h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.98;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 22px;
}

.project-filter {
  appearance: none;
  border: 1px solid rgba(18, 95, 185, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.project-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 111, 206, 0.24);
  color: var(--text);
}

.project-filter.is-active {
  background: linear-gradient(135deg, #0a67c7 0%, #1690f1 100%);
  border-color: rgba(17, 111, 206, 0.3);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(10, 103, 199, 0.2);
}

.project-card {
  overflow: hidden;
  padding: 0;
  border-radius: 30px;
  min-height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(12, 73, 139, 0.18);
}

.project-card.is-hidden {
  display: none;
}

.project-image {
  display: block;
  width: 100%;
  min-height: 240px;
  height: 240px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  cursor: zoom-in;
}

.project-card:hover .project-image {
  transform: scale(1.08);
}

.project-image-stairs {
  object-position: center 72%;
}

.project-copy {
  padding: 13px 14px 15px;
}

.project-card h3 {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.28;
}

.process-shell {
  display: grid;
  grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 24px 26px;
  border-radius: 30px;
}

.process-intro {
  max-width: none;
  min-width: 0;
}

.process-intro .eyebrow {
  margin-bottom: 10px;
}

.process-intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 2vw, 2.35rem);
  line-height: 1;
  font-weight: 600;
  white-space: normal;
  text-wrap: balance;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-steps article {
  padding: 18px 18px 20px;
  border: 1px solid rgba(18, 95, 185, 0.1);
  border-radius: 22px;
  background: rgba(247, 251, 255, 0.84);
}

.process-steps strong {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 1.55rem;
  font-family: "Cormorant Garamond", serif;
}

.process-steps h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.process-steps p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(8, 20, 36, 0.08);
  box-shadow: 0 12px 32px rgba(8, 20, 36, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(12, 73, 139, 0.1);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: 10px;
  font-family: inherit;
  font-size: 260px;
  line-height: 1;
  color: #eaf1f8;
  z-index: -1;
  pointer-events: none;
}

.review-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.34rem;
  line-height: 1.4;
  color: #0b1420;
  margin: 0 0 24px 0;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  font-style: italic;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0d1e3a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.review-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a2f4c;
  white-space: nowrap;
}

.review-google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.google-logo {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.review-google-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.review-stars {
  color: #fbbc04;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: -1px;
}

.review-google-info span {
  font-size: 0.55rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 100px;
}

.contact-copy p {
  max-width: 56ch;
}

.contact-notes {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-notes article {
  padding: 20px 22px;
  border-radius: 22px;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 30px;
}

.contact-card label {
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(18, 95, 185, 0.12);
  border-radius: 20px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: rgba(17, 111, 206, 0.42);
  background: rgba(255, 255, 255, 0.96);
}

.contact-card select option {
  color: #11151b;
}

.button-full {
  width: 100%;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.floating-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {

  .topbar-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    border-radius: 16px;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .hero-stage {
    width: 100%;
    max-width: 640px;
    justify-self: start;
  }

  .hero-points,
  .hero-summary,
  .service-grid,
  .testimonial-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-intro {
    max-width: 640px;
  }

  .project-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics article {
    min-width: 0;
  }

}

@media (max-width: 760px) {
  :root {
    --container: min(100%, calc(100% - 24px));
  }

  .hero {
    --hero-mobile-top: calc(112px + env(safe-area-inset-top, 0px));
    --hero-mobile-band: clamp(420px, 60svh, 560px);
    padding: var(--hero-mobile-top) 0 48px;
    background: transparent;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .hero-media {
    position: absolute;
    top: 0;
    left: 0;
    inset: 0 0 auto;
    width: 100%;
    height: calc(var(--hero-mobile-top) + var(--hero-mobile-band));
    margin: 0;
    transform: none;
    border-radius: 0;
    overflow: hidden;
    background: rgba(5, 16, 29, 0.92);
    box-shadow: none;
  }

  .hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 18% 45%, rgba(160, 198, 231, 0.34), transparent 34%),
      linear-gradient(90deg, rgba(205, 222, 236, 0.2) 0%, rgba(205, 222, 236, 0.05) 28%, transparent 52%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(7, 20, 34, 0.68) 0%, rgba(7, 20, 34, 0.5) 38%, rgba(7, 20, 34, 0.16) 70%, rgba(7, 20, 34, 0.38) 100%),
      linear-gradient(to top, rgba(5, 16, 29, 0.9) 0%, rgba(5, 16, 29, 0.35) 12%, transparent 24%) !important;
    z-index: 2;
    pointer-events: none;
  }

  .hero-actions .button-primary {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #1a2f4c;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
  }

  .floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1fa5ff, #0a70ff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(10, 112, 255, 0.35);
    z-index: 150;
    border: 2px solid rgba(255, 255, 255, 0.1);
  }

  .topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    padding-top: max(10px, env(safe-area-inset-top));
    z-index: 200 !important;
  }

  .topbar-inner {
    align-items: center;
    padding: 10px 16px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 48%), linear-gradient(160deg, rgba(248, 251, 255, 0.98), rgba(225, 237, 248, 0.95)) !important;
    backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  }

  button:active,
  .button:active,
  .project-filter:active,
  .floating-cta:active,
  a.nav-cta:active {
    transform: scale(0.94) !important;
    transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .brand-logo {
    height: 34px;
  }

  .nav {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    bottom: auto;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 48%), linear-gradient(160deg, rgba(248, 251, 255, 0.98), rgba(225, 237, 248, 0.95)) !important;
    backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    z-index: 999;
    padding: 30px;
    gap: 24px;
    transform: translateY(-15px) scale(0.98);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav.nav-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a2f4c;
    text-align: center;
    text-shadow: none;
  }

  .nav-cta {
    display: none !important;
  }

  .section-heading h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
  }

  .hero h1,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-grid {
    gap: 0;
    min-height: auto;
  }

  .hero h1 {
    max-width: 100%;
    margin: 0;
    width: 100%;
    font-size: clamp(2.05rem, 10.5vw, 3.2rem);
    line-height: 0.98;
    text-align: left;
    text-wrap: pretty;
  }

  .hero-copy,
  .hero-stage {
    max-width: none;
    justify-self: stretch;
  }

  .hero-stage {
    margin-top: -28px;
    padding-top: 28px;
    z-index: 3;
  }

  .hero-stage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 48px;
    border-radius: 32px 32px 0 0;
    background:
      radial-gradient(120% 58px at 50% 0%, rgba(160, 208, 248, 0.18) 0%, rgba(160, 208, 248, 0.08) 36%, rgba(255, 255, 255, 0) 72%),
      linear-gradient(180deg, rgba(8, 20, 36, 0) 0%, rgba(120, 173, 228, 0.08) 44%, rgba(220, 234, 248, 0.62) 100%);
    filter: blur(14px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
  }

  .hero-stage::after {
    display: none;
  }

  .hero-copy {
    min-height: var(--hero-mobile-band);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 0;
    text-align: left;
  }

  .hero-mobile-break {
    display: block;
  }

  .hero-background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: transparent;
    filter: saturate(0.92) contrast(1.02) brightness(0.84);
  }

  .hero-media {
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 90%, rgba(0, 0, 0, 0.6) 96%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 90%, rgba(0, 0, 0, 0.6) 96%, transparent 100%);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: auto;
    min-width: 200px;
    justify-content: center;
  }

  /* Garante o estilo Glassmorphism idêntico ao Desktop */
  .hero .button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
  }

  .hero-panel-primary {
    padding: 22px 18px;
    gap: 16px;
  }

  .hero-panel {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
      0 18px 44px rgba(10, 26, 45, 0.16),
      0 -6px 18px rgba(146, 203, 255, 0.08);
  }

  .hero-panel::before {
    content: "";
    position: absolute;
    inset: -1px -1px auto -1px;
    height: 46px;
    background:
      radial-gradient(140% 44px at 50% 0%, rgba(255, 255, 255, 0.78) 0%, rgba(228, 239, 251, 0.38) 52%, rgba(255, 255, 255, 0) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.04) 70%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
  }

  .hero-detail-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .hero-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .section-heading h2,
  .contact-copy h2,
  .process-intro h2 {
    white-space: normal;
  }

  .hero-text,
  .section-heading p,
  .contact-copy p {
    max-width: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-points li {
    white-space: normal;
    border-radius: 18px;
  }

  .hero-summary {
    grid-template-columns: 1fr;
  }

  .hero-summary-wide {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .testimonial-card::before {
    font-size: 180px;
    top: 10px;
    left: 10px;
  }

  .process-shell,
  .service-card,
  .testimonial-card,
  .contact-card {
    padding: 24px;
  }

  .review-meta {
    flex-wrap: wrap;
  }

  .project-gallery,
  .service-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 24px;
    margin-right: -24px;
    padding-right: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .project-gallery::-webkit-scrollbar,
  .service-grid::-webkit-scrollbar {
    display: none;
    /* Safari/Chrome */
  }

  .project-card,
  .service-card {
    scroll-snap-align: center;
    flex: 0 0 85%;
    /* Cards take up 85% of screen to peek the next one */
    min-width: 280px;
  }

  .project-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 15px;
    margin-right: -24px;
    padding-right: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .project-filters::-webkit-scrollbar {
    display: none;
    /* Safari/Chrome */
  }

  .project-filter {
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 24px;
    margin-right: -24px;
    padding-right: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
    /* Safari/Chrome */
  }

  .testimonial-card {
    scroll-snap-align: center;
    flex: 0 0 85%;
    /* Cards take up 85% of screen to peek the next one */
    min-width: 280px;
  }

  /* Safe Area for Floating CTA */
  .contact-grid {
    padding-bottom: 120px !important;
  }

  /* Scroll indicators mobile */
  .scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
  }

  .scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(18, 95, 185, 0.18);
    transition: all 0.3s ease;
  }

  .scroll-dot.is-active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(135deg, #0a67c7, #1690f1);
  }

  .project-image {
    min-height: 200px;
    height: 200px;
  }

}

/* 
==============================================================================
10. GATEWAY PORTAL (SPLIT SCREEN) 
==============================================================================
*/

#gateway-overlay {
  background: radial-gradient(circle at top left, #0a192f 0%, #050a12 100%);
  color: #ffffff;
  padding: 40px 20px;
}

.gateway-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.gateway-header {
  margin-bottom: 60px;
  animation: fadeInDown 1s ease-out;
}

.gateway-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-top: 24px;
  letter-spacing: -0.02em;
}

.gateway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.gateway-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 60px 40px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  backdrop-filter: blur(12px);
}

.gateway-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.gateway-card:active {
  transform: scale(0.96);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(10, 103, 199, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--accent-soft);
  transition: transform 0.5s ease;
}

.gateway-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent);
  color: #ffffff;
}

.gateway-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.gateway-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.gateway-btn {
  margin-top: auto;
  font-weight: 600;
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gateway-btn::after {
  content: "→";
  transition: transform 0.3s ease;
}

.gateway-card:hover .gateway-btn::after {
  transform: translateX(8px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

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

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

  .gateway-card {
    padding: 40px;
  }
}

/* 
==============================================================================
10. GATEWAY PORTAL (PREMIUM NATIVE STANDARD) 
==============================================================================
*/

#gateway-overlay {
  background: radial-gradient(circle at 50% 50%, #102a4e 0%, #050a12 100%);
  z-index: 10000;
}

.gateway-container {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  padding: 20px;
  z-index: 10;
}

.gateway-header {
  margin-bottom: 50px;
}

.gateway-logo {
  height: 80px;
  width: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 20px rgba(10, 103, 199, 0.4));
}

.gateway-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.gateway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.gateway-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px 40px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.gateway-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(10, 103, 199, 0.4);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.card-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #37a0ff;
  margin-bottom: 20px;
  display: inline-block;
}

.gateway-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.gateway-card p {
  font-family: 'Manrope', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.gateway-action {
  margin-top: auto;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.gateway-action::after {
  content: '→';
  font-size: 1.2rem;
  color: #37a0ff;
}

.gateway-card:hover .gateway-action {
  gap: 15px;
}

.gateway-footer {
  margin-top: 60px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

@media (max-width: 850px) {
  .gateway-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gateway-card {
    padding: 40px 30px;
  }

  .gateway-header h1 {
    font-size: 2.4rem;
  }
}

/* 
==============================================================================
  11. LIGHTBOX ZOOM OVERLAY
==============================================================================
*/

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 10, 20, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  cursor: zoom-out;
  padding: 40px;
}

.lightbox-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  transform: scale(0.85);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.is-active .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 22px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Desktop: hover preview */
@media (hover: hover) and (min-width: 761px) {
  .project-card {
    position: relative;
  }
}

/* 
==============================================================================
  12. SEÇÃO DIFERENCIAIS (NÚMEROS / STATS)
==============================================================================
*/

.differentials {
  padding: 92px 0 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.diff-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(12, 73, 139, 0.18);
}

.diff-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(10, 103, 199, 0.08);
  border: 1px solid rgba(10, 103, 199, 0.14);
  color: #0a67c7;
  margin-bottom: 20px;
}

.diff-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.diff-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}

.diff-number .counter-suffix {
  font-size: 1.8rem;
  color: var(--gold);
}

.diff-label {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .differentials {
    padding-top: 60px;
  }

  .diff-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 24px;
    margin-right: -24px;
    padding-right: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .diff-grid::-webkit-scrollbar {
    display: none;
  }

  .diff-card {
    scroll-snap-align: center;
    flex: 0 0 75%;
    min-width: 240px;
  }

  .diff-number {
    font-size: 2.6rem;
  }
}

/* 
==============================================================================
  13. FOOTER PREMIUM
==============================================================================
*/

.site-footer {
  background: #071422;
  color: rgba(255, 255, 255, 0.8);
  padding: 36px 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-logo {
  height: 64px;
  width: auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 32ch;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-col h4 {
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 20px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: rgba(10, 103, 199, 0.3);
  border-color: rgba(10, 103, 199, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}

html {
  background: #071422;
}

/* 
==============================================================================
  14. CONTACT SECTION VERTICAL CENTER FIX
==============================================================================
*/

.contact-grid {
  align-items: center;
}

.scroll-indicator {
  display: none;
}