/* new css created for the base of the pages */

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

:root {
    --font-color: #C8C6C2;
    --main-color: #149DFF;
    --background: #000;
}

html{
    font-size: 62.5%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--background);
    color: var(--font-color);
}

.with-color {
    color: var(--main-color);
}

/*--------------------------------------------------------------
  Button back to top
--------------------------------------------------------------*/

.ri-arrow-up-line:before {
  content: "\ea76";
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  z-index: 7;
  align-content: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  font-size: 3rem;
  border-radius: 50%;
  color: var(--main-color);
  background-color: var(--background);
  border: 0;
}

/*--------------------------------------------------------------
  Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--background);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--background);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/* -------------------------------------
    Header
-------------------------------------
*/
#header {
  display: flex;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  height: 7rem;
}

#header.header-scrolled, #header.header-inner-pages {
  background: black;
}


#header .logo {
  position: absolute;
  left: 75px; /*Para deixar sempre junto à lateral esquerda.*/

  display: inline;
  font-size: 3rem;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  height: 3rem;
  max-height: 4rem;
}

/* -------------------------------------
    Footer
-------------------------------------
*/

#footer .address {
    display: flex;
    justify-content: flex-end;
    gap: 15rem;
}

#footer .address .Localizacao {
    align-self: center;
    margin-left: 10rem;
    font-size: 2rem;
}

#footer .address .Localizacao h4 {
    font-size: 4rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

#footer .address .Localizacao h4::before {
  display: inline;
  content: '/';
}

#footer .Localizacao-map img {
    width: 70rem;
    height: 80rem;
    object-fit: cover;
    position: relative;
    right: 0;
    transition: all 1s ease-in-out;
}

#footer .Localizacao-map img:hover {
    transform: scale(1.01);
    filter: brightness(100%) saturate(110%);
}

#footer .deg {
    padding-top: 10rem;
    position: relative;
    width: 100%;
    overflow: hidden;
}



#footer .deg::after {
    content: '';
    position: absolute;
    right:0;
    bottom: 0;
    top: 0;
    z-index: 5;
    width: 20rem;
    height: 100%;
    background: linear-gradient(to left, black 40%, transparent 100%);
}

#footer .deg::before {
    content: '';
    position: absolute;
    left:0;
    bottom: 0;
    top: 0;
    z-index: 5;
    width: 20rem;
    height: 100%;
    background: linear-gradient(to right, black 40%, transparent 100%);
}

#footer .logos::-webkit-scrollbar {
  display: none;
}

#footer .logos { 
    padding: 5rem 0 10rem 0;
    width: 90%;
    justify-self: center;
    height: 20rem;
}

#footer .logos .logos-item {
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden;
}

@keyframes infiniterSlider {
    from {
      left: 100%;
    }
    to {
      left: -50rem;
    }
}

#footer .logos .logos-item a {
    position: absolute;
    width: 15rem;
    height: 15rem;
    left: 100%;
    animation: infiniterSlider 16s linear infinite;
    animation-delay: var(--delay);
}

#footer .logos .logos-item a img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.footer-links {
    padding: 10rem 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    text-align: left;
    position: relative;
}

.footer-links ul li a{
    font-size: 2rem;
    color: var(--font-color);
}

.footer-links ul li::before{
    content: '';
    background-image: url('../img/links-uteis.png');
    background-size: contain; 
    width: 4rem;
    height: 3rem;
    top: 0;
    position: absolute;
    display: block;
    left: -5rem;
}

.footer-links h4 {
    text-align: left;
    margin-left: -2rem;
    font-size: 3rem;
    color: var(--main-color);
}

.footer-links .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links .social-links div{
    padding: 1rem 5rem 1rem 1rem;
    margin-bottom: 1rem;
    border-radius: 3rem;
    width: 25rem;
    border: 1px solid var(--font-color);
    display: flex;
}

.footer-links .social-links div i {
    font-size: 2rem;
    align-self: flex-start;
}

.footer-links .social-links div a {
    color: #8C8C8C;
    font-size: 1.5rem;
    margin-left: 5rem;
}

#footer .copyright-icon {
    position: relative;
    height: 25rem;
    padding-top: 10rem;
    overflow: hidden;
}

#footer .copyright-icon img {
    position: absolute;
    height: 35rem;
    bottom: 5rem;
    top: 0;
}

#footer .copyright-icon .copyright {
    z-index: 5;
    position: absolute;
    bottom: 3rem;
}

/*
-------------------------------------
    Navigation Menu
-------------------------------------
*/
.nav-menu{
  margin: 0 30%;
  display: flex;
}

