@font-face {
  font-family: "Anton";
  src: url("fonts/anton-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  --font-display: "Anton";
  --font-body: "Montserrat";
  --blue: #10479a;
  --blue-dark: #062e73;
  --electric: #1038ef;
  --yellow: #ffc800;
  --cream: #fff9e9;
  --white: #ffffff;
  --ink: #071b49;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
  line-height: 1.5;
  word-spacing: 0.02em;
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(6, 46, 115, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  width: min(270px, 35vw);
}

.brand img {
  width: 100%;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  margin-left: auto;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  word-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav a:not(.nav-webmail):hover {
  color: var(--electric);
}

.nav-webmail {
  padding: 13px 16px;
  border: 2px solid var(--blue-dark);
  border-radius: 5px;
  background: var(--white);
  color: var(--blue-dark);
}

.nav-webmail:hover {
  background: var(--cream);
}

.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 5px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-social:hover {
  background: var(--blue-dark);
}

.nav-social-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 86px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(30px, 5vw, 86px);
  overflow: hidden;
  padding: clamp(64px, 8vw, 110px) clamp(22px, 6vw, 92px);
  background: var(--blue);
  color: var(--white);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(255, 200, 0, 0.55);
  border-radius: 48px;
  transform: rotate(18deg);
}

.hero::before {
  top: 10%;
  left: -90px;
  width: 220px;
  height: 330px;
}

.hero::after {
  right: -70px;
  bottom: -110px;
  width: 240px;
  height: 360px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  word-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.about h2,
.material h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display), Impact, sans-serif;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.025em;
  word-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(4.3rem, 8.4vw, 9.2rem);
}

.hero h1 span {
  color: var(--yellow);
}

.hero-slogan {
  width: max-content;
  margin: 28px 0 16px;
  border-bottom: 6px solid var(--yellow);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-style: italic;
  line-height: 1.08;
  letter-spacing: 0.02em;
  word-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 600;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button-yellow {
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--white);
  color: var(--blue-dark);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.hero-visual {
  justify-self: center;
  width: min(100%, 610px);
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 8px solid var(--white);
  border-radius: 6px;
  box-shadow: 18px 18px 0 var(--yellow);
}

.number-stamp {
  position: absolute;
  z-index: 3;
  right: -6%;
  bottom: 4%;
  color: var(--yellow);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  font-style: italic;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-shadow: 5px 5px 0 var(--electric);
  transform: rotate(-4deg);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--yellow);
}

.principles article {
  min-height: 225px;
  padding: 38px clamp(22px, 4vw, 60px);
  border-right: 2px solid rgba(6, 46, 115, 0.18);
}

.principles article:last-child {
  border-right: 0;
}

.principles span {
  color: var(--blue);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.2rem;
}

.principles h2 {
  margin: 8px 0 12px;
  color: var(--blue-dark);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.02em;
  word-spacing: 0.05em;
  text-transform: uppercase;
}

.principles p {
  max-width: 340px;
  margin: 0;
  color: rgba(7, 27, 73, 0.76);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.55;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
  padding: clamp(76px, 10vw, 150px) clamp(22px, 7vw, 110px);
  background: var(--white);
}

.about-image {
  position: relative;
}

.about-image::before {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 76%;
  height: 76%;
  border-radius: 5px;
  background: var(--yellow);
  content: "";
}

.about-image img {
  position: relative;
  width: 100%;
  border-radius: 5px;
  box-shadow: -16px 18px 0 var(--blue);
}

.about-copy {
  max-width: 720px;
}

.about .section-kicker {
  color: var(--blue);
}

.about h2,
.material h2,
.contact h2 {
  font-size: clamp(3rem, 5.3vw, 5.8rem);
}

.about .lead {
  margin-top: 28px;
  color: var(--blue-dark);
  font-size: clamp(1.13rem, 1.7vw, 1.42rem);
  font-weight: 750;
  line-height: 1.55;
}

.about-copy > p:not(.section-kicker):not(.lead) {
  color: #435171;
  font-size: 1rem;
  line-height: 1.82;
}

.about blockquote {
  margin: 32px 0 0;
  padding: 24px 0 24px 28px;
  border-left: 8px solid var(--yellow);
  color: var(--blue);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-style: italic;
  line-height: 1.22;
  letter-spacing: 0.02em;
  word-spacing: 0.05em;
  text-transform: uppercase;
}

.material {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 660px;
  background: var(--yellow);
}

.material-image {
  min-height: 520px;
  background: url("assets/campanha-marinho.jpg") center / cover no-repeat;
}

.material-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(55px, 7vw, 105px);
}

