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

.nav-anchor {
  display: block;
  position: absolute;
  top: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  zoom: 0.9;
}

/* Firefox nao suporta `zoom` estavel; fallback equivalente usa
   transform: scale no body SEM a compensacao `width: 111.111%`,
   porque foi essa compensacao que empurrava o conteudo para fora
   da area visivel (cortada pelo overflow-x: hidden). Sem ela, o
   conteudo encolhe visualmente mas a area rolavel permanece 100%
   da viewport, sem corte horizontal. */
@supports not (zoom: 1) {
  html {
    zoom: normal;
  }

  body {
    transform: scale(0.9);
    transform-origin: top left;
  }
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  padding-top: 76px;
  overflow-x: hidden;
  max-width: 100%;
}

/* ===================================================================
   HEADER / NAV — reescrito com Flexbox simples:
   [ LOGO (esq, padding 25px) ] [ NAV-LINKS (centro, flex:1) ] [ NAV-SOCIAL (dir, padding 25px) ]
   Isso elimina o conflito de grid-template-areas entre breakpoints
   que fazia a logo "subir" por cima do nav-links em certas larguras.
   =================================================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 25px;
  border-bottom: none;
  background: #ffffff;
  flex-wrap: nowrap;
}

nav.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 90px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-text {
  min-width: 0;
}

.logo-text h1 {
  font-size: 25px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1;
  white-space: nowrap;
}

.logo-text h1 span {
  color: #f5a623;
}

.logo-text p {
  font-size: 13px;
  color: #888;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(5, 11, 20, 0.12);
  border-radius: 6px;
  background: #fff;
  color: #050B14;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 auto;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.25);
  outline: none;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

nav.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

nav.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

nav.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
  row-gap: 6px;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 17px;
  color: #1a1a2e;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links>li>a:hover,
.nav-links>li>a:focus-visible {
  color: #f5a623;
  background: transparent;
  outline: none;
}

.nav-links>li>a.active {
  color: #f5a623;
}

.nav-dropdown-trigger::after {
  content: "▾";
  font-size: 14px;
  line-height: 1;
  color: currentColor;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open>.nav-dropdown-trigger::after {
  transform: translateY(2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px;
  width: max-content;
  max-width: min(92vw, 280px);
  padding: 8px;
  border: 1px solid rgba(5, 11, 20, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(5, 11, 20, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.06s linear, transform 0.06s linear, visibility 0s linear 0.06s;
  z-index: 30;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu.nav-dropdown-menu--services,
.nav-dropdown-menu.nav-dropdown-menu--partners {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 200px;
}

.nav-dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown-category {
  display: block;
  text-decoration: none;
  color: #394150;
  font-size: 14px;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-dropdown-category:hover,
.nav-dropdown-category:focus-visible {
  color: #f5a623;
  background: rgba(245, 166, 35, 0.08);
  outline: none;
}

.nav-dropdown-menu a.nav-dropdown-link {
  display: block;
  text-decoration: none;
  color: #394150;
  font-size: 14px;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a.nav-dropdown-link:hover,
.nav-dropdown-menu a.nav-dropdown-link:focus-visible {
  color: #f5a623;
  background: rgba(245, 166, 35, 0.08);
  outline: none;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
}

.footer-social-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  letter-spacing: 0.2px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #050B14;
  text-decoration: none;
  background: #fff;
  border: 0;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: #f5a623;
  color: #050B14;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(245, 166, 35, 0.32);
  opacity: 1;
  outline: none;
}


/* Icones sociais no header (so aparece no desktop) */
.nav-social {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  flex-direction: column;
  margin-top: 0px;
  margin-right: 90px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.nav-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 4px;
  border-radius: 6px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-social a img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-social-handle {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 0.2px;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  line-height: 1;
  margin-top: 4px;
}

.nav-social a:hover,
.nav-social a:focus-visible {
  opacity: 0.85;
  transform: translateY(-1px);
  outline: none;
}

.section {
  --section-bg: #ffffff;
  background: var(--section-bg);
  min-height: calc(84vh - 88px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  padding: 75px 0 75px 0;
  gap: 28px;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  /* Garante que o navegador deixe espaço para o navbar fixo ao
     navegar via âncora nativa (Tab, foco, :target). O JS de scroll
     também respeita esse mesmo respiro abaixo do navbar. */
  scroll-margin-top: 105px;
}

.cover-hero {
  scroll-margin-top: 105px;
}

.cover-hero {
  position: relative;
  min-height: calc(100vh - 350px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 48px;
  background: #050B14;
  isolation: isolate;
  text-align: center;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  height: 100%;
  object-fit: contain;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.6s ease;
  object-fit: fill;
  object-position: center top;
  filter: none;
  pointer-events: none;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
}

.section-text {
  grid-column: 2 / 3;
  max-width: 100%;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;

  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: -80px;
}

.section-text h2 {
  font-size: 80px;
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-text h3 {
  font-size: 43px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 25px;
}

.section-text--with-bar h2 {
  margin-bottom: 18px;
  font-size: 72px;
}

.section-text--with-bar h2+h3 {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 600;
}

.section-text--with-bar h2::after {
  content: "";
  display: block;
  width: 192px;
  height: 4px;
  background: #f5c518;
  border-radius: 2px;
  margin: 45px 0 21px;
}

.section-text p {
  font-size: 22px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 18px;
}

.section-text p.small {
  font-size: 25px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.benefits {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 0 0 38px;
}

.benefits li {
  position: relative;
  padding-left: 28px;
  font-size: 28px;
  color: #333;
  line-height: 1.5;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f5a623;
}

.btn-orcamento {
  display: inline-block;
  margin-bottom: 45px;
  background: #050B14;
  color: #fff;
  text-decoration: none;
  padding: 20px 43px;
  border-radius: 4px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  box-shadow: 0 12px 28px rgba(5, 11, 20, 0.14);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-orcamento:hover {
  background: #111827;
  box-shadow: 0 16px 34px rgba(5, 11, 20, 0.22);
  transform: translateY(-3px);
}

/* Bloco de destaques e ícones das seções (.section) */
.section-destaque {
  margin-top: 18px;
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  color: #f5a623;
  line-height: 1.5;
}

.section-icones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 12px;
  max-width: 100%;
}

.section-icone-img {
  width: 100%;
  max-width: 412px;
  height: auto;
  display: block;
  flex-shrink: 1;
}


.section-icone-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.section-icone-link:hover {
  transform: translateY(-3px);
}

.section-icone-link>.section-icone-img {
  width: 220px;
}



.section>img {
  grid-column: 3 / 5;
  justify-self: end;
  align-self: end;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 8px rgba(0, 0, 0, 0.434));
}



:is(#quem-somos,
  #videos,
  #social-media,
  #jingles,
  #restauracao-foto,
  #fita-vhs,
  #fita-vhsc,
  #mini-dv,
  #vinil,
  #dvd,
  #fita-cassete,
  #monoculo) .section-image {
  --linked-image-width: 1080;
  --linked-image-height: 800;
  min-height: 0;
  aspect-ratio: var(--linked-image-width) / var(--linked-image-height);
}

:is(#quem-somos,
  #videos,
  #social-media,
  #jingles,
  #restauracao-foto,
  #fita-vhs,
  #fita-vhsc,
  #mini-dv,
  #vinil,
  #dvd,
  #fita-cassete,
  #monoculo) .image-frame,

.logo-frame {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}


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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

img.lazy-reveal:not(.hero-slide) {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

img.lazy-reveal.is-visible:not(.hero-slide) {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  --wa-translate-y: 0px;
  --wa-scale: 1;
}

.whatsapp-float:hover {
  --wa-translate-y: -4px;
  --wa-scale: 1.03;
  transform: translateY(var(--wa-translate-y)) scale(var(--wa-scale));
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.42);
}




footer {
  background: #050B14;
  color: #fff;
  padding: 58px 48px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo h2 {
  font-size: 30px;
  line-height: 1;
  margin: 0;
}

.footer-logo h2 span {
  color: #f5a623;
}

.footer-logo-subtitle {
  margin-top: 4px;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.footer-social-handle {
  margin: 4px 0 0;
  color: #f5a623;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.footer-column h3 {
  font-size: 17px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f5a623;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 11px;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #f5a623;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact strong {
  color: #f5a623;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 14px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

/* ===================================================================
   BREAKPOINT ÚNICO DE COLAPSO DO MENU: <= 1180px
   Abaixo disso: logo (esq, padding 25px) + toggle (dir) na mesma linha;
   nav-links e nav-social saem do fluxo da barra e formam o painel
   suspenso do menu mobile. Isso impede qualquer sobreposição entre
   logo / links / social, pois cada elemento tem sua própria área fixa.
   =================================================================== */
@media (max-width: 1180px) {
  body {
    padding-top: 64px;
    overflow-x: hidden;
  }

  nav,
  nav.scrolled {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 12px 16px 12px 25px;
  }

  .logo {
    margin: 10px;
    min-width: 0;
  }

  .logo-icon,
  .logo-icon img {
    width: 56px;
    height: 56px;
  }

  .logo-text {
    min-width: 0;
  }

  .logo-text h1 {
    font-size: 24px;
  }

  .logo-text p {
    font-size: 13px;
  }

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

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 20px 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(5, 11, 20, 0.08);
    box-shadow: 0 24px 42px rgba(5, 11, 20, 0.12);
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.06s linear, transform 0.06s linear, visibility 0s linear 0.06s;
  }

  nav.is-menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .nav-links>li>a {
    width: 100%;
    justify-content: space-between;
    border-radius: 8px;
    padding: 14px 14px;
    font-size: 18px;
  }

  .nav-dropdown-trigger::after {
    font-size: 16px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin-top: 6px;
    padding: 12px;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    border-radius: 8px;
    box-shadow: none;
    background: rgba(245, 247, 250, 0.92);
    transition: none;
    animation: none;
    display: none;
  }

  /* Quando o menu mobile esta aberto: TODAS as opcoes/submenus ficam visiveis e clicaveis. */
  nav.is-menu-open .nav-dropdown-menu {
    display: block;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    transform: none;
    animation: none;
  }

  .nav-dropdown-menu.nav-dropdown-menu--services,
  .nav-dropdown-menu.nav-dropdown-menu--partners {
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .nav-dropdown-column {
    gap: 2px;
    min-width: 0;
  }

  .cover-hero {
    min-height: calc(100svh + 60px);
    padding: 76px 24px 58px;
  }

  .section {
    padding: 34px 0 0 34px;
    gap: 24px;
  }

  .section-text {
    grid-column: 2 / 3;
    max-width: 100%;
    text-align: left;

    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 50px;
  }

  .section>img {
    width: 106.2%;
    max-width: none;
  }

  .section-text h2,
  .partners-heading h2 {
    font-size: 56px;
  }

  .section-text--with-bar h2 {
    font-size: 50.4px;
  }

  .section-text h3 {
    font-size: 32px;
  }

  .section-text--with-bar h2+h3 {
    font-size: 22px;
    margin-top: 6px;
  }

  .section-text--with-bar h2::after {
    width: 156px;
    height: 4px;
    margin: 45px 0 20px;
  }

  .section-text p,
  .partners-heading p {
    font-size: 23px;
  }

  .section-text p.small {
    font-size: 20px;
  }

  .benefits li {
    font-size: 22px;
  }

  .btn-orcamento {
    font-size: 20px;
  }


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

  .footer-content .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-content .footer-brand .footer-social {
    align-items: center;
  }

  .footer-content .footer-brand .footer-social-icons {
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .section>img {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
  }

  body {
    padding-top: 72px;
  }

  .section {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 38px 18px 0 18px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cover-hero {
    min-height: calc(100svh + 40px);
    padding: 76px 24px;
  }

  .section-text,
  .section-image {
    grid-column: 1 / -1;
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .section-text {
    padding-left: 48px;
    padding-right: 48px;

    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .section>img {
    width: 100%;
    max-width: 100%;
    justify-self: center;
  }

  .section-text h2 {
    font-size: 38px;
  }

  .section-text--with-bar h2 {
    font-size: 34.2px;
  }

  .section-text h3 {
    font-size: 23px;
  }

  .section-text--with-bar h2+h3 {
    font-size: 16px;
    margin-top: 6px;
  }

  .section-text--with-bar h2::after {
    width: 132px;
    height: 3px;
    margin: 45px 0 19px;
  }

  .section-text p {
    font-size: 13px;
  }

  .section-text p.small {
    font-size: 15px;
  }

  .benefits li {
    font-size: 16px;
  }

  .btn-orcamento {
    padding: 17px 30px;
    font-size: 14px;
  }

  footer {
    padding: 46px 24px 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 38px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  body {
    padding-top: 70px;
  }

  nav,
  nav.scrolled {
    padding: 10px 14px 10px 18px;
  }

  .logo-text h1 {
    font-size: 19px;
  }

  .nav-links {
    font-size: 13px;
  }

  .nav-dropdown-menu.nav-dropdown-menu--services,
  .nav-dropdown-menu.nav-dropdown-menu--partners {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 38px 0 0 18px;
  }

  .section-text {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100%;
    box-sizing: border-box;

    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .p-section-text {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cover-hero {
    min-height: calc(100svh + 30px);
    padding: 62px 18px;
  }



  .section-text h2 {
    font-size: 34px;
  }

  .section-text--with-bar h2 {
    font-size: 30.6px;
  }

  .section-text h3 {
    font-size: 21px;
  }

  .section-text--with-bar h2+h3 {
    font-size: 15px;
    margin-top: 6px;
  }

  .section-text--with-bar h2::after {
    width: 120px;
    height: 3px;
    margin: 45px 0 19px;
  }

  .section-text p {
    font-size: 16px;
  }

  .benefits li {
    font-size: 15px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    align-items: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-social-label,
  .footer-social-handle {
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .cover-hero {
    min-height: calc(100vh - 400px);
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .section .section-text {
    grid-column: 1 / 3 !important;
    max-width: 100%;
    text-align: left;
    padding-left: 105px;
    padding-right: 48px;
    box-sizing: border-box;

    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: -50px;
  }
}

@media (min-width: 1181px) and (max-width: 1920px) {
  .section .section-text {
    grid-column: 1 / 3;
    padding-left: 48px;
    padding-right: 48px;
    max-width: 100%;
    box-sizing: border-box;

    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 50px;
  }
}


/* ===== Desktop (> 1180px): header com logo / links centralizados / social,
   cada bloco com padding de 25px na borda correspondente da tela ===== */
@media (min-width: 1181px) {
  body {
    padding-top: 114px;
  }

  nav,
  nav.scrolled {
    padding: 21px 25px;
  }

  nav.scrolled {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .logo {
    gap: 13px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
  }

  .logo-icon,
  .logo-icon img {
    width: 66px;
    height: 66px;
    flex-shrink: 0;
  }

  .logo-text h1 {
    font-size: 34px;
  }

  .logo-text p {
    font-size: 18px;
  }

  .nav-links {
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 4px;
  }

  .nav-links>li>a {
    font-size: 22px;
    padding: 10px 14px;
    white-space: nowrap;
  }

  .nav-dropdown-trigger::after {
    font-size: 16px;
  }

  .nav-social {
    display: inline-flex !important;

    margin-top: 0px;
    margin-right: 40px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .nav-social a img {
    width: 32px;
    height: 32px;
  }

  .cover-hero {
    min-height: calc(100vh);
  }

}

.p-section {
  background: #fff;
  min-height: calc(84vh - 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 60px;
  gap: 34px;
  scroll-margin-top: 105px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.p-section:nth-of-type(even) {
  background: #fff;
}

.p-section-text {
  flex: 1;
  min-width: 0;
  max-width: 575px;
  padding-left: 48px;
  padding-right: 48px;
}

.p-section-text h2 {
  font-size: 53px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.p-section-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
}

.p-section-text p {
  font-size: 19px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 18px;
}

.p-partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 18px;
  margin: 32px 0 36px;
  width: 100%;
}

.p-partner-card {
  display: grid;
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(5, 11, 20, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(5, 11, 20, 0.06);
  min-width: 0;
  overflow: hidden;
}

.p-partner-image-slot {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0;
  min-height: 142px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.p-partner-image-slot img {
  width: min(100%, 430px);
  height: 100%;
  max-height: 132px;
  object-fit: contain;
  display: block;
}

.p-partner-card h4 {
  font-size: 19px;
  color: #1a1a2e;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.p-partner-card p {
  font-size: 15px;
  color: #5a6170;
  line-height: 1.55;
  margin: 0;
  overflow-wrap: anywhere;
}

.p-cta-wrap {
  display: flex;
  width: 100%;
  background: #050B14;
  border-radius: 6px;
  padding: 4px;
  box-shadow: 0 12px 28px rgba(5, 11, 20, 0.14);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.p-cta-wrap:hover {
  background: #111827;
  box-shadow: 0 16px 34px rgba(5, 11, 20, 0.22);
  transform: translateY(-2px);
}

.p-cta-wrap .p-btn-orcamento {
  color: #fff;
  flex: 1;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
}

.p-cta-wrap .p-btn-orcamento:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.p-section-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  max-width: 775px;
}

.p-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.p-image-frame img {
  width: 60%;
  height: auto;
  object-fit: contain;
  display: block;
}

.p-section.p-reverse .p-section-image {
  order: -1;
}

.p-section.p-reverse .p-section-text {
  order: 1;
}

@media (max-width: 860px) {
  body {
    padding-top: 82px;
  }

  .p-cover-hero {
    min-height: 620px;
    padding: 76px 24px;
  }

  .p-cover-content h1 {
    font-size: 46px;
  }

  .p-cover-content p {
    font-size: 19px;
  }

  .p-section {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 44px 22px;
    gap: 28px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .p-section.p-reverse .p-section-image,
  .p-section.p-reverse .p-section-text {
    order: initial;
  }

  .p-section-text,
  .p-section-image {
    max-width: none;
  }

  .p-section-text {
    padding-left: 48px;
    padding-right: 48px;
  }

  .p-section-text h2 {
    font-size: 38px;
  }

  .p-section-text h3 {
    font-size: 23px;
  }

  .p-section-text p {
    font-size: 17px;
  }

  .p-partner-grid {
    grid-template-columns: 1fr;
  }

  .p-partner-card h4 {
    font-size: 18px;
  }

  .p-partner-image-slot {
    min-height: 150px;
  }

  .p-partner-image-slot img {
    max-height: 140px;
  }

  .p-section-image {
    min-height: 320px;
  }

  footer {
    padding: 46px 24px 0;
  }

  .p-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 38px;
  }

  .cover-hero {
    min-height: calc(100vh - 350px);
  }
}


@media (max-width: 560px) {
  body {
    padding-top: 70px;
  }

  footer {
    padding: 38px 18px 0;
  }

  .p-logo-text h1 {
    font-size: 19px;
  }

  .p-nav-links {
    font-size: 13px;
  }

  .p-cover-hero {
    min-height: 540px;
    padding: 62px 18px;
  }

  .p-cover-content h1 {
    font-size: 34px;
  }

  .p-cover-content p {
    font-size: 17px;
  }

  .p-section {
    padding: 38px 18px;
  }

  .p-section-text h2 {
    font-size: 34px;
  }

  .p-section-text h3 {
    font-size: 21px;
  }

  .p-section-text p {
    font-size: 16px;
  }

  .p-partner-grid {
    gap: 14px;
    margin: 28px 0 32px;
  }

  .p-partner-card {
    padding: 16px;
    gap: 18px;
  }

  .p-partner-image-slot {
    min-height: 128px;
  }

  .p-partner-image-slot img {
    max-height: 118px;
  }

  .p-footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .p-footer-logo {
    justify-content: center;
  }

  .p-footer-legal {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .cover-hero {
    min-height: calc(100vh - 400px);
  }
}



/* Partner section heading wrapper (namespace p-) */
.p-partners-heading {
  background: #fff;
  padding: 60px 48px 36px;
  text-align: center;
}

.p-partners-heading h2 {
  font-size: 53px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #1a1a2e;
}

.p-partners-heading p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.7;
  color: #333;
}

.p-partners-heading-inner {
  max-width: 980px;
  margin: 0 auto;
}


/* ===== Parceiros: nova estrutura (header + capa à esquerda + cards) ===== */
.p-section--partners {
  padding: 56px 64px 68px;
  gap: 20px;
  scroll-margin-top: 105px;
  flex-direction: column;
  align-items: stretch;
  min-height: auto;
}

.section--under--title--partners {
  font-weight: bold;

}

.p-partner-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(5, 11, 20, 0.08);
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.p-partner-section-header h2 {
  font-size: 46px;
  line-height: 1.05;
  font-weight: 900;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0;
}

.p-partner-section-header p {
  font-size: 19px;
  color: #333;
  line-height: 1.6;
  max-width: 760px;
  margin: 0;
}

/* Track da capa com largura FIXA (320px) — garante que a capa nunca
   seja espremida em larguras intermediarias onde 3 cards 320px + capa
   + gap nao cabem confortavelmente. O grid dos cards cuida de si proprio
   via 1fr; quando nao cabe, o conteudo apenas flui para uma nova linha. */
.p-partner-section-body {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: stretch;
  gap: clamp(28px, 4vw, 120px);
  width: 100%;
  justify-content: start;
}

.p-section-image--cover {
  max-width: 320px;
  width: 100%;
  justify-self: start;
  align-self: start;
  display: flex;
  flex-direction: column;
}

/* Titulo da categoria, posicionado ACIMA da imagem de capa (ou do
   card horizontal, em oficinas). Mesmo padrao visual para todas as
   secoes de parceiros: 60px, peso 800, uppercase, alinhado a esquerda. */
.p-cover-title {
  font-size: 60px;
  line-height: 1.05;
  font-weight: 800;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin: 0 0 -1px 0;
  text-align: left;
}

.p-cover-title--oficinas {
  font-size: 60px;
  text-align: left;
  margin-bottom: -1px;
}

.p-section-image--cover .p-image-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  background: #f4f5f8;
}

.p-section-image--cover .p-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Grid de cards dos parceiros (multi = cinegrafistas, single = demais) */
.p-section--partners .p-partner-grid {
  display: grid;
  gap: 22px;
  margin: 0;
  width: 100%;
}

/* Largura fixa dos cards - nao esticam ao alargar a tela */
.p-partner-grid {
  width: auto;
  justify-self: start;
}

/* Cards de largura fixa 320px (base desktop 1920px) - NAO escalam com a largura.
   Apenas o GAP entre eles cresce dinamicamente. */
.p-partner-grid--multi {
  grid-template-columns: repeat(3, 320px);
  gap: clamp(16px, 2vw, 56px);
  justify-content: space-between;
}

.p-partner-grid--single {
  grid-template-columns: repeat(2, 320px);
  max-width: 720px;
  justify-self: start;
  gap: clamp(16px, 2vw, 56px);
}

/* Oficinas tem apenas 1 parceiro: usa auto-fit para que o card unico
   ocupe apenas uma coluna de 320px, sem reservar espaco para uma
   segunda coluna vazia ao lado. As demais secoes --single seguem
   com `repeat(2, 320px)` no seletor acima. */
#oficinas .p-partner-grid--single {
  grid-template-columns: repeat(auto-fit, 320px);
}

.p-section--partners .p-partner-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  min-width: 0;
  overflow: hidden;
  height: 100%;
  width: 320px;
  max-width: 320px;
  flex: 0 0 320px;
}

/* Foto do profissional (quadrada, harmoniza com a largura do card) */
.p-section--partners .p-partner-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f5f8;
  flex: 0 0 auto;
}

.p-section--partners .p-partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Corpo do card: empilha título, descrição, ícones, contato e CTA */
.p-section--partners .p-partner-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
}

.p-section--partners .p-partner-body h4 {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
  overflow-wrap: anywhere;
}

.p-section--partners .p-partner-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: #5a6170;
  margin: 0;
  overflow-wrap: anywhere;
  flex: 1 1 auto;
}

/* Ícones de equipamentos (drone/câmera) - 4x maior que o tamanho anterior (32px -> 128px) */
.p-section--partners .p-partner-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 80px;
  padding: 6px 0;
}

.p-section--partners .p-partner-icons img {
  height: 70px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.p-section--partners .p-partner-contact,
.p-section--partners .p-partner-location {
  font-size: 13px;
  line-height: 1.4;
  color: #1a1a2e;
  margin: 0;
  overflow-wrap: anywhere;
}

.p-section--partners .p-partner-contact strong,
.p-section--partners .p-partner-location strong {
  font-weight: 700;
}

/* Botão de WhatsApp: a imagem ocupa exatamente o mesmo tamanho do <a> */
.p-section--partners .p-btn-whatsapp {
  display: block;
  width: 100%;
  margin: auto auto 0;
  padding: 0;
  line-height: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.p-section--partners .p-btn-whatsapp:hover,
.p-section--partners .p-btn-whatsapp:focus-visible {
  box-shadow: none;
  transform: none;
  outline: none;
  opacity: 0.85;
}

.p-section--partners .p-btn-whatsapp img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.p-section--partners .p-btn-whatsapp:hover img,
.p-section--partners .p-btn-whatsapp:focus-visible img {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);
}

.p-section--partners .p-partner-whatsapp-number {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Espaçamento entre capa e grid padronizado para TODAS as categorias
   (mesmo valor usado no #cinegrafistas: preenche a largura em 1920px). */
.p-section--partners .p-partner-section-body {
  gap: clamp(36px, 6vw, 170px);
}

/* Card igual à altura da imagem de capa (altura do card = altura do frame da capa) */
.p-section--partners .p-partner-card {
  align-self: stretch;
  box-shadow: none;
}

.p-section--partners .p-partner-section-body {
  align-items: stretch;
}

/* Em telas medias/tablets: cards em 2 colunas (320px) com 1 wrapping.
   Breakpoint 1480 (nao 1320) para que 3 cards 320px + capa 320px + gaps
   caibam confortavelmente em 1440px sem espremer a capa. */
@media (max-width: 1480px) {
  .p-partner-grid--multi {
    grid-template-columns: repeat(2, 320px);
    justify-content: start;
    gap: clamp(16px, 2vw, 40px);
  }

  .p-partner-grid--single {
    grid-template-columns: repeat(2, 320px);
    max-width: 720px;
    gap: clamp(16px, 2vw, 40px);
  }

  /* Oficinas (1 parceiro): continua com auto-fit, sem coluna vazia */
  #oficinas .p-partner-grid--single {
    grid-template-columns: repeat(auto-fit, 320px);
    max-width: 720px;
  }
}

/* Em laptops compactos: 1 coluna fixa (cards 320px) com max-width controlado */
@media (max-width: 980px) {
  .p-partner-grid--multi {
    grid-template-columns: 320px;
  }

  .p-partner-grid--single {
    grid-template-columns: 320px;
    max-width: 320px;
  }

  /* Oficinas (1 parceiro): uma coluna 320px sem reserva de espaco */
  #oficinas .p-partner-grid--single {
    grid-template-columns: repeat(auto-fit, 320px);
    max-width: 320px;
  }
}

/* Responsivo: header / capa / cards no layout de parceiros */
@media (max-width: 860px) {
  .p-section--partners {
    padding: 44px 22px 52px;
    gap: 30px;
  }

  .p-partner-section-header {
    padding-bottom: 10px;
    gap: 10px;
  }

  .p-partner-section-header h2 {
    font-size: 30px;
    letter-spacing: -0.3px;
  }

  .p-partner-section-header p {
    font-size: 15.5px;
    line-height: 1.55;
    max-width: 560px;
  }

  .p-partner-section-body {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .p-section-image--cover {
    max-width: 260px;
    margin: 0 auto;
    justify-self: center;
  }

  .p-cover-title {
    font-size: 38px;
    text-align: left;
  }

  .p-cover-title--oficinas {
    font-size: 38px;
    text-align: left;
  }

  .p-partner-grid--multi,
  .p-partner-grid--single {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: stretch;
    margin-left: 0;
    max-width: 100%;
    gap: 14px;
  }

  /* Oficinas (1 parceiro): mantem largura fixa de 320px em mobile/tablet */
  #oficinas .p-partner-grid--multi,
  #oficinas .p-partner-grid--single {
    grid-template-columns: repeat(auto-fit, 320px);
  }

  .p-section--partners .p-partner-card {
    width: 100%;
    max-width: 100%;
    flex: 1 1 0;
    padding: 14px;
    gap: 12px;
  }

  .p-section--partners .p-partner-photo {
    aspect-ratio: 1 / 1;
  }

  .p-section--partners .p-partner-icons {
    min-height: 96px;
  }

  .p-section--partners .p-partner-icons img {
    height: 88px;
  }

  .p-section--partners .p-partner-body {
    gap: 8px;
  }

  .p-section--partners .p-partner-body h4 {
    font-size: 16px;
  }

  .p-section--partners .p-partner-desc {
    font-size: 13px;
    line-height: 1.45;
  }

  .p-section--partners .p-partner-contact,
  .p-section--partners .p-partner-location {
    font-size: 12.5px;
  }
}

@media (max-width: 560px) {
  .p-partners-heading {
    padding: 38px 18px 24px;
  }

  .p-partners-heading h2 {
    font-size: 30px;
  }

  .p-partners-heading p {
    font-size: 15px;
  }

  .p-section--partners {
    padding: 34px 16px 44px;
    gap: 24px;
  }

  .p-partner-section-header h2 {
    font-size: 26px;
    line-height: 1.1;
  }

  .p-partner-section-header p {
    font-size: 14.5px;
  }

  .p-partner-section-body {
    gap: 22px;
  }

  .p-section-image--cover {
    max-width: 220px;
  }

  .p-partner-grid--multi,
  .p-partner-grid--single {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Oficinas (1 parceiro): mantem card 320px fixo no mobile pequeno */
  #oficinas .p-partner-grid--multi,
  #oficinas .p-partner-grid--single {
    grid-template-columns: repeat(auto-fit, 320px);
  }

  .p-section--partners .p-partner-card {
    padding: 14px;
    gap: 12px;
  }

  .p-section--partners .p-partner-body h4 {
    font-size: 17px;
  }

  .p-section--partners .p-partner-desc {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .p-section--partners .p-partner-icons {
    min-height: 86px;
  }

  .p-section--partners .p-partner-icons img {
    height: 76px;
  }

  .p-section--partners .p-partner-contact,
  .p-section--partners .p-partner-location {
    font-size: 12.5px;
  }

  .cover-hero {
    min-height: calc(100vh - 400px);
  }
}

/* ===================================================================
   OFICINAS — layout horizontal: foto | logo+label | info
   =================================================================== */
.oficinas-horizontal-card {
  display: grid;
  grid-template-columns: 320px auto 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 80px);
  width: 100%;
}

.oficinas-photo {
  width: 320px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f5f8;
}

.oficinas-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.oficinas-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.oficinas-logo-col img {
  width: 300px;
  height: auto;
  object-fit: contain;
  display: block;
}

.oficinas-info-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.oficinas-desc {
  font-size: 27px;
  line-height: 1.6;
  color: #1a1a2e;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

/* Botão de Oficinas (260px): especificidade maior que a regra generica
   `.p-section--partners .p-btn-whatsapp` (que define width: 100%).
   Sem esse prefixo, o seletor simples perderia na cascata e o botão
   ocuparia 100% do card igual aos demais — mas em Oficinas o layout
   horizontal tem outra composicao, e o botao precisa ser menor. */
.p-section--partners .oficinas-btn {
  display: block;
  width: 260px;
  margin: 0 auto;
  padding: 0;
  line-height: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.p-section--partners .oficinas-btn:hover,
.p-section--partners .oficinas-btn:focus-visible {
  opacity: 0.85;
  transform: translateY(-2px);
  outline: none;
}

.p-section--partners .oficinas-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.oficinas-phone {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  line-height: 1.2;
}

.oficinas-location {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .oficinas-horizontal-card {
    grid-template-columns: 240px auto 1fr;
  }

  .oficinas-photo {
    width: 240px;
  }

  .oficinas-logo-col img {
    width: 170px;
  }
}

@media (max-width: 780px) {
  .oficinas-horizontal-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
  }

  .oficinas-photo {
    width: 220px;
  }
}

/* Celulares muito pequenos: afina ainda mais a tipografia */
@media (max-width: 380px) {
  .p-section--partners {
    padding: 30px 14px 40px;
  }

  .p-partner-section-header h2 {
    font-size: 23px;
  }

  .p-section-image--cover {
    max-width: 180px;
  }

  .p-section--partners .p-partner-body h4 {
    font-size: 16px;
  }

  .p-section--partners .p-partner-desc {
    font-size: 13px;
  }

  .p-section--partners .p-partner-icons img {
    height: 66px;
  }
}

/* ===================================================================
   Faixa intermediária 1440x900 (1431px – 1500px)
   - Sections principais: o scroll-margin-top padrão é preservado
     (o ajuste do EXTRA_SCROLL_PX é zerado no script.js via
     matchMedia nesta mesma faixa, apenas para sections principais).
   - Sections de Parceiros: reduz APENAS os elementos internos em
     ~12% para acomodar melhor a densidade visual nessa largura,
     SEM alterar a section externa (.p-section--partners / .p-section).
   =================================================================== */
@media (min-width: 1431px) and (max-width: 1500px) {

  /* ===== Parceiros: apenas elementos internos (~12% menor) ===== */

  /* Header da seção de parceiros */
  .p-partner-section-header h2 {
    font-size: 40.5px;
    /* 46 * 0.88 */
  }

  .p-partner-section-header p {
    font-size: 16.7px;
    /* 19 * 0.88 */
  }

  /* Capa da categoria (max-width e título) */
  .p-section-image--cover {
    max-width: 282px;
    /* 320 * 0.88 */
  }

  .p-cover-title {
    font-size: 52.8px;
    /* 60 * 0.88 */
  }

  .p-cover-title--oficinas {
    font-size: 52.8px;
    /* 60 * 0.88 */
  }

  /* Cards de parceiros */
  .p-section--partners .p-partner-card {
    width: 282px;
    max-width: 282px;
    flex: 0 0 282px;
    padding: 15.8px;
    /* 18 * 0.88 */
    gap: 12.3px;
    /* 14 * 0.88 */
  }

  .p-section--partners .p-partner-body {
    gap: 8.8px;
    /* 10 * 0.88 */
  }

  .p-section--partners .p-partner-body h4 {
    font-size: 16.7px;
    /* 19 * 0.88 */
  }

  .p-section--partners .p-partner-desc {
    font-size: 12.8px;
    /* 14.5 * 0.88 */
    line-height: 1.55;
  }

  /* Ícones de equipamentos */
  .p-section--partners .p-partner-icons {
    min-height: 70.4px;
    /* 80 * 0.88 */
    padding: 5.3px 0;
    /* 6 * 0.88 */
    gap: 8.8px;
    /* 10 * 0.88 */
  }

  .p-section--partners .p-partner-icons img {
    height: 61.6px;
    /* 70 * 0.88 */
  }

  /* Contato e localização */
  .p-section--partners .p-partner-contact,
  .p-section--partners .p-partner-location {
    font-size: 11.4px;
    /* 13 * 0.88 */
  }

  /* Número de WhatsApp */
  .p-section--partners .p-partner-whatsapp-number {
    font-size: 30.8px;
    /* 35 * 0.88 */
    margin-top: 8.8px;
    /* 10 * 0.88 */
  }

  /* ===== Oficinas (layout horizontal) ===== */
  .oficinas-photo {
    width: 282px;
    /* 320 * 0.88 */
  }

  .oficinas-logo-col img {
    width: 264px;
    /* 300 * 0.88 */
  }

  .oficinas-logo-col {
    gap: 8.8px;
    /* 10 * 0.88 */
  }

  .oficinas-desc {
    font-size: 23.8px;
    /* 27 * 0.88 */
  }

  .p-section--partners .oficinas-btn {
    width: 229px;
    /* 260 * 0.88 */
  }

  .oficinas-phone {
    font-size: 24.6px;
    /* 28 * 0.88 */
  }

  .oficinas-location {
    font-size: 17.6px;
    /* 20 * 0.88 */
  }
}

/* ===================================================================
   Faixa intermediária 1300px–1430px (laptops compactos wide)
   - Sections principais: reduz APENAS os elementos textuais e ícones
     internos em 15%, sem alterar a section em si (grid, min-height,
     padding externo) nem a imagem grande (.section > img).
   - Sections de Parceiros: reduz APENAS os elementos internos em 20%,
     sem alterar a section externa (.p-section--partners).
   - O scroll do navbar nessa faixa é centralizado via JS
     (ver matchMedia correspondente em script.js), por isso não há
     ajuste de scroll-margin-top aqui.
   =================================================================== */
@media (min-width: 1300px) and (max-width: 1430px) {

  /* ===== Sections principais: conteúdo interno ~15% menor ===== */

  .section-text h2 {
    font-size: 68px;
    /* 80 * 0.85 */
    margin-bottom: 8.5px;
    /* 10 * 0.85 */
  }

  .section-text h3 {
    font-size: 36.5px;
    /* 43 * 0.85 */
    margin-bottom: 21px;
    /* 25 * 0.85 */
  }

  .section-text--with-bar h2 {
    font-size: 61px;
    /* 72 * 0.85 */
    margin-bottom: 15px;
    /* 18 * 0.85 */
  }

  .section-text--with-bar h2+h3 {
    margin-top: 7px;
    /* 8 * 0.85 */
    font-size: 23.5px;
    /* 28 * 0.85 */
  }

  .section-text--with-bar h2::after {
    width: 163px;
    /* 192 * 0.85 */
    height: 3.4px;
    /* 4 * 0.85 */
    margin: 38px 0 18px;
    /* 45/21 * 0.85 */
  }

  .section-text p {
    font-size: 18.5px;
    /* 22 * 0.85 */
    margin-bottom: 15px;
    /* 18 * 0.85 */
  }

  .section-text p.small {
    font-size: 21px;
    /* 25 * 0.85 */
    margin-bottom: 25px;
    /* 30 * 0.85 */
  }

  .benefits {
    gap: 11px;
    /* 13 * 0.85 */
    margin: 0 0 32px;
    /* 38 * 0.85 */
  }

  .benefits li {
    padding-left: 24px;
    /* 28 * 0.85 */
    font-size: 23.5px;
    /* 28 * 0.85 */
  }

  .benefits li::before {
    top: 8.5px;
    /* 10 * 0.85 */
    width: 8.5px;
    /* 10 * 0.85 */
    height: 8.5px;
    /* 10 * 0.85 */
  }

  .btn-orcamento {
    margin-bottom: 38px;
    /* 45 * 0.85 */
    padding: 17px 36.5px;
    /* 20/43 * 0.85 */
    font-size: 21px;
    /* 25 * 0.85 */
  }

  .section-destaque {
    margin-top: 15px;
    /* 18 * 0.85 */
    font-size: 22px;
    /* 26 * 0.85 */
  }

  .section-icones {
    gap: 15px;
    /* 18 * 0.85 */
    margin-top: 24px;
    /* 28 * 0.85 */
    margin-bottom: 10px;
    /* 12 * 0.85 */
  }

  .section-icone-img {
    max-width: 350px;
    /* 412 * 0.85 */
  }

  .section-icone-link>.section-icone-img {
    width: 187px;
    /* 220 * 0.85 */
  }

  /* ===== Parceiros: elementos internos ~20% menor ===== */

  .p-partner-section-header h2 {
    font-size: 36.8px;
    /* 46 * 0.80 */
  }

  .p-partner-section-header p {
    font-size: 15.2px;
    /* 19 * 0.80 */
  }

  .p-section-image--cover {
    max-width: 256px;
    /* 320 * 0.80 */
  }

  .p-cover-title {
    font-size: 48px;
    /* 60 * 0.80 */
  }

  .p-cover-title--oficinas {
    font-size: 48px;
    /* 60 * 0.80 */
  }

  .p-section--partners .p-partner-card {
    width: 256px;
    max-width: 256px;
    flex: 0 0 256px;
    padding: 14.4px;
    /* 18 * 0.80 */
    gap: 11.2px;
    /* 14 * 0.80 */
  }

  .p-section--partners .p-partner-body {
    gap: 8px;
    /* 10 * 0.80 */
  }

  .p-section--partners .p-partner-body h4 {
    font-size: 15.2px;
    /* 19 * 0.80 */
  }

  .p-section--partners .p-partner-desc {
    font-size: 11.6px;
    /* 14.5 * 0.80 */
    line-height: 1.55;
  }

  .p-section--partners .p-partner-icons {
    min-height: 64px;
    /* 80 * 0.80 */
    padding: 4.8px 0;
    /* 6 * 0.80 */
    gap: 8px;
    /* 10 * 0.80 */
  }

  .p-section--partners .p-partner-icons img {
    height: 56px;
    /* 70 * 0.80 */
  }

  .p-section--partners .p-partner-contact,
  .p-section--partners .p-partner-location {
    font-size: 10.4px;
    /* 13 * 0.80 */
  }

  .p-section--partners .p-partner-whatsapp-number {
    font-size: 28px;
    /* 35 * 0.80 */
    margin-top: 8px;
    /* 10 * 0.80 */
  }

  .oficinas-photo {
    width: 256px;
    /* 320 * 0.80 */
  }

  .oficinas-logo-col {
    gap: 8px;
    /* 10 * 0.80 */
  }

  .oficinas-logo-col img {
    width: 240px;
    /* 300 * 0.80 */
  }

  .oficinas-desc {
    font-size: 21.6px;
    /* 27 * 0.80 */
  }

  .p-section--partners .oficinas-btn {
    width: 208px;
    /* 260 * 0.80 */
  }

  .oficinas-phone {
    font-size: 22.4px;
    /* 28 * 0.80 */
  }

  .oficinas-location {
    font-size: 16px;
    /* 20 * 0.80 */
  }
}