﻿/*
Theme Name: Theme MBGO
Theme URI: https://mbgo
Author: Seu Nome
Author URI: https://fontenet.com
Description: Tema personalizado para O Museu Virtual dos Bombeiros de Goiás.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://gnu.org
Text Domain: theme-mbgo
*/

/* @import "assets/styles.css"; */

:root {
  --color-primary: #b72c2c;
  --color-secundary: #e2ae61;
  --color-third: #35425a;
  --color-fourth: #938c83;

  --color-title: #1c1b19;
  --color-text: #353431;

  --bg-light: #f7f3ee;
  --bg-dark: #353431;
}

* {
  list-style: none;
  text-decoration: none;
  padding: 0;
}

/** DEFAULT STYLES
======================================== **/
body {
  font-family: 'Fustat', sans-serif;
  background: var(--bg-light);
  color: var(--color-text);
  position: relative;
  height: 100%;
  width: 100%;
}

body,
p,
span {
  font-family: 'Fustat', sans-serif;
}

p {
  font-size: 1.2rem;
  line-height: 2.2rem;
  color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Fustat', sans-serif;
  font-weight: 700;
}

h2.titulo {
  font-size: 2rem;
  line-height: 3rem;
}

.wrap {
  position: relative;
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  border: 0;
  overflow: auto;
}

.animate {
  cursor: pointer;
  transition: all 0.3s ease;
}

.animate:hover {
  transform: scale(1.1);
}

label {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--color-text);
}

input[type='text'],
textarea {
  padding: 16px;
  width: calc(100% - 32px);
  border: 1px solid var(--bg-dark);
}

textarea {
  min-height: 100px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 32px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
  background: transparent;
  transition: all 0.3s;
  width: max-content;
}

.btn::after {
  content: '→';
  font-size: 1.1rem;
  font-weight: 600;
}

.btn:hover {
  gap: 24px;
}

.chamada-pg {
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}

.chamada-pg h2 {
  font-size: 2rem;
}

.chamada-pg h3 {
  font-size: 1.4rem;
  line-height: 2.2rem;
}

/** GRIDS
======================================== **/
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.grid2.items-center {
  align-items: center;
}

.grid2 .stretch {
  display: flex;
  flex-direction: column;
  height: stretch;
}

@media (max-width: 992px) {
  .grid2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/** EFEITOS COM IMAGEM
======================================== **/

.parallax {
  height: 440px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--bg-dark);
}

.box-bg-image {
  position: relative;
  overflow: hidden;
  height: 440px;
}

.box-bg-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 1.2s;
}

.box-bg-image:hover img {
  height: 105%;
  width: 105%;
}

/** HEADER
======================================== **/
header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  overflow: hidden;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0)
  );
}

header .efect-header {
  width: 100%;
  height: 5px;
  animation: 6s infinite brilho;
  background-image: linear-gradient(45deg, transparent, red, transparent, red);
  background-size: 400% 200%;
  position: fixed;
  z-index: 999;
}

@keyframes brilho {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100% 0;
  }
}

header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  height: 120px;
  transition: all 0.6s;
  overflow: hidden;
}

header nav .mobile-menu {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  left: 40px;
  z-index: 999;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border: 1px solid #fff;
}

header nav ul {
  display: flex;
  align-items: baseline;
  gap: 48px;
  width: 410px;
}

header nav ul.left {
  justify-content: right;
}

header nav ul.right {
  justify-content: left;
}

header nav ul a {
  color: #fff;
  font-weight: 600;
  transition: all 0.3s;
}

header nav ul a:hover {
  color: var(--color-fourth);
}

header nav img.logo {
  width: 100px;
  height: 100px;
  display: block;
  animation: float 6s ease-in-out infinite;
}

header nav img.brasao {
  width: 50px;
  height: 60px;
  display: none;
}

@keyframes float {
  0%,
  100% {
    transform: translatey(-8px);
  }

  50% {
    transform: translatey(8px);
  }
}

/** EFEITO MENU ======================================== */
.header-efect {
  background: var(--bg-light);
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.13);
}

.header-efect .efect-header {
  display: none;
}

.header-efect nav {
  height: 65px;
}

.header-efect nav .mobile-menu {
  color: var(--bg-dark);
  border-color: var(--bg-dark);
}

.header-efect nav ul a {
  color: var(--color-title);
}

.header-efect nav img.logo {
  display: none;
}

.header-efect nav img.brasao {
  display: block;
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  min-height: 100vh;
  background: var(--bg-light);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999999;

  background: linear-gradient(to bottom, var(--bg-light), var(--bg-dark));
}

.nav-mobile img {
  display: block;
  width: 80px;
  height: 80px;
  margin: 24px;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
}

.nav-mobile ul li {
  display: flex;
  align-items: center;

  flex: 1;
}