.material .section-kicker {
  color: var(--blue);
}

.material-copy p:not(.section-kicker) {
  max-width: 600px;
  margin: 24px 0 32px;
  color: rgba(7, 27, 73, 0.77);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.7;
}

.button-blue {
  background: var(--blue);
  box-shadow: 5px 5px 0 var(--white);
  color: var(--white);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: center;
  gap: 56px;
  padding: clamp(74px, 9vw, 130px) clamp(22px, 7vw, 110px);
  background: var(--blue-dark);
  color: var(--white);
}

.contact > div:first-child {
  max-width: 760px;
}

.contact h2 {
  color: var(--yellow);
}

.contact > div:first-child > p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
  line-height: 1.7;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px, 4vw, 52px);
  border: 3px solid var(--yellow);
  border-radius: 6px;
  background: var(--blue);
  box-shadow: 14px 14px 0 var(--yellow);
}

.share-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 62px clamp(22px, 7vw, 110px);
  background: var(--yellow);
  color: var(--blue-dark);
}

.share-card h2 {
  max-width: 720px;
  margin: 8px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.share-card p:not(.section-kicker) {
  max-width: 680px;
  margin: 0;
  font-weight: 700;
}

.share-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-dark);
  color: var(--white);
}

.button-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.contact-label {
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.contact-number {
  margin: 10px 0 16px;
  color: var(--yellow);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(5rem, 9vw, 8rem);
  font-style: italic;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.contact-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-actions[hidden],
.contact-pending[hidden] {
  display: none;
}

.contact-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-icon {
  width: 21px;
  height: 21px;
  filter: brightness(0) invert(1);
}

.contact-email {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 26px clamp(22px, 7vw, 110px);
  background: var(--white);
  color: #65708b;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

footer img {
  width: min(250px, 45vw);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: 26px 80px;
  padding: 38px clamp(22px, 7vw, 110px) 32px;
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-identity,
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-identity strong {
  color: var(--white);
  font-size: 1.05rem;
}

.footer-identity b {
  margin-top: 8px;
  color: var(--white);
  font-size: 0.82rem;
}

.footer-identity span,
.footer-identity a,
.footer-legal {
  font-size: 0.72rem;
  line-height: 1.55;
}

.footer-identity span {
  max-width: 320px;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.footer-identity a,
.footer-legal a {
  color: var(--yellow);
  font-weight: 800;
}

.footer-identity a {
  margin-top: 12px;
}

.footer-legal {
  margin-top: 0;
}

.footer-legal p {
  margin: 0 0 2px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 8px;
}

.footer-legal-links a + a::before {
  content: "·";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-policy {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-policy summary {
  cursor: pointer;
  color: var(--yellow);
  font-weight: 800;
}

.footer-policy p {
  max-width: 760px;
  margin: 10px 0 0;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px 22px;
  border: 2px solid var(--yellow);
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 8px 8px 0 rgba(6, 46, 115, 0.28);
  line-height: 1.4;
  isolation: isolate;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.cookie-banner p {
  max-width: 640px;
  margin: 0;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.cookie-actions,
.cookie-preference-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.cookie-action {
  border: 2px solid white;
  padding: 9px 13px;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
}

.cookie-action-primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--navy);
}

.cookie-actions a {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.cookie-preference-actions {
  margin-top: 15px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(6, 46, 115, 0.72);
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal-panel {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(26px, 5vw, 42px);
  border: 3px solid var(--yellow);
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
}

.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal-kicker {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-modal h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1;
}

.cookie-modal-panel > p:not(.cookie-modal-kicker) {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-category strong,
.cookie-category span {
  display: block;
}

.cookie-category strong {
  font-size: 0.85rem;
}

.cookie-category span,
.cookie-category b {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.cookie-category b {
  flex: 0 0 auto;
  color: var(--yellow);
  text-transform: uppercase;
}

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 74px;
    padding: 9px 18px;
  }

  .brand {
    width: 205px;
  }

  .site-header nav a:not(.nav-webmail) {
    display: none;
  }

  .nav-social {
    justify-content: center;
    width: 100%;
  }

  .site-header nav a.nav-social {
    display: inline-flex;
  }

  .hero,
  .about,
  .material,
  .share-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 16vw, 6.5rem);
    line-height: 1.04;
  }

  .hero-visual {
    width: min(88%, 560px);
  }

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

  .principles article {
    min-height: auto;
    border-right: 0;
    border-bottom: 2px solid rgba(6, 46, 115, 0.18);
  }

  .about {
    gap: 65px;
  }

  .about-image {
    width: min(88%, 560px);
    margin: 0 auto;
  }

  .material-image {
    min-height: min(72vw, 560px);
  }

  .contact-card {
    max-width: 560px;
  }

  .share-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 160px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-slogan {
    width: auto;
    font-size: 1.9rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .number-stamp {
    right: -4%;
    font-size: 4.6rem;
  }

  .about h2,
  .material h2,
  .contact h2 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    display: block;
  }

  .footer-legal {
    margin-top: 26px;
  }

  .footer-policy {
    margin-top: 18px;
  }
}

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

  .button {
    transition: none;
  }
}

/* Responsive refinements for tablet and mobile layouts. */
@media (max-width: 1100px) {
  .site-header {
    gap: 18px;
    padding-right: clamp(18px, 3vw, 36px);
    padding-left: clamp(18px, 3vw, 36px);
  }

  .site-header nav {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .brand {
    width: min(220px, 28vw);
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 40px;
  }

  .footer-policy {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-header nav {
    min-width: 0;
    flex: 1 1 300px;
  }

  .site-header nav a.nav-social,
  .site-header nav a.nav-download,
  .site-header nav a.nav-webmail {
    min-width: 0;
  }

  .share-card {
    align-items: flex-start;
  }

  .contact-actions .contact-button {
    flex: 1 1 220px;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
  }

  .brand {
    width: min(175px, 50vw);
  }

  .site-header nav {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    gap: 8px;
    justify-content: stretch;
  }

  .site-header nav a.nav-social,
  .site-header nav a.nav-webmail {
    flex: 1 1 0;
    justify-content: center;
    padding: 10px 8px;
    text-align: center;
    white-space: normal;
    font-size: 0.65rem;
  }

  .nav-social-icon {
    width: 16px;
    height: 16px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.6rem);
    overflow-wrap: anywhere;
  }

  .hero-slogan {
    max-width: 100%;
    font-size: 1.65rem;
    line-height: 1.12;
  }

  .hero-intro {
    font-size: 0.98rem;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-visual img {
    border-width: 5px;
    box-shadow: 10px 10px 0 var(--yellow);
  }

  .hero-actions .button {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .principles article {
    padding: 30px 22px;
  }

  .about,
  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about-image::before {
    right: -10px;
    top: -12px;
  }

  .about-image img {
    box-shadow: -9px 10px 0 var(--blue);
  }

  .material-copy,
  .share-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .share-card h2 {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
  }

  .contact {
    gap: 34px;
  }

  .contact-card {
    box-shadow: 8px 8px 0 var(--yellow);
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .contact-button {
    width: 100%;
    flex-basis: 100%;
  }

  .site-footer {
    padding: 30px 18px 26px;
  }

  .footer-legal-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer-legal-links a + a::before {
    content: none;
    margin: 0;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
    padding: 16px;
  }

  .cookie-actions {
    margin-top: 13px;
  }

  .cookie-action,
  .cookie-actions a {
    flex: 1 1 auto;
    text-align: center;
  }
}
