/* M&P Drones — paleta institucional */
:root {
  --color-blue: #1a3a8f;
  --color-blue-dark: #0c1d4a;
  --color-blue-mid: #152a66;
  --color-blue-light: #2d4fa8;
  --color-orange: #f97316;
  --color-orange-hover: #ea580c;
  --color-orange-soft: rgba(249, 115, 22, 0.12);
  --color-white: #ffffff;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-surface: #f4f6fa;
  --color-surface-warm: #eef1f8;
  --font: "Outfit", system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 36, 88, 0.06);
  --shadow: 0 4px 6px -1px rgba(15, 36, 88, 0.07), 0 12px 32px -8px rgba(15, 36, 88, 0.12);
  --shadow-lg: 0 20px 50px -12px rgba(15, 36, 88, 0.18);
  --header-h: 78px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  background: #050a14;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--color-text);
  background: linear-gradient(180deg, var(--color-surface-warm) 0%, var(--color-surface) 32%, #e8ecf4 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(26, 58, 143, 0.07);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 max(1.25rem, env(safe-area-inset-left)) 0 max(1.25rem, env(safe-area-inset-right));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--color-blue-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.site-nav a:not(.nav-cta):hover {
  color: var(--color-orange);
  text-decoration: none;
}

.nav-cta {
  background: linear-gradient(145deg, #fb923c 0%, var(--color-orange) 40%, var(--color-orange-hover) 100%);
  color: var(--color-white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.38);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.45);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 24px;
  background: var(--color-blue-dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.25rem max(1.25rem, env(safe-area-inset-left)) 1.25rem
      max(1.25rem, env(safe-area-inset-right));
    background: var(--color-white);
    border-bottom: 1px solid rgba(26, 58, 143, 0.1);
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) max(1.25rem, env(safe-area-inset-right)) 3rem
    max(1.25rem, env(safe-area-inset-left));
  background-color: #0a1629;
  background-image: var(--hero-bg);
  background-size: cover;
  background-repeat: no-repeat;
  /* fundo.jpg: Y maior = recorte sobe, drone fica mais ao centro vertical da faixa */
  background-position: 50% 58%;
}

@media (min-width: 1200px) {
  .hero {
    background-position: 50% 56%;
  }
}

@media (max-width: 768px) {
  .hero {
    /* Retrato: crop lateral é inevitável */
    min-height: min(85vh, 620px);
    min-height: min(85svh, 620px);
    padding-bottom: 2.5rem;
    background-position: 50% 52%;
    background-size: cover;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }
}

@media (max-width: 480px) {
  .hero {
    background-position: 50% 50%;
    min-height: min(82vh, 580px);
    min-height: min(82svh, 580px);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Vinheta no centro + base mais escura (solo claro na foto) para contraste do bloco de texto */
  background:
    radial-gradient(ellipse 100% 78% at 50% 52%, rgba(8, 18, 45, 0.28) 0%, transparent 58%),
    linear-gradient(
      180deg,
      rgba(8, 18, 45, 0.52) 0%,
      rgba(15, 36, 88, 0.32) 52%,
      rgba(6, 14, 36, 0.78) 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
  color: var(--color-white);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(8, 22, 58, 0.55) 0%, rgba(12, 29, 74, 0.42) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}

@media (max-width: 768px) {
  .hero-content {
    padding: 1.35rem 1.1rem;
    margin: 0 auto;
    width: 100%;
    max-width: min(100%, 26rem);
  }
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 0.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45), 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-lead strong {
  color: #fff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.65rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s, border-color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(145deg, #fb923c 0%, var(--color-orange) 45%, var(--color-orange-hover) 100%);
  color: var(--color-white);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-decoration: none;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.25rem, env(safe-area-inset-right));
}

@media (max-width: 768px) {
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: max(0.875rem, env(safe-area-inset-left));
    padding-right: max(0.875rem, env(safe-area-inset-right));
  }
}

.section-alt {
  background: var(--color-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.section-prose {
  position: relative;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  border: 1px solid rgba(26, 58, 143, 0.08);
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .section-prose {
    padding: 1.5rem 1.35rem;
  }
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.section-head--light .section-kicker {
  color: rgba(255, 255, 255, 0.85);
}

.section-head--light .section-title {
  color: var(--color-white);
}

.section-head .section-subtitle,
.section-head .contact-intro {
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--color-text-muted);
}

.section-head--light .contact-intro {
  color: rgba(255, 255, 255, 0.82);
}

.section-services {
  position: relative;
  overflow: hidden;
}

.section-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 900px);
  height: 280px;
  background: radial-gradient(ellipse at 50% 0%, var(--color-orange-soft) 0%, transparent 70%);
  pointer-events: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 720px;
}

.section-title {
  text-align: center;
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--color-blue-dark);
}

