@font-face {
  font-family: "Hurme Geometric";
  src: url("/assets/fonts/HurmeGeometricSans2 Light.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Hurme Geometric";
  src: url("/assets/fonts/HurmeGeometricSans2.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Hurme Geometric";
  src: url("/assets/fonts/HurmeGeometricSans2 SemiBold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Hurme Geometric";
  src: url("/assets/fonts/HurmeGeometricSans2 Bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Hurme Geometric";
  src: url("/assets/fonts/HurmeGeometricSans2 Black.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: "Galano Grotesque";
  src: url("/assets/fonts/GalanoGrotesqueLight.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Galano Grotesque";
  src: url("/assets/fonts/GalanoGrotesqueRegular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Galano Grotesque";
  src: url("/assets/fonts/GalanoGrotesqueSemiBold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Galano Grotesque";
  src: url("/assets/fonts/GalanoGrotesqueBold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Galano Grotesque";
  src: url("/assets/fonts/GalanoGrotesqueBlack.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: "Neulis";
  src: url("/assets/fonts/Neulis-Light.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Neulis";
  src: url("/assets/fonts/Neulis-Regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Neulis";
  src: url("/assets/fonts/Neulis-Bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Neulis";
  src: url("/assets/fonts/Neulis-Black.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

:root {
  --blue: #1111b6;
  --blue-dark: #09098d;
  --lime: #8dff00;
  --orange: #ff5a0a;
  --purple: #69398b;
  --ink: #050505;
  --white: #fff;
  --shell: min(1180px, calc(100% - 64px));
  color: var(--white);
  font-family: "Galano Grotesque", "Hurme Geometric", Arial, sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--blue);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
}

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

a {
  color: inherit;
}

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

figure,
p,
h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Neulis", "Hurme Geometric", Arial, sans-serif;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentcolor;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--blue);
  color: var(--white);
}

.header-main {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 330px 1fr 290px;
  align-items: center;
}

.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: 275px;
}

.brand img {
  width: 100%;
}

.campaign-concept {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
}

.campaign-concept::before {
  position: absolute;
  top: 50%;
  left: -42px;
  width: 2px;
  height: 74px;
  transform: translateY(-50%);
  background: var(--lime);
  box-shadow: 12px 12px 0 -0.5px var(--lime);
  content: "";
}

.campaign-concept strong {
  padding: 2px 7px 3px;
  background: var(--orange);
  line-height: 1;
}

.avatar-wrap {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -32px;
  width: 310px;
  height: 228px;
  overflow: hidden;
  pointer-events: none;
}

.avatar-wrap video {
  width: 280px;
  max-width: none;
  margin: -5px auto 0;
  filter: drop-shadow(0 8px 12px rgb(0 0 0 / 25%));
}

.primary-nav {
  position: relative;
  z-index: 4;
  background: var(--white);
  color: var(--blue);
}

.nav-links {
  display: flex;
  min-height: 58px;
  padding-block: 7px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a span {
  color: var(--orange);
}

.nav-row a + a::before {
  margin-inline: 5px;
  color: var(--blue);
  content: "|";
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(720px, 68vw);
  overflow: hidden;
  background: #171717 url("/assets/images/hero.webp") 36% 42% / 112% auto no-repeat;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, transparent 15%, rgb(0 0 0 / 5%) 44%, rgb(0 0 0 / 88%) 82%);
  content: "";
}

.hero-shape {
  position: absolute;
  z-index: 2;
  right: -4%;
  bottom: -1px;
  width: 30%;
  height: 38%;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--lime);
}

.hero-line {
  position: absolute;
  z-index: 2;
  width: 2px;
  height: 125%;
  transform: rotate(28deg);
  transform-origin: center;
  background: var(--lime);
}

.hero-line-one {
  top: -20%;
  left: 21%;
}

.hero-line-two {
  right: 10%;
  bottom: -40%;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: inherit;
  align-items: center;
  justify-content: flex-end;
}

.hero-content {
  width: min(50%, 560px);
  padding: 36px 2% 66px 0;
}

.hero-logo {
  width: 240px;
  margin: 0 0 30px auto;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(70px, 8.2vw, 112px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero p {
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(20px, 2.1vw, 32px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.hero p strong {
  color: var(--lime);
  text-shadow:
    1px 0 var(--blue),
    -1px 0 var(--blue),
    0 1px var(--blue),
    0 -1px var(--blue);
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 6vw, 84px) 0;
}

.section-black {
  background: #030303;
  color: var(--white);
}

.section-blue {
  background: var(--blue);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--blue);
}

.section-lime {
  background: var(--lime);
  color: var(--blue);
}

.section-title {
  max-width: 1000px;
  margin-bottom: clamp(36px, 4vw, 54px);
  color: var(--white);
  font-size: clamp(62px, 7.5vw, 108px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-title span {
  font-weight: 700;
}

.section-title span {
  display: block;
  color: var(--lime);
}

.section-title-dark {
  color: var(--blue);
}

.section-title-dark span {
  color: var(--orange);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: end;
  gap: clamp(36px, 4.5vw, 64px);
}

.media-card {
  position: relative;
  align-self: end;
}

.media-card::before {
  position: absolute;
  z-index: 0;
  inset: -20px 20px 20px -20px;
  border: 2px solid var(--lime);
  content: "";
}

.media-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.story-copy {
  position: relative;
  padding-left: 42px;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 300;
  line-height: 1.46;
}

.story-copy::before {
  position: absolute;
  top: 92px;
  bottom: 0;
  left: 15px;
  width: 2px;
  background: var(--lime);
  content: "";
}

.story-copy p + p {
  margin-top: 12px;
}

.story-copy strong {
  font-weight: 700;
}

.quote-mark {
  width: 68px;
  margin: 0 0 20px -42px;
}

#politica {
  padding-bottom: 0;
}

#politica > .shell {
  width: min(1320px, calc(100% - 64px));
}

.split-about {
  grid-template-columns: minmax(0, 1.22fr) minmax(420px, 0.78fr);
  gap: clamp(52px, 5vw, 76px);
}

.split-about .media-card {
  margin-left: calc((100vw - 100%) / -2);
}

.split-about .media-card img {
  height: clamp(460px, 38vw, 560px);
  object-position: 50% 82%;
}

.split-about .media-card::before {
  inset: -14px 16px 14px -14px;
  border-width: 1px;
}

.split-about .story-copy {
  max-width: 560px;
  margin-top: -112px;
  padding-bottom: 0;
  align-self: start;
  font-size: clamp(15px, 1.12vw, 17px);
}

.casa-section {
  padding-top: 18px;
  padding-bottom: 22px;
}

.casa-section::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(120px, 11vw, 160px);
  background: var(--blue);
  content: "";
}

.casa-section .shell {
  position: relative;
  z-index: 1;
}

.casa-section + .section-blue {
  padding-top: 34px;
}

.casa-heading {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 40px;
}

.casa-heading h2 {
  font-size: clamp(30px, 3.3vw, 50px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}

.casa-heading h2 strong {
  color: var(--lime);
  font-weight: 700;
}

.casa-logo {
  width: min(100%, 350px);
  transform: translateY(-18px);
  justify-self: end;
}

.casa-logo img {
  width: 100%;
  filter: drop-shadow(0 -2px 0 var(--white));
}

.casa-copy {
  margin: 26px 0;
  color: var(--blue);
  font-size: 17px;
  line-height: 1.65;
}

.casa-copy h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.casa-copy-primary {
  display: grid;
  grid-template-columns: 5px 1fr;
  gap: 22px;
}

.casa-copy > p {
  margin-top: 24px;
  padding-left: 27px;
}

.accent-rule {
  background: linear-gradient(
    var(--lime) 0 15%,
    var(--blue) 15% 42%,
    var(--lime) 42% 100%
  );
}

.casa-cover {
  position: relative;
  margin-top: 28px;
}

.casa-cover img,
.media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casa-cover img {
  max-height: 540px;
}

.media-preview {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #101010;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.media-preview::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgb(0 0 0 / 72%));
  content: "";
}

.media-preview img {
  display: block;
  transition: transform 350ms ease, filter 350ms ease;
}

.media-preview:hover img,
.media-preview:focus-visible img {
  transform: scale(1.025);
  filter: brightness(0.86);
}

.play-badge {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border: 2px solid rgb(255 255 255 / 88%);
  border-radius: 50%;
  background: rgb(17 17 182 / 88%);
  color: var(--lime);
  place-items: center;
}

.play-badge::before {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--lime);
  content: "";
  transform: translateX(2px);
}

.media-preview-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.casa-cover .media-preview-label {
  right: auto;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 5px 28px;
  transform: translateX(-50%);
  border: 1px solid rgb(255 255 255 / 92%);
  border-radius: 999px;
  background: rgb(0 0 0 / 32%);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.split-promessas .media-card::before {
  border-color: var(--orange);
}

#promessas {
  padding-bottom: 0;
}

.split-promessas {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(36px, 4vw, 58px);
}

.split-promessas .media-card img {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06);
}

.split-promessas .story-copy {
  margin-top: -56px;
  padding-bottom: 32px;
}

@media (min-width: 821px) {
  #promessas .section-title,
  .commitment-section .section-title {
    font-size: clamp(58px, 6.5vw, 96px);
  }
}

.gallery-section {
  min-height: 720px;
  padding-block: 42px 0;
}

.gallery-inner {
  display: grid;
  min-height: 660px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.gallery-title {
  position: relative;
  z-index: 2;
}

.gallery-title h2 {
  font-size: clamp(128px, 17vw, 250px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.84;
  text-transform: uppercase;
}

.gallery-title h2 span,
.gallery-title h2 strong {
  display: block;
}

.gallery-title h2 strong {
  color: var(--lime);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 64px;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.gallery-phone {
  align-self: end;
  width: min(150%, 780px);
  max-width: none;
  margin-left: -20%;
  justify-self: center;
}

.gallery-grid {
  display: grid;
  padding-bottom: clamp(60px, 7vw, 96px);
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  align-items: stretch;
  gap: 16px;
}

.gallery-video,
.gallery-photo {
  min-height: 430px;
}

.gallery-photo {
  overflow: hidden;
  background: var(--blue);
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-photo img.gallery-family {
  object-position: 61% center;
}

.gallery-photo:hover img {
  transform: scale(1.025);
}

.care-section {
  min-height: 1120px;
  padding-bottom: 0;
}

.aro-pattern {
  position: absolute;
  right: -35px;
  bottom: 220px;
  color: transparent;
  font-size: 285px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.68;
  -webkit-text-stroke: 2px rgb(255 90 10 / 32%);
}

.split-care {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  min-height: 850px;
  align-items: start;
  gap: 40px;
}

.care-portrait {
  align-self: end;
  margin-left: -30%;
}

.care-portrait img {
  width: 148%;
  max-width: none;
  max-height: 930px;
  object-fit: contain;
  object-position: bottom;
}

.story-copy-dark {
  margin-top: -28px;
  color: var(--blue);
}

.story-copy-dark::before {
  background: var(--orange);
}

.security-section {
  min-height: clamp(860px, 67vw, 980px);
  background: #20261c;
  color: var(--white);
}

.security-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 15%, rgb(18 24 15 / 30%) 54%, rgb(18 24 15 / 96%) 82%),
    linear-gradient(0deg, rgb(18 24 15 / 65%), transparent 40%),
    url("/assets/images/seguranca.webp") 28% center / cover no-repeat;
}

.security-inner {
  position: relative;
  z-index: 2;
}

.security-copy {
  width: min(42%, 500px);
  margin-left: auto;
}

.security-video-link {
  display: inline-flex;
  min-height: 46px;
  margin-top: 22px;
  padding: 10px 18px;
  border: 2px solid var(--lime);
  border-radius: 999px;
  background: rgb(5 5 5 / 32%);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-items: center;
  gap: 9px;
}

.security-video-link:hover,
.security-video-link:focus-visible {
  background: var(--lime);
  color: var(--blue);
}

.video-modal {
  width: min(94vw, 620px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}

.video-modal::backdrop {
  background: rgb(0 0 0 / 88%);
  backdrop-filter: blur(6px);
}

.video-modal-panel {
  display: grid;
  max-height: 94vh;
  padding: 18px;
  border: 2px solid var(--lime);
  background: #080808;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
}

.video-modal-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.video-modal-heading h2 {
  color: var(--white);
  font-size: clamp(16px, 3vw, 24px);
  text-transform: uppercase;
}

.video-modal-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgb(255 255 255 / 35%);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  place-items: center;
  font-size: 30px;
  line-height: 1;
}

.video-modal video {
  width: 100%;
  height: min(78vh, 760px);
  background: #000;
  object-fit: contain;
}

.jingle-section {
  min-height: 520px;
  padding: 0;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 16%), rgb(0 0 0 / 36%)),
    url("/assets/images/jingle-bw.webp") center 52% / cover no-repeat;
  color: var(--white);
}

.jingle-inner {
  display: flex;
  width: min(1320px, calc(100% - 80px));
  min-height: inherit;
  align-items: center;
}

.jingle-card {
  width: 410px;
  margin-left: 0;
  padding: 32px;
  border: 3px solid var(--lime);
  background: rgb(5 5 5 / 48%);
  backdrop-filter: blur(2px);
  text-align: center;
}

.jingle-card h2 {
  margin: 14px 0 24px;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}

.jingle-card h2 strong {
  color: var(--lime);
  font-weight: 700;
}

.jingle-card button,
.button-link {
  display: inline-flex;
  padding: 9px 24px;
  border: 0;
  border-radius: 1px;
  background: var(--lime);
  color: var(--blue);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.jingle-player {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.jingle-player audio {
  width: 100%;
  height: 42px;
  color-scheme: dark;
}

.jingle-card button:disabled {
  cursor: not-allowed;
  opacity: 0.78;
}

.sound-bars {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sound-bars i {
  display: block;
  width: 8px;
  height: 40%;
  background: var(--lime);
}

.sound-bars i:nth-child(2),
.sound-bars i:nth-child(4) {
  height: 76%;
}

.sound-bars i:nth-child(3) {
  height: 100%;
}

.split-commitment .media-card::before {
  border-color: var(--orange);
}

.commitment-section {
  padding-bottom: 0;
}

.split-commitment {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(36px, 4vw, 58px);
}

.split-commitment .story-copy {
  margin-top: -24px;
  padding-bottom: 0;
}

.commitment-cta {
  padding-top: 24px;
  color: var(--lime);
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Neulis", "Hurme Geometric", Arial, sans-serif;
}

.split-commitment .media-card img {
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.site-footer {
  padding: 30px 0;
  background: var(--orange);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner p {
  color: var(--lime);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Neulis", "Hurme Geometric", Arial, sans-serif;
}

.footer-inner strong {
  color: var(--white);
  font-weight: 700;
}

.footer-inner nav {
  display: flex;
  gap: 10px;
}

.footer-inner a {
  display: inline-flex;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgb(255 255 255 / 46%);
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
}

@media (min-width: 821px) {
  .story-copy {
    padding-left: 92px;
  }

  .story-copy::before {
    top: 86px;
    left: 16px;
  }

  .quote-mark {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
}

.reveal {
  transform: translateY(28px);
  opacity: 0;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 550ms ease;
}

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

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.error-page main {
  width: min(90%, 480px);
}

.error-page img {
  width: 260px;
  margin: 0 auto 30px;
}

.error-code {
  color: var(--lime);
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
}

.error-page h1 {
  margin: 10px 0 30px;
  font-size: 32px;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  :root {
    --shell: min(100% - 40px, 820px);
  }

  .header-main {
    min-height: 116px;
    grid-template-columns: 220px 1fr 200px;
  }

  .brand {
    width: 190px;
  }

  .avatar-wrap {
    right: -10px;
    width: 200px;
    height: 150px;
  }

  .avatar-wrap video {
    width: 152px;
  }

  .nav-links a {
    font-size: 10px;
  }

  .hero-content {
    width: 50%;
  }

  .story-copy {
    padding-left: 34px;
  }

  .gallery-phone {
    margin-left: -8%;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .header-main {
    min-height: 92px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 150px;
  }

  .campaign-concept {
    display: none;
  }

  .avatar-wrap {
    right: 42px;
    width: 100px;
    height: 116px;
  }

  .avatar-wrap video {
    width: 118px;
    margin-left: -9px;
    margin-top: 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 10;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid rgb(255 255 255 / 35%);
    background: transparent;
    place-content: center;
    gap: 5px;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    overflow: hidden;
    max-height: 0;
    background: var(--blue-dark);
    color: var(--white);
    transition: max-height 280ms ease;
  }

  .primary-nav.is-open {
    max-height: 520px;
  }

  .nav-links {
    display: grid;
    min-height: auto;
    padding-block: 22px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nav-row {
    display: contents;
  }

  .nav-links a {
    padding: 10px 0;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    color: var(--white);
    font-size: 12px;
  }

  .nav-row a + a::before {
    content: none;
  }

  .hero {
    min-height: 610px;
    background-position: 42% center;
    background-size: auto 100%;
  }

  .hero::before {
    background: linear-gradient(0deg, rgb(0 0 0 / 90%) 3%, rgb(0 0 0 / 32%) 54%, transparent 82%);
  }

  .hero-shape {
    width: 55%;
    height: 28%;
  }

  .hero-line-one {
    left: 17%;
  }

  .hero-inner {
    align-items: flex-end;
    justify-content: flex-start;
  }

  .hero-content {
    width: 100%;
    padding: 0 0 48px;
  }

  .hero-logo {
    display: none;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding-block: 66px;
  }

  .section-title {
    margin-bottom: 48px;
    font-size: clamp(38px, 10vw, 54px);
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .media-card {
    order: 2;
  }

  .media-card::before {
    inset: -12px 12px 12px -12px;
  }

  .media-card img {
    min-height: 260px;
  }

  .story-copy {
    padding-left: 34px;
    font-size: 16px;
  }

  .story-copy::before {
    top: 70px;
  }

  .quote-mark {
    width: 58px;
    margin-left: -34px;
  }

  .split-about .media-card,
  .split-promessas .media-card,
  .split-commitment .media-card,
  .care-portrait {
    margin-left: 0;
  }

  #politica > .shell,
  #promessas > .shell,
  .commitment-section > .shell,
  .jingle-inner {
    width: var(--shell);
  }

  #politica,
  #promessas,
  .commitment-section {
    padding-bottom: 42px;
  }

  .split-about .media-card img,
  .split-promessas .media-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .split-commitment .media-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .split-about .story-copy,
  .split-promessas .story-copy,
  .split-commitment .story-copy {
    margin-top: 0;
    padding-bottom: 0;
  }

  .casa-heading {
    grid-template-columns: 1fr;
  }

  .casa-heading h2 {
    font-size: clamp(28px, 7.4vw, 34px);
  }

  .casa-logo {
    width: 260px;
    transform: none;
    justify-self: end;
  }

  .casa-copy {
    margin-block: 30px;
    font-size: 15px;
  }

  .casa-copy h3 {
    font-size: 19px;
  }

  .casa-section {
    padding-bottom: 18px;
  }

  .casa-section::after {
    height: 76px;
  }

  .casa-section + .section-blue {
    padding-top: 46px;
  }

  .casa-cover {
    margin-inline: -18px;
  }

  .gallery-section {
    min-height: 610px;
    padding-top: 68px;
  }

  .gallery-inner {
    position: relative;
    min-height: 540px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-title h2 {
    font-size: clamp(76px, 26vw, 112px);
  }

  .text-link {
    margin-top: 38px;
  }

  .gallery-phone {
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 72%;
    margin: 0;
  }

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

  .gallery-video {
    min-height: 500px;
    grid-column: 1 / -1;
  }

  .gallery-photo {
    min-height: 360px;
  }

  .play-badge {
    width: 52px;
    height: 52px;
  }

  .play-badge::before {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 14px;
  }

  .media-preview-label {
    right: 14px;
    bottom: 12px;
    left: 14px;
    font-size: 13px;
  }

  .casa-cover .media-preview-label {
    right: auto;
    left: 50%;
    max-width: calc(100% - 28px);
    padding: 4px 14px;
    font-size: 9px;
  }

  .care-section {
    min-height: 1020px;
    padding-bottom: 0;
  }

  .aro-pattern {
    right: -65px;
    font-size: 130px;
  }

  .care-portrait {
    order: 2;
    margin-top: -20px;
  }

  .care-portrait img {
    width: 100%;
    max-width: 100%;
    max-height: 520px;
  }

  .security-section {
    min-height: 880px;
  }

  .security-photo {
    background:
      linear-gradient(0deg, rgb(18 24 15 / 96%) 12%, rgb(18 24 15 / 25%) 72%),
      url("/assets/images/seguranca.webp") 27% top / auto 62% no-repeat,
      #20261c;
  }

  .security-copy {
    width: 100%;
    margin-top: 300px;
  }

  .gallery-grid {
    padding-top: 30px;
    grid-template-columns: 1fr;
  }

  .gallery-video,
  .gallery-photo {
    min-height: 430px;
    grid-column: auto;
  }

  .gallery-photo {
    min-height: 480px;
  }

  .video-modal-panel {
    padding: 12px;
  }

  .video-modal video {
    height: 76vh;
  }

  .jingle-section {
    min-height: 520px;
    background-position: 63% center;
  }

  .jingle-card {
    width: min(100%, 340px);
    margin: 0;
    padding: 24px;
  }

  .jingle-card h2 {
    font-size: 40px;
  }

  .commitment-section .media-card {
    order: 2;
  }

  .commitment-section .section-title {
    font-size: clamp(29px, 7.7vw, 33px);
  }

  .footer-inner {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-inner nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
