@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap");

:root {
  --azul-base: #0d1e52;
  --azul-medio: #2e6bb8;
  --azul-hover: #245794;
  --cobre: #c87a35;
  --cinza-gelo: #f4f6f9;
  --branco: #ffffff;
  --texto: #1a2e40;
  --apoio: #4d6478;
  --borda: #dde4ec;
  --verde-whatsapp: #25d366;
  --sombra: 0 18px 45px rgba(13, 30, 82, 0.1);
  --raio: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--branco);
  color: var(--texto);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

.home-v1a .preview-link-disabled {
  cursor: default;
  pointer-events: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(200, 122, 53, 0.55);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section--soft {
  background: var(--cinza-gelo);
}

.section--dark {
  background: var(--azul-base);
  color: var(--branco);
}

.section--compact {
  padding: 58px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--azul-medio);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: var(--cobre);
  border-radius: 10px;
  content: "";
}

.section--dark .eyebrow,
.hero .eyebrow {
  color: #d9e9ff;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 18px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0 0 20px;
}

.lead {
  max-width: 720px;
  color: var(--apoio);
  font-size: 1.12rem;
}

.section--dark .lead {
  color: #c9d5e8;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 46px;
}

.section-heading__copy {
  max-width: 720px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.91rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--azul-medio);
  color: var(--branco);
  box-shadow: 0 10px 25px rgba(46, 107, 184, 0.28);
}

.btn--primary:hover {
  background: var(--azul-hover);
}

.btn--light {
  background: var(--branco);
  color: var(--azul-base);
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
  color: var(--branco);
}

.btn--outline-dark {
  border-color: var(--azul-medio);
  background: transparent;
  color: var(--azul-medio);
}

.btn--whatsapp {
  background: var(--verde-whatsapp);
  color: #092b19;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar {
  background: var(--azul-base);
  color: #d7e1f0;
  font-size: 0.78rem;
}

.topbar__inner {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__items {
  display: flex;
  gap: 22px;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d7e1f0;
}

.topbar__social svg {
  width: 15px;
  height: 15px;
}

.topbar__social a:hover,
.topbar__social a:focus-visible {
  color: var(--branco);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: var(--azul-medio);
  box-shadow: 0 4px 18px rgba(13, 30, 82, 0.16);
}

.navbar {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  width: 190px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--branco);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links a:not(.btn) {
  position: relative;
  padding: 30px 0;
}

.nav-links a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--branco);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links .btn {
  min-height: 46px;
  padding-inline: 18px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  min-height: 82px;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--branco);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: inherit;
  font-weight: 700;
}