.nav-menu > ul {
    text-align: center;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}


.nav-menu > ul.center-nav{
    display: flex;
    margin: 0 auto; /*Para centralizar a parte "central" do nav.*/
}

.nav-menu > ul.end-nav{
    position: absolute;
    right: 75px; /*Para deixar sempre junto à lateral direita.*/
}

.nav-menu ul li {
  padding: 10px 14px 10px 14px;
}

.nav-menu a {
  display: block;
  position: relative; /*Faz com que um conteiner fique no lugar dele*/
  color: #818181;
  transition: 0.5s;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.nav-menu a:hover, .nav-menu .active, .nav-menu li:hover > a {
  color: #fff;
  text-decoration: none;
}

#link-banco-talentos::before {
    display: inline-block;
    content: '';
    background-image: url("../img/seta-link.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 6px;
    margin-right: 2px;
    opacity: 50%;
    height: 10px;
    width: 10px;
}

/*line detail when the mouse hover over the link*/
.nav-menu ul li a::after, .nav-menu ul li .active::after{
    content: "";
    position: absolute;
    background-color: var(--main-color);
    height: 4px;
    width: 0%;
    left: 5%;
    top: 100%;
    transition: all 0.5s ease-in-out;
}

.nav-menu ul li:hover a::after,
#header .nav-menu ul li .active::after {
    width: 90%;
}
/* ------------------- */

.nav-menu .drop-down ul {
  border-radius: 8px;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0c3c53;
}

.nav-menu .drop-down ul a:hover, 
.nav-menu .drop-down ul .active > a, 
.nav-menu .drop-down ul li:hover > a {
  color: #47b2e4;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}


/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 75px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #222;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #818181;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #fff;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: #000;
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 425px) {
  .nav-menu {
    display:none;
  }

  #header .logo{
    position: absolute;
    left: 20px;
  }
  .mobile-nav-toggle{
    position: fixed;
    right: 20px;
  }
}

/*Deixar o Navbar oculto para quando já estiver com o botão para telas reduzidas:*/
@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
}



/* -------------------------------------
    Footer
-------------------------------------
*/

#footer .address {
    display: flex;
    justify-content: flex-end;
    gap: 15rem;
}

#footer .address .Localizacao {
    align-self: center;
    justify-self: center;
    font-size: 2rem;
}

#footer .address .Localizacao h4 {
    font-size: 4rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

#footer .address .Localizacao h4::before {
  display: inline;
  content: '/';
}

#footer .Localizacao-map img {
    width: 70rem;
    height: 80rem;
    object-fit: cover;
    position: relative;
    right: 0;
    transition: all 1s ease-in-out;
}

#footer .Localizacao-map img:hover {
    transform: scale(1.01);
    filter: brightness(100%) saturate(110%);
}

#footer .deg {
    padding-top: 10rem;
    position: relative;
    width: 100%;
    overflow: hidden;
}



#footer .deg::after {
    content: '';
    position: absolute;
    right:0;
    bottom: 0;
    top: 40%;
    z-index: 5;
    width: 20rem;
    height: 100%;
    background: linear-gradient(to left, black 40%, transparent 100%);
}

#footer .deg::before {
    content: '';
    position: absolute;
    left:0;
    bottom: 0;
    top: 40%;
    z-index: 5;
    width: 20rem;
    height: 100%;
    background: linear-gradient(to right, black 40%, transparent 100%);
}

#footer .logos::-webkit-scrollbar {
  display: none;
}

#footer .logos { 
    padding: 5rem 0 10rem 0;
    width: 90%;
    justify-self: center;
}

#footer .logos .logos-item {
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden;
}

@keyframes infiniterSlider {
    from {
      left: 100%;
    }
    to {
      left: -50rem;
    }
}

#footer .logos .logos-item a {
    position: absolute;
    width: 15rem;
    height: 10rem;
    left: 100%;
    animation: infiniterSlider 16s linear infinite;
    animation-delay: var(--delay);
}

#footer .logos .logos-item a img {
   width: 100%;
   height: 100%;
}

.footer-links {
    padding: 10rem 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    text-align: left;
    position: relative;
}

.footer-links ul li a{
    font-size: 2rem;
    color: var(--font-color);
}

.footer-links ul li::before{
    content: '';
    background-image: url('../img/links-uteis.png');
    background-size: contain; 
    width: 4rem;
    height: 3rem;
    top: 0;
    position: absolute;
    display: block;
    left: -5rem;
}

.footer-links h4 {
    text-align: left;
    margin-left: -2rem;
    font-size: 3rem;
    color: var(--main-color);
}

