/* ============================================
   FULL WAX — Cópia fiel do site Wix original
   ============================================ */

:root {
  --color-ink: #212121;
  --color-navy: #023867;
  --color-accent: #023867;
  --color-white: #ffffff;
  --color-muted: #636363;
  --color-line: #e5e5e5;
  --color-dark: #01133a;
  --color-dark-2: #023867;

  --font-heading: 'Barlow', Arial, sans-serif;
  --font-body: 'Mulish', Arial, Helvetica, sans-serif;

  --container: 1265px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  color: var(--color-ink);
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 4.25px;
  font-size: 17px;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #fff;
}

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.lede {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 58ch;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 45px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  border-bottom: 1px solid var(--color-navy);
  padding-bottom: 2px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-dark);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}

.brand img {
  height: 24px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-color: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
}

.social-links svg {
  width: 14px;
  height: 14px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background-color: #01133a;
  background-image: linear-gradient(rgba(1, 19, 58, 0.78), rgba(1, 19, 58, 0.78)), url('../img/hero-bg-1.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #fff;
  padding: 70px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 497fr 608fr;
  gap: 0;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-right: 32px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 22px;
}

.hero p {
  font-size: 16px;
  color: #fff;
  max-width: 44ch;
  margin-bottom: 30px;
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 608/674;
  overflow: hidden;
  background: #000;
}

.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Textura sutil usada como fundo de algumas seções claras, como no site original */
.texture-bg {
  position: relative;
}

.texture-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg-1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
}

.texture-bg > .container {
  position: relative;
  z-index: 1;
}

/* ---------- Banner de foto com véu azul + parallax ----------
   Usado no hero das subpáginas, no banner "Trabalhamos apenas com"
   e nos banners antes do rodapé — mesmo tratamento em todas as páginas. */

.photo-band {
  position: relative;
  background-color: #01133a;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 19, 58, 0.72);
}

.photo-band > * {
  position: relative;
  z-index: 1;
}

/* Em telas de toque, background-attachment:fixed não é suportado —
   a imagem continua estática (degrada bem, sem parallax). */
@media (hover: none) {
  .photo-band {
    background-attachment: scroll;
  }
}

/* ---------- Page hero (sub-pages) ---------- */

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  font-size: 46px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: #fff;
}

/* ---------- Services teaser (home) ---------- */

.services-teaser-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.teaser-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.teaser-photos img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/7;
  object-fit: cover;
}

.services-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}

.teaser-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.teaser-item .icon {
  display: inline-block;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  color: var(--color-ink);
}

.teaser-item .icon svg {
  width: 100%;
  height: 100%;
}

.teaser-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-navy);
  line-height: 1.3;
}

/* ---------- Services page (full list) ---------- */

.services-list {
  display: grid;
  gap: 1px;
  background: var(--color-line);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.services-list .service-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 24px;
  padding: 30px 10px;
  background: #fff;
}

.services-list .icon {
  display: inline-block;
  width: 46px;
  height: 46px;
  color: var(--color-ink);
}

.services-list .icon svg {
  width: 100%;
  height: 100%;
}

.services-list h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-navy);
}

/* ---------- Banner "Trabalhamos apenas com" (imagem cheia + texto) ---------- */

.trust-banner {
  min-height: 459px;
  display: flex;
  align-items: center;
  padding: 60px 0 110px;
}

.trust-banner-inner {
  max-width: 560px;
}

.trust-banner .eyebrow,
.trust-banner h2 {
  color: #fff;
}

.trust-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
  max-width: 50ch;
}

/* Faixa de marcas — sobrepõe a base do banner, como no site original */

.brand-strip-wrap {
  position: relative;
  z-index: 2;
  margin-top: -70px;
  margin-bottom: 90px;
}

.brand-strip {
  background: #d1d1d1;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-item .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.brand-item .icon svg {
  width: 100%;
  height: 100%;
}

.brand-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-ink);
}

/* ---------- Testemunhos ---------- */

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

.testimonial-card .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.testimonial-card .icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-card p {
  color: var(--color-ink);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.testimonial-card a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
  padding-bottom: 1px;
}

/* ---------- About page ---------- */

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-copy p {
  color: var(--color-muted);
}

/* ---------- Footer / Contato ---------- */

.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.82);
}

.footer-media {
  height: 300px;
}

.footer-top {
  padding: 64px 0 48px;
}

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

.footer-col h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 18px;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-col .muted {
  color: rgba(255, 255, 255, 0.55);
}

.footer-form-btn {
  margin-top: 10px;
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a:hover {
  color: #fff;
}

/* ---------- WhatsApp floating button ---------- */

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.5);
  z-index: 90;
}

.whatsapp-fab svg {
  width: 27px;
  height: 27px;
  color: #fff;
}

/* ---------- Legal pages ---------- */

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 24px;
  margin: 32px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--color-muted);
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 14px;
  padding-left: 20px;
  list-style: disc;
  color: var(--color-muted);
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-note {
  margin-top: 32px;
  padding: 18px 22px;
  background: #f6f5f3;
  border-left: 3px solid var(--color-accent);
  color: var(--color-muted);
  font-size: 14px;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }

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

  .hero-video-wrap {
    aspect-ratio: 16/10;
  }

  .services-teaser-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .teaser-photos {
    max-width: 420px;
  }

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

  .trust-banner {
    padding-bottom: 140px;
  }

  .brand-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .brand-strip-wrap {
    margin-top: -100px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-media { order: -1; }

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

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    inset: 74px 0 0 0;
    background: var(--color-dark);
    padding: 28px 20px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .header-actions .social-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .section {
    padding: 60px 0;
  }

  .services-list .service-row {
    grid-template-columns: 40px 1fr;
    padding: 22px 4px;
  }

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

  .footer-media {
    height: 200px;
  }
}