.nav-dropdown__toggle::after {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown__toggle::after,
.nav-dropdown:focus-within .nav-dropdown__toggle::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.nav-dropdown__menu {
  position: absolute;
  z-index: 130;
  top: calc(100% - 12px);
  left: -22px;
  display: grid;
  width: 292px;
  padding: 12px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(13, 30, 82, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown__menu--products {
  width: 520px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-dropdown__menu::before {
  position: absolute;
  top: -7px;
  left: 32px;
  width: 13px;
  height: 13px;
  background: var(--branco);
  border-top: 1px solid var(--borda);
  border-left: 1px solid var(--borda);
  content: "";
  transform: rotate(45deg);
}

.nav-dropdown__menu a {
  position: relative;
  z-index: 1;
  padding: 11px 13px !important;
  border-radius: 8px;
  color: var(--texto);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
}

.nav-dropdown__menu a::after {
  display: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: #eaf1fa;
  color: var(--azul-medio);
}

.nav-dropdown__menu a.nav-dropdown__item--featured {
  color: var(--azul-base);
  font-weight: 800;
}

.nav-dropdown__menu a.nav-dropdown__item--featured:hover,
.nav-dropdown__menu a.nav-dropdown__item--featured:focus-visible {
  color: var(--azul-medio);
}

.nav-dropdown__menu a:last-child {
  grid-column: 1 / -1;
  margin-top: 5px;
  border-top: 1px solid var(--borda);
  border-radius: 0 0 8px 8px;
  color: var(--azul-medio);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  border-radius: 10px;
  color: var(--branco);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  background:
    radial-gradient(circle at 80% 25%, rgba(46, 107, 184, 0.38), transparent 29%),
    linear-gradient(120deg, var(--azul-base) 0%, #102764 72%, #173a86 100%);
  color: var(--branco);
}

.hero::before {
  position: absolute;
  right: -180px;
  bottom: -300px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.home-v1a .hero {
  background:
    linear-gradient(rgba(7, 9, 12, 0.58), rgba(7, 9, 12, 0.58)),
    url("../img/hero-background-neutral-v2.webp") center / cover no-repeat;
}

.home-v1a .hero::after {
  display: none;
}

.home-v1a .hero__copy {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.hero__inner {
  display: grid;
  min-height: 690px;
  align-items: center;
  gap: 70px;
  grid-template-columns: 1.08fr 0.92fr;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: 82px 0;
}

.hero__copy p {
  max-width: 650px;
  color: #d0dbeb;
  font-size: 1.14rem;
}

.hero__copy strong {
  color: var(--branco);
}

.hero__visual {
  position: relative;
  min-height: 570px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.92);
  background: #dce5f2;
  border-radius: 24px;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.3);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.16s ease, transform 0.22s ease;
}

.home-v1a .hero-card {
  border-width: 3.5px;
  background: var(--branco);
}

.home-v1a .hero-card img.is-changing {
  opacity: 0.18;
  transform: scale(1.012);
}

.hero-card--main {
  z-index: 2;
  top: 42px;
  right: 10px;
  width: 72%;
  aspect-ratio: 1;
}

.hero-card--left {
  z-index: 3;
  bottom: 12px;
  left: -20px;
  width: 46%;
  aspect-ratio: 0.94;
}

.hero-card--top {
  z-index: 1;
  top: 0;
  left: -4px;
  width: 39%;
  aspect-ratio: 1;
}

.hero-stat {
  position: absolute;
  z-index: 4;
  right: -5px;
  bottom: 25px;
  max-width: 210px;
  padding: 18px 20px;
  background: var(--branco);
  border-left: 5px solid var(--cobre);
  border-radius: 12px;
  box-shadow: var(--sombra);
  color: var(--texto);
}

.hero-stat strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.hero-stat span {
  color: var(--apoio);
  font-size: 0.8rem;
}

.authority-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: var(--branco);
  box-shadow: 0 12px 35px rgba(13, 30, 82, 0.08);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.authority-item {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid var(--borda);
}

.authority-item:last-child {
  border-right: 0;
}

.authority-item__mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  background: rgba(46, 107, 184, 0.11);
  border-radius: 50%;
  color: var(--azul-medio);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.authority-item strong,
.authority-item span {
  display: block;
}

.authority-item strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
}

.authority-item span {
  color: var(--apoio);
  font-size: 0.78rem;
}

.home-v1a .authority-strip {
  background: var(--azul-base);
}

.home-v1a .authority-item {
  border-color: rgba(255, 255, 255, 0.16);
}

.home-v1a .authority-item strong {
  color: var(--branco);
}

.home-v1a .authority-item span {
  color: #d0dbeb;
}

.home-v1a .authority-item .authority-item__mark {
  background: rgba(255, 255, 255, 0.12);
  color: var(--branco);
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid #efd6bf;
  background: #fff8f1;
  border-radius: 12px;
  color: #754216;
}

.notice__mark {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  background: var(--cobre);
  border-radius: 50%;
  color: var(--branco);
  font-weight: 800;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  transition: 0.25s ease;
}

.product-card:hover {
  border-color: rgba(46, 107, 184, 0.45);
  box-shadow: var(--sombra);
  transform: translateY(-5px);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.08;
  background: #e7ecf2;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: #eaf1fa;
  border-radius: 999px;
  color: var(--azul-medio);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag--media {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  background: var(--branco);
  box-shadow: 0 6px 18px rgba(13, 30, 82, 0.12);
}

.tag--provisional {
  background: #fff2e7;
  color: #8a4e19;
}

.product-card__body {
  padding: 24px;
}

.home-v1a .products-v1a {
  gap: 28px;
}

.home-v1a .product-card--v1a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(13, 30, 82, 0.07);
}

.home-v1a .product-card--v1a .product-card__media {
  aspect-ratio: 4 / 3;
  background: #e9eef4;
}

.home-v1a .product-card--v1a .product-card__media img {
  object-position: center 28%;
}

.home-v1a .product-card--v1a[data-product="camiseta"] .product-card__media img,
.home-v1a .product-card--v1a[data-product="calca"] .product-card__media img {
  object-position: center 42%;
}

.home-v1a .product-card--v1a[data-product="jaqueta"] .product-card__media img,
.home-v1a .product-card--v1a[data-product="agasalho"] .product-card__media img {
  object-position: center 36%;
}

.home-v1a .product-card--v1a .product-card__body {
  display: flex;
  flex: 1;
  padding: 26px 26px 24px;
  flex-direction: column;
}

.home-v1a .product-card--v1a .product-card__body::before {
  width: 38px;
  height: 3px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--cobre), #efd4bd);
  border-radius: 999px;
  content: "";
}

.home-v1a .product-card--v1a h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.home-v1a .product-card--v1a p {
  min-height: 58px;
  margin-bottom: 20px;
}

.case-list {
  align-items: stretch;
}

.case-card .product-card__media {
  aspect-ratio: 4 / 3;
}

.case-card .product-card__media img {
  object-position: center 34%;
}

.case-card .product-card__body p {
  min-height: 0;
}

.case-card__meta {
  margin-top: auto;
  margin-bottom: 0 !important;
  padding-top: 14px;
  border-top: 1px solid var(--borda);
  color: var(--apoio);
  font-size: 0.8rem;
  line-height: 1.6;
}

.case-card__meta a {
  color: var(--azul-medio);
  font-weight: 700;
}

.card-detail-btn {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding: 0 8px 0 16px;
  border: 1px solid #c8d9ee;
  background: #f3f7fc;
  border-radius: 999px;
  color: var(--azul-medio);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.card-detail-btn__arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: var(--azul-medio);
  border-radius: 50%;
  color: var(--branco);
  font-size: 1rem;
  line-height: 1;
  transition: 0.2s ease;
}

.card-detail-btn:hover {
  border-color: var(--azul-medio);
  background: var(--azul-medio);
  color: var(--branco);
  transform: translateY(-1px);
}

.card-detail-btn:hover .card-detail-btn__arrow {
  background: var(--branco);
  color: var(--azul-medio);
  transform: translateX(2px);
}

.product-card__body p {
  min-height: 51px;
  color: var(--apoio);
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--azul-medio);
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.segment-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.segment-card {
  position: relative;
  min-height: 255px;
  padding: 30px;
  overflow: hidden;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  transition: 0.25s ease;
}

.segment-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 76px;
  background: rgba(46, 107, 184, 0.08);
  border-bottom-left-radius: 100%;
  content: "";
}

.segment-card:hover {
  background: var(--azul-medio);
  border-color: var(--azul-medio);
  color: var(--branco);
  transform: translateY(-4px);
}

.segment-card__number {
  display: block;
  margin-bottom: 45px;
  color: var(--cobre);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.segment-card p {
  color: var(--apoio);
  font-size: 0.88rem;
}

.segment-card:hover p,
.segment-card:hover .text-link {
  color: var(--branco);
}

.segment-card--compact {
  display: flex;
  min-height: 210px;
  padding: 22px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.segment-card--compact::before {
  display: none;
}

.segment-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  place-items: center;
  background: #edf3fa;
  border-radius: 50%;
  color: var(--azul-medio);
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.segment-card--compact h3 {
  margin-bottom: 7px;
  font-size: 0.98rem;
}

.segment-card--compact p {
  margin: 0;
}

.segment-card--compact:hover {
  background: var(--branco);
  border-color: var(--azul-medio);
  color: var(--texto);
  transform: none;
}

.segment-card--compact:hover p {
  color: var(--apoio);
}

.split {
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: 1fr 1fr;
}

.media-block {
  position: relative;
}

.media-block img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--sombra);
}

.media-block::after {
  position: absolute;
  z-index: -1;
  right: -20px;
  bottom: -20px;
  width: 65%;
  height: 65%;
  background: var(--cobre);
  border-radius: 24px;
  content: "";
  opacity: 0.18;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.feature {
  display: flex;
  gap: 14px;
}

.feature__mark {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  background: rgba(46, 107, 184, 0.1);
  border-radius: 50%;
  color: var(--azul-medio);
  font-size: 0.76rem;
  font-weight: 800;
}

.feature strong {
  display: block;
  margin-bottom: 2px;
}

.feature span {
  color: var(--apoio);
  font-size: 0.88rem;
}

.visual-showcase__inner {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 0.78fr 1.22fr;
}

.visual-showcase__copy h2 {
  max-width: 520px;
}

.visual-showcase__list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}

.visual-showcase__list li {
  position: relative;
  padding-left: 31px;
  color: var(--texto);
  font-size: 0.92rem;
}

.visual-showcase__list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  background: rgba(46, 107, 184, 0.1);
  border-radius: 50%;
  color: var(--azul-medio);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 800;
}

.visual-showcase__gallery {
  display: grid;
  height: 520px;
  gap: 14px;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) auto;
}