.section-subtitle {
  text-align: center;
  margin: 0 0 2.5rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.section-subtitle strong {
  color: var(--color-blue-dark);
  font-weight: 600;
}

.section-head .section-subtitle {
  margin-bottom: 0;
}

.section h2:not(.section-title) {
  font-size: clamp(1.55rem, 2.8vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-blue-dark);
  margin: 0 0 1rem;
}

.section-prose .section-kicker + h2 {
  margin-top: 0;
}

.lead {
  font-size: 1.14rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section-prose p + p {
  margin-top: 1.1rem;
  color: var(--color-text-muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 58, 143, 0.07);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.25s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.35), transparent 40%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 58, 143, 0.12);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  color: var(--color-orange);
  background: linear-gradient(145deg, var(--color-orange-soft), rgba(249, 115, 22, 0.06));
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-blue-dark);
}

.card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.section-gallery {
  background: linear-gradient(180deg, var(--color-surface-warm) 0%, #ffffff 55%, #fbfcfe 100%);
}

.section-gallery .section-head {
  margin-bottom: 2rem;
}

.gallery-videos {
  margin-top: 3rem;
  padding-top: 2.75rem;
  border-top: 1px solid rgba(26, 58, 143, 0.1);
}

@media (max-width: 768px) {
  .gallery-videos {
    margin-top: 2.25rem;
    padding-top: 2rem;
  }
}

.gallery-videos-head {
  text-align: center;
  margin-bottom: 1.75rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.gallery-videos-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-blue-dark);
}

.gallery-videos-sub {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.video-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 720px) {
  .video-stack {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.video-block {
  width: 100%;
  min-width: 0;
}

.video-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #0c1d4a, #152a66);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 58, 143, 0.1);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.video-block:hover .video-aspect {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.video-aspect::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.video-aspect video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-caption {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}

.video-error {
  margin: 0.75rem 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #b91c1c;
  background: #fef2f2;
  border-radius: 8px;
  border: 1px solid #fecaca;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.65rem;
  }
}

.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--color-blue-mid), var(--color-blue-dark));
  box-shadow: var(--shadow);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, transparent 55%, rgba(12, 29, 74, 0.35) 100%);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.35s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.section-contact {
  position: relative;
  background: linear-gradient(165deg, var(--color-blue-mid) 0%, var(--color-blue-dark) 45%, #060d24 100%);
  color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.section-contact::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.section-contact .container {
  position: relative;
  z-index: 1;
}

.section-contact .section-title {
  color: var(--color-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-form {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 480px) {
  .contact-form {
    padding: 1.25rem;
  }
}

.form-row {
  margin-bottom: 1rem;
}

.form-row-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 520px) {
  .form-row-split {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-orange);
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: #f87171;
}

.form-hint {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #fecaca;
}

.btn-form-submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.9rem 1.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-hover));
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
  transition: filter 0.15s, transform 0.15s;
}

.btn-form-submit:hover {
  filter: brightness(1.06);
}

.btn-form-submit:active {
  transform: scale(0.99);
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.contact-aside .contact-grid {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.contact-block h3 {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-orange);
}

.contact-block a {
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-block a:hover {
  color: #fed7aa;
}

.contact-aside {
  padding: 0.25rem 0;
}

.contact-aside .contact-block {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-aside .contact-block:first-child {
  padding-top: 0;
}

.contact-aside .contact-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-block-full {
  grid-column: 1 / -1;
}

address {
  font-style: normal;
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-list li {
  margin-bottom: 0.35rem;
}

.map-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: var(--color-orange) !important;
}

.map-link:hover {
  color: #fdba74 !important;
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.whatsapp-float:active {
  transform: scale(0.98);
}

.whatsapp-float-icon {
  width: 30px;
  height: 30px;
}

.site-footer {
  background: linear-gradient(180deg, #070f1f 0%, #050a14 100%);
  color: rgba(255, 255, 255, 0.58);
  /* Espaço para o botão do WhatsApp + safe-area — fica azul, não o fundo claro do body */
  padding: 0 0 max(5.5rem, calc(2.25rem + env(safe-area-inset-bottom)));
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-map-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.75rem max(1rem, env(safe-area-inset-left)) 1.25rem
    max(1rem, env(safe-area-inset-right));
}

.footer-map-aspect {
  position: relative;
  width: 100%;
  height: clamp(150px, 38vw, 240px);
  max-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .footer-map-wrap {
    padding-top: 1.25rem;
  }

  .footer-map-aspect {
    height: clamp(140px, 42vw, 200px);
    max-height: 200px;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 1.75rem max(1rem, env(safe-area-inset-left)) 0 max(1rem, env(safe-area-inset-right));
}

.footer-logo {
  height: 38px;
  width: auto;
  opacity: 0.92;
  filter: grayscale(0.08);
}

.site-footer p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 22, 41, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox img {
  max-width: min(96vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--color-orange);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card,
  .gallery-item,
  .btn,
  .nav-cta,
  .gallery-item img,
  .video-aspect {
    transition: none;
  }

  .card:hover,
  .gallery-item:hover,
  .video-block:hover .video-aspect {
    transform: none;
  }

  .card:hover::before {
    opacity: 0;
  }
}