.footer-links .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links .social-links div{
    padding: 1rem 5rem 1rem 1rem;
    margin-bottom: 1rem;
    border-radius: 3rem;
    width: 25rem;
    border: 1px solid var(--font-color);
    display: flex;
}

.footer-links .social-links div i {
    font-size: 2rem;
    align-self: flex-start;
}

.footer-links .social-links div a {
    color: #8C8C8C;
    font-size: 1.5rem;
    margin-left: 5rem;
}

#footer .copyright-icon {
    position: relative;
    height: 25rem;
    width: 99%;
    padding-top: 10rem;
    overflow: hidden;
}

#footer .copyright-icon img {
    position: absolute;
    height: 35rem;
    bottom: 5rem;
    top: 0;
}

#footer .copyright-icon .copyright {
    z-index: 5;
    position: absolute;
    bottom: 3rem;
}


/*
------------------------
#    Full Screen
------------------------*/
.screen-container{
  background-color: var(--background);
}


/*
------------------------
#    Hero Section
------------------------*/
#hero {
    overflow: hidden;
}

#hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#hero #ponto-luz-home {
  height: 100%;
  position: absolute;
  right: -40%;
  top: -100px;

}

#hero .logo-metalic-home{
    width: 38%;
    max-width: 500px;
    justify-self: center;
    margin: 170px auto auto auto;
}

#hero h2 {
  display: block;
  margin: 35px auto 100px auto;

  font-size: 5rem;
  font-weight: bold;
  text-align: center;
}

#hero h3 {
  font-size: 2.5rem;
  text-align: center;
}

/*The ::before and ::after form the lines under and above the subtitle*/
#hero h3::before, #hero h3::after{
  content: "";
  display: block;
  background-image: linear-gradient(90deg, transparent , var(--font-color) 50%, transparent );
  width: 80vw;
  max-width: 1200px;
  height: 2px;
  justify-self: center;
}

/*specifying the margin of the ::before and ::after*/
#hero h3::before {
  margin-bottom: 5vh;
}
#hero h3::after {
  margin-top: 5vh;
}



/*
------------------------
#     Section General
------------------------*/

section {
  overflow: hidden;
}

/* "/" who come before the some titles */
.section-title h2::before {
  display: inline;
  content: "/";
}


/*
------------------------
#     Section About Us
------------------------*/

.about {
 position:relative; 
 overflow: hidden;
 margin: 0;
 margin-bottom: -600px;
 padding: 0;
 height: fit-content;
}

.about .about-container {
  margin-top: 200px;
  margin-left: 50px;
  width: 40vw;
}

/*Alterações do título da seção*/
.section-title h2{
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 25px;
}

/*Alterações na formatação do conteúdo da seção "sobre nós"*/
.about .container{
  position: relative;
  z-index: 1;
}

.about .about-container .content{
  margin: 0;
  font-size: 2.5rem;
}

.about .about-container .content p {
  margin-bottom: 25px;
}

/*O elemento decorativo de design*/
#fitas-design {
  position: relative;
  z-index: 0;
  top: -600px;
  right: calc(69vw - 100vw); 
  width: 70vw;
}


/*The ::after form the lines under the section*/
section#about::after{
  content: "";
  display: block;
  background-image: linear-gradient(90deg, transparent , var(--font-color) 50%, transparent );

  position: relative;
  top: -600px;

  width: 80vw;
  max-width: 1200px;
  height: 2px;
  justify-self: center;
}


/*Para o caso de a tela ser muito grande:*/
@media (min-width:1900px) {
  #fitas-design {
    right: calc(1300px - 100vw);
    width: 1300px;
  }

  /*Footer for X-Large / Footer para extra grande*/
  #footer .copyright-icon {
      height: 35rem;
  }
  #footer .copyright-icon img {
      height: 50rem;
  }
  #footer .copyright-icon .copyright {
      font-size: 1.2rem;
  }
}