.showcase-tile {
  position: relative;
  min-height: 0;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #dfe6ef;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(13, 30, 82, 0.12);
}

.showcase-tile::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(5, 12, 30, 0.84));
  content: "";
  pointer-events: none;
}

.showcase-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.showcase-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--azul-base);
}

.showcase-tile:hover img {
  transform: scale(1.025);
}

.showcase-tile--detail::after {
  inset: 0 0 46%;
  background: linear-gradient(rgba(5, 12, 30, 0.72), transparent);
}

.showcase-tile--detail img {
  object-position: 68% 72%;
}

.showcase-tile figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: var(--branco);
}

.showcase-tile--detail figcaption {
  top: 16px;
  bottom: auto;
}

.showcase-tile figcaption strong,
.showcase-tile figcaption span {
  display: block;
}

.showcase-tile figcaption strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
}

.showcase-tile figcaption span {
  margin-top: 3px;
  color: #d8e2f0;
  font-size: 0.72rem;
}

.showcase-tile--model {
  grid-row: span 2;
}

.showcase-video-row {
  display: grid;
  min-width: 0;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showcase-tile--video {
  aspect-ratio: 3 / 2;
}

.showcase-tile--video img {
  object-position: center 39%;
}

.showcase-video-card video {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.showcase-video-card.is-playing img,
.showcase-video-card.is-playing .showcase-tile__play {
  display: none;
}

.showcase-video-card.is-playing video {
  display: block;
}

.showcase-tile--video-model img {
  object-position: center 28%;
}

.showcase-tile__play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  padding-left: 4px;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.26);
  color: var(--azul-base);
  font-size: 1rem;
  transform: translate(-50%, -50%);
}