.nav-mobile ul li a {
  padding: 16px 24px;
  width: calc(100% - 48px);
  color: var(--color-title);
  font-weight: 600;
  transition: all 0.3s;
}

.nav-mobile ul li a:hover {
  color: var(--color-fourth);
}

.nav-mobile.ativo {
  transform: translateX(0);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
}

.nav-mobile.ativo ~ .menu-overlay {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1100px) {
  header nav {
    gap: 60px;
  }

  header nav ul {
    gap: 32px;
  }
}

@media (max-width: 992px) {
  header nav .mobile-menu {
    display: flex;
  }

  header nav ul {
    display: none;
  }
}

/** BANNER
======================================== **/
.banner {
  position: relative;
  max-width: 1920px;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg-dark);
}

.banner .slide-pattern {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: url('./assets/images/pattern.png') 0 0 repeat;
}

.banner .prev,
.banner .next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  transition: 0.6s ease;
  user-select: none;
  z-index: 99;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
}

.banner .prev {
  left: 24px;
}

.banner .next {
  right: 24px;
}

.banner .prev:hover,
.banner .next:hover {
  background: rgba(0, 0, 0, 0.4);
}

.banner .slide {
  display: none;
  height: stretch;
  animation: fadeIn 3s;
}

.banner .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: sizeBgBanner 6s;
}

.banner .dots {
  position: absolute;
  bottom: 16px;
  width: 100%;
  text-align: center;
  z-index: 99;
  display: none;
}

.banner .dots .dot {
  cursor: pointer;
  display: inline-block;
  background: rgba(0, 0, 0, 0.6);
  height: 6px;
  width: 40px;
  margin: 6px;
  border-radius: 6px;
  transition:
    opacity 0.3s,
    background-color 0.3s,
    transform 0.3s;
}

.banner .dots .dot.active,
.banner .dots .dot:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1.2);
}

/* Scroll Down */
.banner .scrolldown-wrapper {
  left: 50%;
  position: absolute;
  text-align: center;
  bottom: 0;
  transform: translate(-50%, -50%);
}

.banner .scrolldown {
  border: 2px solid #ffffff;
  border-radius: 30px;
  height: 46px;
  margin: 0 auto 8px;
  text-align: center;
  width: 30px;
}

.banner .scrolldown-p1,
.banner .scrolldown-p2 {
  animation-duration: 1.5s;
  animation-name: scrolldown;
  animation-iteration-count: infinite;
  fill: #ffffff;
}

.banner .scrolldown-p2 {
  animation-delay: 0.75s;
}

@keyframes scrolldown {
  0% {
    opacity: 0;
    transform: translate(0, -8px);
  }

  50% {
    opacity: 1;
    transform: translate(0, 0);
  }

  100% {
    opacity: 0;
    transform: translate(0, 8px);
  }
}

@keyframes sizeBgBanner {
  from {
    width: 100%;
    height: 100%;
  }

  to {
    width: 105%;
    height: 105%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

@keyframes grow {
  0%,
  20% {
    transform: scale(1);
  }

  75%,
  100% {
    transform: scale(1.15);
  }
}

/** BANNER PAGE
======================================== **/
.banner-page {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-dark);
  height: 400px;
  overflow: hidden;
}

.banner-page .slide-pattern {
  background: url('./assets/images/pattern.png') 0 0 repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

.banner-page h1 {
  position: absolute;
  z-index: 9;
  max-width: 1000px;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.6);
}

.banner-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-page .slide-pattern {
  height: 400px;
}

/** PAGE HOME
======================================== **/
.sessoes-home {
  padding: 0 24px 48px;
  background: linear-gradient(
    to bottom,
    var(--bg-light) 0%,
    var(--bg-dark) 40%
  );
}

.container-sessoes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1920px;
  margin: auto;
}

.container-sessoes > div {
  position: relative;
  overflow: hidden;
  height: 480px;
  background: var(--bg-dark);
}

.container-sessoes > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.container-sessoes > div .info {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 24px;
  position: absolute;
  z-index: 9;
  padding: 48px;
  width: calc(100% - 96px);
  height: calc(480px - 96px);

  background-image: linear-gradient(
    to bottom,
    transparent,
    #00000090,
    #00000090,
    #00000095,
    #000
  );

  background-size: 100% 200%;
  background-position: top center;
  transition: background-position 0.5s ease;
}

.container-sessoes > div .info h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: -70px;

  transition: margin-bottom 0.5s ease;
}

.container-sessoes > div .info p {
  color: var(--bg-light);

  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;

  transition:
    opacity 0.5s ease,
    max-height 0.5s ease,
    margin 0.5s ease;
}

.container-sessoes > div .info a {
  color: white;
  border-color: white;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;

  transition:
    opacity 0.5s ease,
    max-height 0.5s ease,
    margin 0.5s ease;
}