/*
---------------------------
#    Home medium screen    #
#          Laptop          #
---------------------------*/
@media (min-width: 769px) and (max-width: 1024px) {
  #hero #ponto-luz-home {
  right: -50%;
  }

  .about .about-container {
    width: 60%;
  }

  #hero h2 {
    margin: 35px auto 90px auto;
    font-size: 3.5rem;
  }

  #hero h3 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 3.5rem;
  }

  .about .about-container .content {
    font-size: 2rem;
  }

  #fitas-design {
    top: -700px;
  }

  .about .about-container .content {
    margin-bottom: 30rem;
    font-size: 2rem;
  }

  #footer .address {
    gap: 5vw;
    margin-top: 5rem;
  }

  #footer .address .Localizacao h4 {
    font-size: 3rem;
  }

  #footer .address .Localizacao {
    font-size: 1.5rem;
    margin-left: 4rem;
  }

  #footer .Localizacao-map {
    max-width: 50rem;
    height: 60rem;
  }

  #footer .Localizacao-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  #footer .deg::after, #footer .deg::before {
    width: 5rem;
  }

  #footer .logos .logos-item a {
    width: 10rem;
    height: 6rem;
  }

  .container .footer-links {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .container .links-uteis {
    margin-left: 10rem;
  }

  .footer-links .links-title {
    margin-left: -16rem;
    font-size: 2.5rem;
  }

  .footer-links h4 {
    font-size: 2.5rem;
  }

  #footer .copyright-icon img {
    top: 12rem;
    bottom: 0;
    height: 30vw;
  }

  #footer .logos { 
    height: 15rem;
  }

  #footer .logos .logos-item a {
    width: 15rem;
    height: 10rem;
  }

  #footer .deg {
    padding-top: 0;
  }

  #footer .deg::after, #footer .deg::before {
    top: 0;
  }
}

/*
---------------------------
#    Home medium screen    #
#          Tablet          #
---------------------------*/
@media (min-width: 481px) and (max-width: 768px) {
  #hero #ponto-luz-home {
  right: -80%;
  }

  .about .about-container {
    width: 70%;
  }

  #hero h2 {
    margin: 35px auto 90px auto;
    font-size: 3rem;
  }

  #hero h3 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 3.5rem;
  }

  .about .about-container .content {
    font-size: 2rem;
  }

  #fitas-design {
    top: -700px;
  }

  .about .about-container .content {
    margin-bottom: 50rem;
    font-size: 1.7rem;
  }

  #footer .address {
    gap: 2vw;
    margin-top: 5rem;
  }

  #footer .address .Localizacao h4 {
    font-size: 2.5rem;
  }

  #footer .address .Localizacao {
    font-size: 1rem;
    margin-left: 4rem;
  }

  #footer .Localizacao-map {
    max-width: 50rem;
    height: 60rem;
  }

  #footer .Localizacao-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  #footer .deg::after, #footer .deg::before {
    width: 5rem;
  }

  #footer .logos .logos-item a {
    width: 10rem;
    height: 6rem;
  }

  .container .footer-links {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .container .links-uteis {
    margin-left: 10rem;
  }

  .footer-links .links-title {
    margin-left: -16rem;
    font-size: 2.5rem;
  }

  .footer-links h4 {
    font-size: 2.5rem;
  }

  #footer .copyright-icon img {
    top: 12rem;
    bottom: 0;
    height: 30vw;
  }

  #footer .logos { 
    height: 15rem;
  }

  #footer .logos .logos-item a {
    width: 10rem;
    height: 10rem;
  }

  #footer .deg {
    padding-top: 0;
  }

  #footer .deg::after, #footer .deg::before {
    top: 0;
  }
}


/*
---------------------------
#    Home small screen    #
#      smartphones        #
---------------------------*/
@media (min-width: 320px) and (max-width: 480px) {
  /* GENERAL SETTINGS */
  p {
    font-size: 1.5rem;
  }

  /* TRANSLATE SETTINGS */
  .gt_float_switcher .gt-selected .gt-current-lang {
    padding: 10px 10px;
    display: flex;
  }

  .gt_float_switcher .gt-current-lang img {
    width: 20px;
  }

  .gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
    font-size: 1.2rem;
  }

  /*--------------------------------------------------------------
  Button back to top
--------------------------------------------------------------*/

