@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap");

:root {
  /* Marca */
  --cor-primaria-900: #092a41; /* fundo principal */
  --cor-primaria-700: #11486e; /* botões e destaques */
  --cor-primaria-500: #1b6fa1; /* hover e links */

  /* Cores claras */
  --cor-clara-100: #f0fcff; /* fundo claro */
  --cor-clara-50: #effaff; /* texto claro / ícones */

  /* Fontes */
  --fonte-base: "Ubuntu", system-ui, -apple-system, sans-serif;
  --fonte-pequena: 0.75rem; /* 12px */
  --fonte-normal: 0.875rem; /* 14px */
  --fonte-media: 1rem; /* 16px */
  --fonte-grande: 1.25rem; /* 20px */
  --fonte-muito-grande: 1.75rem; /* 28px */

  --transicao-rapida: 0.2s ease;
  --transicao-padrao: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  font-family: var(--fonte-base);
  background-color: var(--cor-clara-100);
  color: var(--cor-primaria-900);
  margin: 0;
  padding: 0;
}

h2 {
  font-size: var(--fonte-muito-grande);
}

a {
  color: var(--cor-primaria-700);
  text-decoration: none;
}

li {
  list-style: none;
}

ul {
  display: flex;
  flex-direction: column;
}

/* HEADER */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: linear-gradient(125deg, #0c4169, #001a2c);
  color: var(--cor-clara-50);
  top: -1px;
  z-index: 1000;
  position: sticky;
}

.logo-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.img-header {
  height: 40px;
  margin-right: var(--espaco-3);
}

.tit-header {
  font-size: var(--media);
  font-weight: 300;
}

.button-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: background-color var(--transicao-rapida);
  width: 40px;
}

.button-menu img {
  width: 100%;
}

nav {
  display: none;
  border-radius: 4px;
}

nav.mostrar {
  display: block;
  background: linear-gradient(125deg, #0c4169, #001a2c);
  padding: 4px 16px;
  position: absolute;
  top: 50px;
  right: 20px;
}

.item-li {
  color: var(--cor-clara-100);
  padding: 8px 16px;
  transition: all var(--transicao-padrao);
}

.item-li:hover {
  background-color: var(--cor-clara-100);
  border-radius: 4px;
  color: var(--cor-primaria-900);
}

.li-contato {
  padding: 12px 0;
}

.li-precos,
.li-projetos,
.li-contato {
  border-top: solid 1px rgba(255, 255, 255, 0.123);
  padding: 12px 0;
}

.li-servicos {
  padding: 12px 0;
}

.btn-cta-header {
  display: none;
}

/* HERO SECTION */

.hero-section {
  background-color: #03131f;
  background-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.5) 1000%
    ),
    url("../imagens/elements/mesh-gradient.webp");
  background-size: cover;
  color: var(--cor-clara-50);
}

.tit-hero-section {
  padding: 56px 16px 0 16px;
  font-size: var(--fonte-muito-grande);
  line-height: 1.6;
}

.subtit-hero-section {
  margin: 16px 16px 0 16px;
  line-height: 1.5;
}

.botoes-hero-section {
  display: flex;
  flex-direction: column;
  text-align: start;
}

.cta-hero-section {
  display: flex;
  flex-direction: row;
  background-color: var(--cor-clara-100);
  color: var(--cor-primaria-900);
  max-width: 250px;
  margin: 42px 4px 0px 16px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: var(--fonte-pequena);
  font-weight: bold;
  justify-content: space-around;
  align-items: center;
  transition: transform var(--transicao-padrao);
}

.cta-hero-section:hover,
.portfolio-hero-section:hover {
  transform: scale(1.05);
}

.cta-hero-section img {
  width: 28px;
}

.portfolio-hero-section {
  display: flex;
  flex-direction: row;
  background-color: transparent;
  color: var(--cor-clara-100);
  max-width: 122px;
  margin: 8px 16px 0px 16px;
  padding: 12px 24px;
  border: solid 1px var(--cor-clara-100);
  border-radius: 4px;
  font-size: var(--fonte-pequena);
  text-align: start;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  transition: transform var(--transicao-padrao);
}

.div-img-hero {
  text-align: end;
}

.img-hero {
  display: block;
  width: 100%;
  max-width: 750px;
  height: auto;
  margin-top: 8vh;
}

/*PROBLEMA DOR*/

.problema {
  padding: 40px 16px;
}

.tit-problema {
  color: var(--cor-primaria-700);
  font-size: 1.4em;
  font-weight: 700;
}

.destaque-tit-problema {
  color: var(--cor-primaria-900);
  font-size: 1.8em;
  font-weight: 900;
}