.showcase-tile__play > span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.showcase-tile__status {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  background: rgba(13, 30, 82, 0.86);
  border-radius: 999px;
  color: var(--branco);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.visual-showcase__note {
  margin: 13px 4px 0;
  color: var(--apoio);
  font-size: 0.72rem;
  font-style: italic;
}

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

.process-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
}

.home-v1a .process-card {
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.home-v1a .process-card::after {
  position: absolute;
  top: -38px;
  right: -38px;
  width: 96px;
  height: 96px;
  background: rgba(233, 170, 112, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.home-v1a .process-card:hover {
  background: rgba(255, 255, 255, 0.105);
  border-color: rgba(233, 170, 112, 0.56);
  transform: translateY(-3px);
}

.process-card__number {
  display: block;
  margin-bottom: 28px;
  color: #e9aa70;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.process-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  background: rgba(233, 170, 112, 0.12);
  border: 1px solid rgba(233, 170, 112, 0.34);
  border-radius: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #f2b77f;
  font-family: "Segoe UI Symbol", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.process-card p {
  color: #c9d5e8;
  font-size: 0.9rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 68px 0;
  background: var(--azul-medio);
  color: var(--branco);
}

.cta-band::after {
  position: absolute;
  top: -170px;
  right: -90px;
  width: 390px;
  height: 390px;
  border: 70px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.cta-band__copy {
  max-width: 700px;
}

.cta-band p {
  color: #d9e8fb;
}

.page-hero {
  padding: 40px 0 44px;
  background:
    radial-gradient(circle at 85% 20%, rgba(46, 107, 184, 0.38), transparent 27%),
    var(--azul-base);
  color: var(--branco);
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 1.15rem + 2.2vw, 2.5rem);
  margin-bottom: 10px;
}

.page-hero .lead {
  font-size: 1rem;
  max-width: 620px;
}

.page-hero .breadcrumb {
  margin-bottom: 14px;
}

/* Variante com foto de fundo — usar via style="background-image:url(...)" no PHP */
.page-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(13, 30, 82, 0.93) 0%, rgba(13, 30, 82, 0.84) 100%);
}

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

.page-hero .lead {
  color: #c9d5e8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  color: #afc2dc;
  font-size: 0.8rem;
}

.breadcrumb a:hover {
  color: var(--branco);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--borda);
  background: var(--branco);
  border-radius: 999px;
  color: var(--apoio);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--azul-medio);
  background: var(--azul-medio);
  color: var(--branco);
}