.container-sessoes > div .info:hover {
  background-position: bottom center;
}

.container-sessoes > div .info:hover h2 {
  margin-bottom: 0;
}

.container-sessoes > div .info:hover p,
.container-sessoes > div .info:hover a {
  opacity: 1;
  max-height: 100px;
  margin-top: 15px;
}

/** PARCEIROS */
.parceiros {
  background: var(--bg-dark);
  padding: 0 0 60px;
}

.parceiros .box-titulo {
  color: #fff;
  text-align: center;
  display: block;
  position: relative;
  margin-bottom: 48px;
}

.parceiros .box-titulo p {
  color: var(--bg-light);
}

.parceiros ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  overflow: hidden;
}

.parceiros ul li {
  width: 200px;
}

.parceiros ul .parceiro {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  max-height: 90px;
  width: calc(100% - 32px);

  background: var(--bg-light);
}

.parceiros ul .parceiro img {
  max-height: 90px;
  width: auto;
}

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

  .parceiros ul {
    justify-content: center;
    gap: 16px;
    align-items: center;
  }

  .parceiros ul li {
    width: calc(20% - 16px);
  }
}

@media (max-width: 992px) {
  .parceiros {
    padding: 0;
  }

  .container-sessoes {
    grid-template-columns: repeat(1, 1fr);
  }

  .parceiros ul {
    gap: 8px;
  }

  .parceiros ul li {
    width: calc(50% - 16px);
  }
}

/** PAGE A FUNDAÇÃO
======================================== **/
.page-fundacao .box-image {
  margin: 24px 0 48px;
  height: auto;
  max-height: 500px;
  overflow: hidden;
}

.page-fundacao .box-image img {
  width: 100%;
  animation: pulsoContinuo 10s ease-in-out infinite;
}

@keyframes pulsoContinuo {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }

  100% {
    transform: scale(1);
  }
}

.page-fundacao .container {
  display: flex;
  align-items: center;
}

.page-fundacao div.cooperacao {
  display: flex;
  align-items: center;
  margin: 60px 0;
}

.page-fundacao div.cooperacao > div {
  flex: 1;
}

.page-fundacao div.cooperacao > div img {
  max-width: 70%;
  margin: auto;
  display: block;
}

@media (max-width: 992px) {
  .page-fundacao div.cooperacao {
    flex-direction: column;
  }
}

/** PAGE MUSEU
======================================== **/
.page-museu .container {
  display: flex;
  margin: 48px 0;
}

.page-museu .container > div {
  flex: 1;
  width: 50%;
}

.page-museu .container > div p {
  padding-right: 48px;
}

.page-museu .container div.box-image {
  height: 500px;
  width: 50%;
  overflow: hidden;
}

.page-museu .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 992px) {
  .page-museu .container {
    flex-direction: column;
  }

  .page-museu .container > div {
    width: 100%;
  }

  .page-museu .container div.box-image {
    width: 100%;
    height: 300px;
  }
}

/** MISSÃO VISÃO VALORES ======================================== **/
.mvv {
  overflow: hidden;
  padding: 40px 0;
}

.mvv .timeline {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.mvv .timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--color-primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 10px;
  z-index: 99;
}

.mvv .container-timeline {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: calc(50% - 80px);
}

.mvv .container-timeline::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -16px;
  background-color: transparent;
  border: 4px solid var(--color-secundary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.mvv .esquerda {
  left: 0;
}

.mvv .direita {
  left: 50%;
}

.mvv .esquerda::before {
  content: ' ';
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 999;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

.mvv .direita::before {
  content: ' ';
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 999;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.mvv .direita::after {
  left: -17px;
}

.mvv .content {
  padding: 24px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mvv .content h3 {
  margin: 0 0 10px 0;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-title);
}

.mvv .content p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 2rem;
}

.plano-museologico {
  position: relative;
  min-height: 550px;
  overflow: hidden;
}

.plano-museologico .bg-image {
  position: absolute;
  inset: 0;
  z-index: 9;
  background: url(assets/images/plano-museologico.png) no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}

.plano-museologico:hover .bg-image {
  transform: scale(1.1);
}

.plano-museologico::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 99;
  background: url('./assets/images/pattern.png') 0 0 repeat;
}

.plano-museologico-content {
  position: relative;
  justify-content: center;
  max-width: 580px;
  padding: 48px;
  color: #fff;
  z-index: 999;
}

.plano-museologico-content p {
  color: #fff;
}

.plano-museologico-content .btn {
  color: #fff;
  border-color: #fff;
}

@media screen and (max-width: 992px) {
  .mvv .timeline::after {
    left: 31px;
  }

  .mvv .container-timeline {
    width: calc(100% - 90px);
    padding-left: 70px;
    padding-right: 25px;
  }

  .mvv .container-timeline::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  .mvv .direita {
    left: 0%;
  }

  .mvv .direita::after,
  .mvv .esquerda::after {
    left: 15px;
  }

  .plano-museologico {
    min-height: auto;
    background-size: cover;
    transition: none;
  }

  .plano-museologico:hover {
    background-size: cover;
  }
}

/** PAGE EXPOSICOES
======================================== **/
.page-exposicoes {
}

.session-exposicao-fundacao {
  position: relative;
  min-height: 550px;
  overflow: hidden;
}

.session-exposicao-fundacao .bg-image {
  position: absolute;
  inset: 0;
  z-index: 9;
  background: url(assets/images/exposicao-fundacao-dom-pedro.png) no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}

.session-exposicao-fundacao.exposicao-bombeiros .bg-image {
  background: url(assets/images/exposicao-bombeiros.png) no-repeat;
}

.session-exposicao-fundacao:hover .bg-image {
  transform: scale(1.1);
}

.session-exposicao-fundacao::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 99;
  background: url('./assets/images/pattern.png') 0 0 repeat;
}