.text-problema {
  margin-top: 16px;
  font-size: var(--fonte-media);
}

.bullets-dores {
  display: flex;
  margin: 24px auto;
  gap: 16px;
  justify-content: center;
}

.bullet1,
.bullet2,
.bullet3 {
  text-align: center;
  max-width: 30%;
}

.desc-bullet1,
.desc-bullet2,
.desc-bullet3 {
  font-size: var(--fonte-pequena);
}

.bullets-dores img {
  max-width: 40px;
  border-radius: 100%;
  background-color: var(--cor-primaria-900);
  padding: 4px;
}

/* SOLUÇÃO CLARTI */

.custom-shape-divider-top-1766184094 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1766184094 svg {
  position: relative;
  display: block;
  width: calc(144% + 1.3px);
  height: 46px;
}

.custom-shape-divider-top-1766184094 .shape-fill {
  fill: #f0fcff;
}

.solucao {
  background: linear-gradient(120deg, #1b6fa1, #000f1b);
  color: var(--cor-clara-100);
  padding-bottom: 40px;
}

.box-titulos-solucao {
  padding: 32px 16px;
}

.tit-solucao {
  font-size: var(--fonte-muito-grande);
  font-weight: 700;
  margin-bottom: 16px;
}

.box-solucoes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.card-solucoes {
  color: var(--cor-primaria-900);
  background-color: var(--cor-clara-100);
  padding: 24px 16px;
  border-radius: 8px;
  width: 70%;
  max-width: 600px;
  margin: 0 auto;
}

.tit-solucoes {
  font-size: var(--fonte-media);
}

/* SERVICOS */

.servicos {
  padding: 40px 16px;
  scroll-margin-top: 60px;
}

.box-titulos-servicos {
  text-align: center;
}

.tit-servicos {
  font-size: var(--fonte-muito-grande);
}

.subtit-servicos {
  text-align: start;
  margin-top: 16px;
}

.box-dos-servicos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.card-servicos {
  background: linear-gradient(125deg, #12517e, #001a2c);
  color: var(--cor-clara-100);
  padding: 24px 16px;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.tit-card-servico {
  margin-bottom: 8px;
}

.icon-do-servico {
  width: 50px;
  height: 50px;
}

.custom-shape-divider-top-1766257136 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1766257136 svg {
  position: relative;
  display: block;
  width: calc(101% + 1.3px);
  height: 53px;
}

.custom-shape-divider-top-1766257136 .shape-fill {
  fill: #f0fcff;
}

/* PORTFOLIO */

.portfolio {
  background-image: linear-gradient(to bottom, #3d7fab, #001a2c);
  padding: 0 16px 40px 16px;
  color: var(--cor-clara-100);
  scroll-margin-top: 60px;
}

.tit-portfolio {
  font-size: var(--fonte-muito-grande);
}

.subtit-portfolio {
  margin-top: 16px;
}

.box-portfolio {
  background-color: var(--cor-clara-100);
  color: var(--cor-primaria-900);
  padding: 32px 16px;
  margin: 24px auto 8px;
  border-radius: 8px;
  max-width: 100%;
  text-align: center;
  /* Propriedades do carrossel */
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.box-portfolio:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.box-portfolio img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 16px;
}

.tit-card-portfolio {
  margin-bottom: 8px;
  font-weight: 600;
}

.subtit-card-portfolio {
  font-size: var(--fonte-pequena);
  color: #666;
  font-weight: 400;
}

/* PORFOLIO CARROSSEL */

.carousel-wrapper {
  max-width: 1200px;
  width: 100%;
  position: relative;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  padding: 0 60px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 24px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn img {
  width: 30px;
  height: 30px;
}

.btn-prev {
  left: 5px;
}

.btn-next {
  right: 5px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  width: 32px;
  border-radius: 6px;
}

/* PREÇOS */
.precos {
  padding: 40px 16px;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  scroll-margin-top: 60px;
}

.tit-precos {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--cor-primaria-900);
}

/* CARDS DE PREÇOS */
.card-precos {
  background: linear-gradient(125deg, #12517e, #001a2c);
  padding: 32px 24px;
  margin: 24px auto 8px;
  border-radius: 12px;
  max-width: 100%;
  text-align: center;
  /* Propriedades do carrossel */
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card-precos:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.tit-preco-base {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--cor-clara-100);
}

.subtit-preco-base {
  font-weight: 700;
  color: var(--cor-clara-50);
  margin-bottom: 16px;
}

.desc-preco-base {
  font-size: 1rem;
  color: var(--cor-clara-50);
  line-height: 1.5;
  margin-bottom: 24px;
}

.btn-quero-orcamento {
  display: block;
  color: var(--cor-primaria-900);
  background-color: var(--cor-clara-100);
  padding: 8px 8px;
  width: 80%;
  max-width: 200px;
  margin: 24px auto 0;
  border-radius: 8px;
  margin-top: auto;
}

/* CARROSSEL DE PREÇOS */
.carousel-wrapper-precos {
  max-width: 1200px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.carousel-container-precos {
  overflow: hidden;
  position: relative;
  padding: 0 60px;
}

.carousel-track-precos {
  display: flex;
  transition: transform 0.5s ease;
  gap: 24px;
}

.carousel-btn-precos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--cor-primaria-900);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--cor-primaria-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  font-weight: 700;
}

.carousel-btn-precos:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.carousel-btn-precos:active {
  transform: translateY(-50%) scale(0.95);
}

.btn-prev-precos {
  left: 5px;
}

.btn-next-precos {
  right: 5px;
}

.carousel-btn-precos img {
  width: 30px;
  height: 30px;
}

.carousel-indicators-precos {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.indicator-precos {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-precos.active {
  background: var(--cor-primaria-900);
  width: 32px;
  border-radius: 6px;
}

.text-final-precos {
  margin-top: 32px;
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

.custom-shape-divider-top-1766257319 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1766257319 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 46px;
  transform: rotateY(180deg);
}

.custom-shape-divider-top-1766257319 .shape-fill {
  fill: #f0fcff;
}

/** For mobile devices **/
@media (max-width: 767px) {
  .custom-shape-divider-top-1766257319 svg {
    width: calc(100% + 1.3px);
    height: 39px;
  }
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .card-precos {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .card-precos {
    min-width: 100%;
  }

  .carousel-container-precos {
    padding: 0 50px;
  }

  .carousel-btn-precos {
    width: 40px;
    height: 40px;
  }

  .tit-precos {
    font-size: 1.5rem;
  }
}

/* DIFERENCIAIS */

.diferenciais {
  padding: 0 0 40px 0;
  background-image: linear-gradient(125deg, #3d7fab, #001a2c);
  color: var(--cor-clara-100);
  text-align: center;
}

.box-diferenciais {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
  max-width: 400px;
}

.box-diferenciais > * {
  flex: 0 1 calc(50% - 8px); /* Cada item ocupa 50% menos metade do gap */
  min-width: 140px; /* Largura mínima para não ficar muito estreito */
}

.tit-diferenciais {
  margin: 32px 16px 0 16px;
}

.tit-bullet-diferenciais {
  font-size: var(--fonte-pequena);
}

.bullet-diferenciais {
  text-align: center;
  max-width: 30%;
}

.bullet-diferenciais img {
  max-width: 60px;
}

.subtit-diferenciais {
  margin: 32px 16px 0 16px;
}

/* CTA FINAL */

.cta-final {
  padding: 40px 16px;
  text-align: center;
}

.tit-cta-final {
  font-size: var(--fonte-grande);
}

.subtit-cta-final {
  margin-top: 16px;
}

.link-cta-final {
  display: block;
  background: linear-gradient(125deg, #12517e, #001a2c);
  color: var(--cor-clara-50);
  padding: 16px 16px;
  border-radius: 8px;
  margin: 24px auto 0;
  width: 80%;
  max-width: 500px;
  position: relative;
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
}

.link-cta-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(125deg, #03131f, #001a2c);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.link-cta-final:hover::before {
  opacity: 1;
}

.link-cta-final:hover {
  transform: scale(1.05);
}

/* FOOTER */

footer {
  background: linear-gradient(to bottom, #06243b, #000000);
  padding: 24px 16px;
  color: var(--cor-clara-50);
  text-align: center;
}

.logo-final {
  width: 80px;
}

.tit-footer {
  font-size: var(--fonte-pequena);
}

.colunas-footer {
  margin-top: 16px;
  text-align: start;
}

.colunas-footer h3 {
  font-size: var(--media);
  margin-top: 24px;
}

.colunas-footer li {
  font-size: var(--fonte-pequena);
  margin-top: 16px;
}

.colunas-footer a {
  display: block;
  color: #effaffbe;
  max-width: 150px;
}

.colunas-footer a:hover {
  text-decoration: underline;
}

.colunas-footer p {
  font-size: var(--fonte-pequena);
  margin-top: 8px;
  color: #effaffbe;
}

.copy-final {
  margin-top: 16px;
}

.copy-final p {
  border-top: solid 1px #effaff3d;
  color: #effaffbe;
  font-size: var(--fonte-pequena);
  padding-top: 16px;
}

/* RESPONSIVIDADE 768PX */

@media (min-width: 768px) {
  header {
    .button-menu {
      display: none;
    }
    nav {
      display: flex;
    }
    ul {
      display: flex;
      flex-direction: row;
      gap: 8px;
    }
    li {
      margin-bottom: 0;
    }

    .li-precos,
    .li-projetos,
    .li-servicos,
    .li-contato {
      border-top: none;
      padding: 12px 0;
    }

    .btn-cta-header {
      display: block;
      background-color: var(--cor-clara-100);
      color: var(--cor-primaria-900);
      padding: 8px 16px;
      border-radius: 4px;
      transition: all var(--transicao-padrao);
    }

    .btn-cta-header:hover {
      background-color: var(--cor-primaria-500);
      color: var(--cor-clara-50);
    }
  }

  .hero-section {
    padding: 40px 32px 8px 32px;
  }

  .tit-hero-section {
    font-size: 2.2rem;
    padding: 64px 0 0 0;
    max-width: 600px;
  }

  .subtit-hero-section {
    max-width: 560px;
    font-size: var(--fonte-media);
    margin: 24px 0 0 0;
  }

  .botoes-hero-section {
    flex-direction: row;
    gap: 16px;
    margin-top: 32px;
  }

  .cta-hero-section,
  .portfolio-hero-section {
    margin: 0;
  }

  .cta-hero-section {
    gap: 24px;
  }

  .div-img-hero {
    margin-top: 32px;
    text-align: center;
  }

  .img-hero {
    margin-top: 0;
  }

  .problema {
    padding: 40px 32px;
  }

  .box-titulos-solucao {
    padding: 40px 32px;
  }

  .box-solucoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 10vw;
  }

  .card-solucoes {
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: center;
  }

  .servicos {
    padding: 40px 32px;
  }

  .box-dos-servicos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 30px 10vw;
  }

  .portfolio {
    padding: 0 32px 40px 32px;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 24px auto 0px;
    width: 60vw;
  }

  .indicator {
    display: none;
  }

  .precos {
    padding: 40px 32px;
  }

  .box-diferenciais {
    margin: 32px auto;
    max-width: 39vw;
  }

  .cta-final {
    padding: 40px 32px;
  }

  .subtit-cta-final {
    max-width: 600px;
    margin: 16px auto 0 auto;
  }

  .box-das-colunas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    padding: 24px 32px 20px 32px;
  }
}

@media (min-width: 1024px) {
  header {
    padding: 16px 80px;
  }
  .hero-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 80px 0px 80px 80px;
  }

  .tit-hero-section {
    grid-area: 1 / 1 / 2 / 2;
    padding: 0;
  }
  .subtit-hero-section {
    grid-area: 2 / 1 / 3 / 2;
  }
  .botoes-hero-section {
    grid-area: 3 / 1 / 4 / 2;
  }
  .div-img-hero {
    grid-area: 1 / 2 / 4 / 3;
    align-self: center;
  }

  .cta-hero-section,
  .portfolio-hero-section {
    height: 50px;
  }

  .problema {
    padding: 40px 80px;
  }

  .box-titulos-solucao {
    padding: 40px 80px;
  }

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

  .servicos {
    padding: 40px 80px;
  }

  .box-dos-servicos {
    grid-template-columns: repeat(3, 1fr);
    margin: 30px 7vw;
  }

  .portfolio {
    padding: 0 80px 40px 80px;
  }

  .carousel-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 24px auto 0px;
    width: 70vw;
  }

  .carousel-btn-precos {
    display: none;
  }

  .carousel-track-precos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0px auto;
    width: 70vw;
  }

  .indicator-precos {
    display: none;
  }

  .box-diferenciais {
    max-width: 70%;
    flex-wrap: nowrap;
  }

  footer {
    padding: 24px 80px 24px 80px;
  }

  .box-das-colunas {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  header {
    padding: 16px 12vw;
  }
  .problema {
    padding: 40px 12vw;
  }

  .box-titulos-solucao {
    padding: 40px 12vw;
  }

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

  .servicos {
    padding: 40px 12vw;
  }

  .box-dos-servicos {
    grid-template-columns: repeat(3, 1fr);
    margin: 30px 7vw;
  }

  .portfolio {
    padding: 0 12vw 40px 12vw;
  }

  .carousel-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 24px auto 0px;
    width: 70vw;
  }

  .card-precos {
    width: 28vw;
    margin: 0 auto;
  }

  .carousel-btn-precos {
    display: none;
  }

  .carousel-track-precos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 24px auto 0px;
    width: 60vw;
  }

  .carousel-container-precos {
    overflow: visible;
    padding: 0;
  }

  .indicator-precos {
    display: none;
  }

  .box-diferenciais {
    max-width: 70%;
    flex-wrap: nowrap;
  }

  footer {
    padding: 24px 12vw 24px 12vw;
  }
}