.product-detail {
  display: grid;
  align-items: start;
  gap: 64px;
  grid-template-columns: 1fr 0.9fr;
}

.product-gallery__main {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #ebeff4;
  border-radius: 22px;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.gallery-play-btn {
  z-index: 3;
  border: none;
  cursor: pointer;
}

.gallery-play-btn:hover {
  background: var(--branco);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.product-gallery__thumb {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #ebeff4;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 1;
}

.product-gallery__thumb--video > span {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(13, 30, 82, 0.86);
  color: var(--branco);
  font-size: 0.78rem;
  transform: translate(-50%, -50%);
}

.product-gallery__thumb--video > span::before {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
  content: "";
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery__thumb.active {
  border-color: var(--azul-medio);
}

.product-info__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}

.product-info .notice {
  margin: 28px 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 7px 12px;
  background: #eaf1fa;
  border-radius: 999px;
  color: var(--azul-medio);
  font-size: 0.76rem;
  font-weight: 700;
}

.info-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

/* ---------- Depoimentos: balão de fala + carrossel de 4 em 4 ---------- */

.testimonial-carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 8px 8px 18px;
  margin: -8px -8px -18px;
}

.testimonial-carousel__viewport {
  overflow: hidden;
  padding: 8px 8px 18px;
  margin: -8px -8px -18px;
}

.testimonial-carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonial-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 6px 16px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 22px;
}

.testimonial-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.testimonial-carousel__arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--borda);
  background: var(--branco);
  color: var(--azul-base);
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.2s ease;
  flex-shrink: 0;
}

.testimonial-carousel__arrow:hover {
  background: var(--azul-medio);
  border-color: var(--azul-medio);
  color: var(--branco);
}

.testimonial-carousel__dots {
  display: flex;
  gap: 8px;
}

.testimonial-carousel__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--borda);
  cursor: pointer;
  transition: 0.2s ease;
}

.testimonial-carousel__dots button.is-active {
  background: var(--cobre);
  width: 22px;
  border-radius: 5px;
}

/* Balão de fala: branco sobre a seção cinza-gelo (mesmo padrão de contraste
   já usado em .info-card), cauda apontando para baixo, aspas grandes no
   canto — sem usar as cores dos exemplos de referência (teal/azul/amarelo),
   só a paleta já aprovada da Adryel.
   Importante: o fundo do card precisa ser DIFERENTE do fundo da seção
   (.section--soft = --cinza-gelo) — antes os dois usavam a mesma cor,
   o card ficava "invisível" e só a sombra aparecia (e a cauda também
   sumia, por estar na mesma cor do fundo). */
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 34px 26px 26px;
  background: var(--branco);
  border-radius: 26px 26px 26px 6px;
  box-shadow: var(--sombra);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(13, 30, 82, 0.16);
}

.testimonial-card:hover .testimonial-card__quote {
  transform: scale(1.1) rotate(-6deg);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -13px;
  width: 26px;
  height: 26px;
  background: var(--branco);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.testimonial-card--destaque {
  background: var(--azul-base);
}

.testimonial-card--destaque::after {
  background: var(--azul-base);
}

.testimonial-card--destaque .testimonial-card__texto {
  color: rgba(255, 255, 255, 0.92);
}

.testimonial-card--destaque .testimonial-card__autor strong {
  color: var(--branco);
}

.testimonial-card--destaque .testimonial-card__autor span {
  color: rgba(255, 255, 255, 0.65);
}

.testimonial-card--destaque .testimonial-card__autor {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.testimonial-card__quote {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--azul-medio);
  color: var(--branco);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.testimonial-card--destaque .testimonial-card__quote {
  background: var(--cobre);
}

.testimonial-card__texto {
  flex: 1;
  color: var(--texto);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.testimonial-card__autor {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--borda);
}

.testimonial-card__autor strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--azul-base);
}

.testimonial-card__autor span {
  font-size: 0.8rem;
  color: var(--apoio);
}

@media (max-width: 980px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { margin-bottom: 16px; }
}

.info-card {
  padding: 26px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 14px;
}

.info-card p {
  color: var(--apoio);
  font-size: 0.9rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--borda);
  border-radius: 14px;
}

.table-recomendacoes {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.table-recomendacoes th,
.table-recomendacoes td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--borda);
  white-space: nowrap;
}