.session-exposicao-fundacao-content {
  position: relative;
  justify-content: center;
  max-width: 580px;
  padding: 48px 48px 60px;
  margin: 0 0 0 auto;
  color: #fff;
  z-index: 999;
}

.session-exposicao-fundacao-content.content-right {
  margin: 0 auto 0 0;
}

.session-exposicao-fundacao-content p {
  color: #fff;
}

.session-exposicao-fundacao-content .btn {
  color: #fff;
  border-color: #fff;
}

@media screen and (max-width: 992px) {
  .session-exposicao-fundacao {
    min-height: auto;
    background-size: cover;
    transition: none;
  }

  .session-exposicao-fundacao:hover {
    background-size: cover;
  }

  .session-exposicao-fundacao-content,
  .session-exposicao-fundacao-content.content-right {
    margin: 0;
  }
}

/** PAGE EDUCATIVO
======================================== **/
.page-educativos {
}

.page-educativos .grid2 {
  background: linear-gradient(to bottom, #fff, var(--bg-light));
  position: relative;
}

.page-educativos .grid2 > div {
  position: relative;
  overflow: hidden;
}

.page-educativos .grid2 .bg-image {
  position: absolute;
  inset: 0;
  z-index: 9;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}

.page-educativos .grid2:hover .bg-image {
  transform: scale(1.1);
}

.page-educativos .grid2 .bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 99;
  background: url('./assets/images/pattern.png') 0 0 repeat;
}

.page-educativos .educativos-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 48px 48px;
  max-width: 600px;
  min-height: 400px;
}

.page-educativos .educativos-content.educativos-content-left {
  margin-left: auto;
}

/** PAGE CONTATO
======================================== **/
.page-contato .container {
  display: flex;
}

.page-contato .contatos,
.page-contato form {
  flex: 1;
  padding: 48px;
}

.page-contato .contatos {
  padding-left: 0;
}

.page-contato .contatos img.brasao {
  padding-right: 0;
  height: 100px;
}

.page-contato .contatos ul.fone-email {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 48px 0;
}

.page-contato .contatos ul.fone-email li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.page-contato .contatos ul.fone-email li img.icon {
  height: 25px;
  width: auto;
}

.page-contato .contatos ul.rs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-contato .contatos ul.rs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-contato .contatos ul.rs img {
  width: 30px;
  height: 30px;
}

.page-contato form {
  /* background: #ccc; */
  padding: 150px 0 48px 48px;
}

.page-contato form div {
  margin: 0 0 16px;
}

@media (max-width: 992px) {
  .page-contato .container {
    flex-direction: column;
  }

  .page-contato .contatos,
  .page-contato form {
    padding: 24px 0;
  }

  .page-contato form .btn {
    width: 100%;
  }
}

/** FOOTER
======================================== **/
footer {
  background: var(--bg-dark);
  color: var(--color-fourth);
}

footer .container {
  display: flex;
  padding: 48px 0;
}

footer .escudo {
  margin-right: 140px;
}

footer .escudo img {
  height: 100px;
  width: auto;
}

footer .rs p {
  color: #fff;
  margin: 0;
  line-height: 1.8rem;
}

footer .rs ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

footer .rs img {
  width: 30px;
  height: 30px;
}

footer .contato {
  margin-left: auto;
}

footer .contato a {
  border: 1px solid #fff;
  color: #fff;
  width: fit-content;
}

footer .copy-by {
  padding: 24px 0;
  border-top: 1px solid #938c8360;
  font-size: 0.9rem;
}

footer .copy-by .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

@media (max-width: 992px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
  }

  footer .contato {
    margin: 0;
  }

  footer .copy-by .container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}