.ri-arrow-up-line:before {
  width: 4rem;
  height: 4rem;
  font-size: 2.5rem;
}

  /* -------------------------------------
        Footer - small
  -------------------------------------*/
  
  #footer h4 { /*Footer titles*/
    font-size: 2.3rem;
  }
  
  #footer .address {
      flex-direction: column;
      gap: 0.5rem;
  }

  #footer .address .Localizacao {
      font-size: 1.5rem;
      align-self: flex-start; /*left align*/
      margin-left: 5%;
  }

  
  #footer .address .Localizacao h4 {
      font-size: 2.3rem;
      margin-top: 10rem;
      margin-bottom: 0;
  }

  #footer .Localizacao-map{
    margin-top: 0;
    margin-right: 1rem;
    width: 90%;
    height: fit-content;
    align-self: flex-end;
  }

  #footer .Localizacao-map img{
    width: 100%;
    height: fit-content;
  }

  #footer .deg {
      padding-top: 3rem;
  }

  #footer .logos { 
      padding: 5rem 0 8rem 0;
      width: 90%;
  }

  #footer .deg::after, #footer .deg::before {
      top: 0;
      width: 7rem;
      height: 100%;
  }

  #footer .logos .logos-item a {
      width: 9rem;
      height: 7rem;
  }

  #footer .logos .logos-item a img {
      width: 100%;
      height: 100%;
      object-fit: contain;
  }


  /* Useful links / Links úteis */
  #useful-links-title {
    display: block;
    width: fit-content;
    position: relative;
    left: -6.7rem;
  }

  .footer-links:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    padding-bottom: 0;
  }

  .footer-links ul li a{
    font-size: 1.5rem;
  }

  #footer .copyright-icon {
      height: 10rem;
      padding-top: 10rem;
  }

  #footer .copyright-icon img{
      height: 12rem;
  }



  /*--------------------------------------
        Hero Section - small
  --------------------------------------*/
  #hero #ponto-luz-home {
    height: 45rem;
    position: absolute;
    right: -250px;
    top: -90px;
    
  }

  #hero h2 {
    margin: 35px auto 100px auto;
    font-size: 2.5rem;
  }

  #hero h3 {
    font-size: 1.7rem;
  }

  #hero h3::before {
    margin-bottom: 3rem;
  }

  #hero h3::after {
    margin-top: 3rem;
  }

  /*--------------------------------------
        Section About Us - small
  --------------------------------------*/
  .about {
    margin-bottom: -150px;
  }

  .about .about-container {
    margin: 100px auto auto 5%;
    width: 90%;
  }

  /*Alterações do título da seção*/
  .section-title h2{
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  
  /*Alterações na formatação do conteúdo da seção "sobre nós"*/
  .about .about-container .content{
    font-size: 1.5rem;
  }

  .about .about-container .content p {
    margin-bottom: 25px;
  }

  .about .about-container .content > p:last-child {
    width: 70%;
  }

  /*O elemento decorativo de design*/
  #fitas-design {
    top: -170px;
    right: calc(69vw - 100vw); 
    width: 70vw;
  }

  /*The ::after form the lines under the section*/
  section#about::after{
    top: -150px;
  }


  /*
  -----------------------------------------
  Titles of "Equipe", "Sobre" and "Contato"
  -----------------------------------------
  */
  .content .apresentation .image img {
        width: 20rem;
        filter: drop-shadow(0 0 10rem var(--main-color));
    }

    .content .apresentation .title {
        font-size: 6rem;
    }


    /*Apresentation text presents in the "equipe" and "sobre" pages*/
    .content .text-apresentation{
        width: 70%;
    }

    .content .text-apresentation p {
        width: 100%;
    }

}


/*
------------------------------------
=== Media Queries - Medium Screen ===
===            Tablet             ===
------------------------------------
*/
@media (min-width: 481px) and (max-width: 768px) {
  #hero #ponto-luz-home {
    right: -80%;
  }

  /* TRANSLATE SETTINGS */
  .gt_float_switcher .gt-selected .gt-current-lang {
    padding: 10px 10px;
    display: flex;
  }

  .gt_float_switcher .gt-current-lang img {
    width: 25px;
  }

  .gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
    font-size: 1.5rem;
  }
  /*----------------------------------*/

  #hero h2 {
    margin: 35px auto 90px auto;
    font-size: 3rem;
  }

  #hero h3 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 3.5rem;
  }

  .about .about-container .content {
    font-size: 2rem;
  }

  #fitas-design {
    top: -700px;
  }

  .about .about-container .content {
    margin-bottom: 50rem;
    font-size: 1.7rem;
  }

  #footer .address {
    gap: 1rem;
    margin-top: 5rem;
    height: 50rem;
  }

  #footer .address .Localizacao h4 {
    font-size: 2rem;
  }

  #footer .address .Localizacao {
    font-size: 1rem;
    margin-left: 4rem;
  }

  #footer .Localizacao-map img {
    width: 60vw;
    height: 55rem;
  }

  #footer .deg::after, #footer .deg::before {
    width: 5rem;
  }

  #footer .logos .logos-item a {
    width: 10rem;
    height: 6rem;
  }

  .container .footer-links {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .container .links-uteis {
    margin-left: 10rem;
  }

  .footer-links .links-title {
    margin-left: -16rem;
    font-size: 2.5rem;
  }

  .footer-links h4 {
    font-size: 2.5rem;
  }

  #footer .copyright-icon img {
    top: 15rem;
    bottom: 0;
    height: 15rem;
  }
}