.table-recomendacoes tr:last-child th,
.table-recomendacoes tr:last-child td {
  border-bottom: none;
}

.table-recomendacoes th {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background: var(--cinza-gelo);
  color: var(--texto);
}

.table-recomendacoes td {
  color: var(--apoio);
  white-space: normal;
}

.faq {
  max-width: 850px;
  margin-inline: auto;
}

.faq details {
  border-bottom: 1px solid var(--borda);
}

.faq summary {
  position: relative;
  padding: 24px 42px 24px 0;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  list-style: none;
}

.faq summary::after {
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--azul-medio);
  content: "+";
  font-size: 1.5rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 0 40px 20px 0;
  color: var(--apoio);
}

.form-shell {
  display: grid;
  align-items: start;
  gap: 60px;
  grid-template-columns: 0.78fr 1.22fr;
}

.form-panel {
  padding: 40px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 22px;
  box-shadow: var(--sombra);
}

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--texto);
  font-size: 0.82rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--borda);
  background: #fbfcfd;
  border-radius: 9px;
  color: var(--texto);
}

.field input {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 145px;
  padding: 15px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--azul-medio);
  outline: 3px solid rgba(46, 107, 184, 0.13);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b3261e;
  background: #fff8f7;
  outline: 3px solid rgba(179, 38, 30, 0.12);
}

.field-help {
  display: block;
  margin-top: 7px;
  color: var(--cobre);
  font-size: 0.72rem;
  font-weight: 600;
}

.privacy-note {
  margin: 20px 0;
  color: var(--apoio);
  font-size: 0.76rem;
}

.demo-message {
  display: none;
  margin-top: 18px;
  padding: 12px 15px;
  background: #eaf1fa;
  border-radius: 8px;
  color: var(--azul-base);
  font-size: 0.82rem;
}

.demo-message.visible {
  display: block;
}

.demo-message[data-tipo="erro"] {
  background: #fdecea;
  color: #b3261e;
}

.demo-message[data-tipo="carregando"] {
  background: #eaf1fa;
  color: var(--azul-base);
}

.btn.is-loading {
  position: relative;
  opacity: 0.85;
  cursor: not-allowed;
  padding-right: 40px;
}

.btn.is-loading::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.field-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-card {
  padding: 30px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 16px;
}

.contact-card a {
  display: block;
  margin-bottom: 7px;
  color: var(--azul-medio);
  font-weight: 700;
}

.placeholder-card {
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 35px;
  border: 2px dashed #b8c5d5;
  background: var(--cinza-gelo);
  border-radius: 18px;
  color: var(--apoio);
  text-align: center;
}

.placeholder-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--texto);
  font-family: "Montserrat", sans-serif;
}

.map-preview {
  position: relative;
  min-height: 230px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid #b9c9de;
  background:
    linear-gradient(28deg, transparent 0 44%, rgba(255,255,255,0.92) 44% 48%, transparent 48% 100%),
    linear-gradient(118deg, transparent 0 39%, rgba(255,255,255,0.88) 39% 43%, transparent 43% 100%),
    linear-gradient(0deg, transparent 0 46%, rgba(255,255,255,0.86) 46% 50%, transparent 50% 100%),
    linear-gradient(90deg, transparent 0 58%, rgba(255,255,255,0.82) 58% 62%, transparent 62% 100%),
    radial-gradient(circle at 58% 48%, rgba(46,107,184,0.18) 0 8px, transparent 9px),
    #dfeaf6;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}

.map-preview::before,
.map-preview::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.map-preview::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(46,107,184,0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(46,107,184,0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
}

.map-preview::after {
  inset: 0;
  background: radial-gradient(circle at 58% 48%, transparent 0 66px, rgba(247,250,254,0.76) 140px);
}

.map-preview__pin {
  position: absolute;
  z-index: 2;
  top: 42%;
  left: 58%;
  width: 30px;
  height: 30px;
  background: var(--cobre);
  border: 4px solid var(--branco);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 12px 28px rgba(13,30,82,0.22);
  transform: translate(-50%, -100%) rotate(-45deg);
}

.map-preview__pin::after {
  position: absolute;
  inset: 7px;
  background: var(--branco);
  border-radius: 50%;
  content: "";
}

.map-preview__content {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  left: 22px;
  max-width: 430px;
  padding: 20px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(185,201,222,0.8);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(13,30,82,0.13);
  color: var(--apoio);
  text-align: left;
  backdrop-filter: blur(8px);
}

.map-preview__content strong {
  display: block;
  margin-bottom: 5px;
  color: var(--texto);
  font-family: "Montserrat", sans-serif;
}

.prose {
  max-width: 850px;
}

.simple-list {
  padding-left: 20px;
}

.simple-list li {
  margin-bottom: 8px;
  color: var(--apoio);
}

.prose h2 {
  margin-top: 50px;
  font-size: 1.7rem;
}

.prose h3 {
  margin-top: 32px;
}

.prose p,
.prose li {
  color: var(--apoio);
}

.prose li {
  margin-bottom: 8px;
}

.site-footer {
  padding: 72px 0 28px;
  background: #09163f;
  color: var(--branco);
}

.footer-grid {
  display: grid;
  gap: 46px;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 0.9fr;
}

.footer-brand {
  display: inline-flex;
  width: 190px;
  margin-bottom: 22px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-copy {
  max-width: 340px;
  color: #aebcd2;
  font-size: 0.85rem;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #d7e1f0;
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--cobre);
  color: var(--branco);
}

.footer-title {
  margin-bottom: 20px;
  color: var(--branco);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: #aebcd2;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--branco);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8fa0ba;
  font-size: 0.72rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--verde-whatsapp);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  color: var(--branco);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
    font-size: 0.74rem;
  }

  .hero__inner {
    gap: 30px;
  }

  .segment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid > :last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 900px) {
  .topbar__items span:first-child {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    z-index: 99;
    top: 117px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 30px 24px;
    background: var(--azul-base);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a:not(.btn) {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a:not(.btn)::after {
    display: none;
  }

  .nav-links .btn {
    margin-top: 20px;
  }

  .nav-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown__toggle {
    width: 100%;
    min-height: 53px;
    justify-content: space-between;
    padding: 0 4px;
  }

  .nav-dropdown__menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }

  .nav-dropdown__menu--products {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .nav-dropdown__menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown__menu {
    max-height: 62vh;
    padding: 8px;
    overflow-y: auto;
    pointer-events: auto;
  }

  .nav-dropdown__menu a {
    color: #d8e5f7;
  }

  .nav-dropdown__menu a:hover,
  .nav-dropdown__menu a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: var(--branco);
  }

  .nav-dropdown__menu a.nav-dropdown__item--featured {
    color: var(--branco);
    font-weight: 900;
  }

  .nav-dropdown__menu a:last-child {
    border-color: rgba(255, 255, 255, 0.13);
    color: var(--branco);
  }

  .hero__inner,
  .split,
  .visual-showcase__inner,
  .product-detail,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding-bottom: 50px;
  }

  .hero__copy {
    padding: 70px 0 20px;
  }

  .hero__visual {
    width: min(100%, 600px);
    min-height: 500px;
    margin-inline: auto;
  }

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority-item:nth-child(2) {
    border-right: 0;
  }

  .authority-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--borda);
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__items {
    gap: 10px;
  }

  .topbar__items span:nth-child(2) {
    display: none;
  }

  .navbar {
    min-height: 74px;
  }

  .brand {
    width: 158px;
  }

  .nav-links {
    top: 109px;
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__copy {
    padding-top: 44px;
  }

  .hero__copy p {
    font-size: 1rem;
  }

  .hero__visual {
    min-height: 340px;
  }

  .hero-card {
    border-width: 4px;
    border-radius: 16px;
  }

  .hero-card--main {
    width: 75%;
  }

  .hero-card--left {
    left: 0;
    width: 43%;
  }

  .hero-stat {
    right: 0;
    max-width: 180px;
  }

  .authority-grid,
  .cards,
  .segment-grid,
  .info-grid,
  .form-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .visual-showcase__gallery {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .showcase-video-row {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .showcase-tile,
  .showcase-tile--model,
  .showcase-tile--video {
    min-height: 230px;
    grid-column: auto;
    grid-row: auto;
  }

  .showcase-tile--model {
    min-height: 330px;
  }

  .authority-item {
    min-height: 88px;
    padding: 18px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--borda);
  }

  .authority-item:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .cta-band__inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-card__body p {
    min-height: auto;
  }

  .home-v1a .product-card--v1a p {
    min-height: auto;
  }

  .form-panel {
    padding: 24px;
  }

  .form-panel .button-row .btn {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .button-row .btn {
    flex: 1 1 auto;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
