@font-face {
    font-family: 'Comfortaa';
    src: url(../font/Comfortaa-Light.ttf);
  }
@font-face {
    font-family: 'Aller';
    src: url(../font/Aller_Lt.ttf);
  }
@font-face {
    font-family: 'Aller-Bold';
    src: url(../font/Aller_BdIt.ttf);
  }
@font-face {
  font-family: 'Myriad-Pro';
  src: url(../font/MYRIADPRO-REGULAR.OTF);
}
:root{
  --laranja : rgb(219, 128, 74);
  --verde:rgb(54, 106, 69);
  --verde-escuro:rgb(38,53,37);
  --branco: rgb(247, 246, 245);
}


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

body {
  font-family: 'Aller';
  line-height: 1.6;
  color: var(--branco);
  background-color: var(--verde);
}
span{
  color: var(--laranja);
  font: 1.2rem;
  margin-right: 10px;
}
button , a{
  cursor: pointer;
}

.container {
  margin: 0 auto;
  overflow: hidden;
}


/**                                                               HEADER **/
header {
  display: flex;
  margin: auto;
  flex-direction:row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
 
}

#logo{
  padding: 10px;
  width: 250px;
}

header nav {
  position: fixed;
  top: 0px;
  right: 0px;
  background-color: var(--laranja);
  height: 70px;
  width: 39.5vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

header nav ul {
  list-style: none;
}

header nav ul li {
  display: inline;
  margin-left: 5px;
}

header nav ul li a {
  font-family: 'Myriad-Pro';
  color: var(--branco);
  text-decoration: none;
  text-wrap: pretty;
  text-transform: uppercase;
}

header nav ul li a:hover{
  background-color: rgb(127, 59, 11);
  padding: 1rem;
  border-radius: 5px;
}
/**                                                               HEADER ^ **/

/**                                                               MOTIVACIONAL v **/
h1{
 font-family:'Comfortaa' ;
 font-size: 2rem;
}
#motivacional{
  display: flex;
  flex-direction: row;
}

.motivacional-text{
  padding: 50px;
  width: 60vw;
}
.motivacional-image{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40vw;
  background-color: var(--laranja);
}
.motivacional-image img{
  width: 70%;
  border-radius: 100px 100px 100px 50px;
  border: none;
}
button{
  font-family:'Aller-Bold' ;
  font-size: 1.2rem;
  padding: 1rem 1.2rem;
  background-color: var(--laranja);
  text-transform: uppercase;
  color: var(--branco);
  border: none;
  border-radius: 1rem;
  margin: 2rem;
  float: right;
}
/**                                                               MOTIVACIONAL ^ **/

/**                                                               FRASE EFIETO v **/
.frase-efeito{
  min-height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: url("../images/backgraund+jornada.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
}

/**                                                               FRASE EFIETO ^**/
/**                                                               SERVIÇOS v **/
#servicos{
  margin-top: 30px;
  background: url("../images/jornadaLogo.svg") no-repeat;
  background-position: 50%;
  background-size: 35vh;
  background-attachment: fixed;
}
#jornada{
  display: grid;
  grid-template-columns: 30% 30%;
  column-gap: 40%;
  row-gap: 20px;
}

#jornada ul {
  align-items: center;
}
#jornada img{
  width: 70px;
  margin: 10px;
}
#jornada li{
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin-right: 10px;
}

/**                                                               SERVIÇOS ^ **/
/**                                                               SOBRE v **/
.container-sobre{
  width: 100%;
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}
.sobre-left{
  width: 40%;
  background: linear-gradient(90deg,var(--verde) 0%, var(--verde) 9%,var(--laranja)9%,var(--laranja)90%,var(--verde)90%); 

}

.side-bar{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.sobre-left img{
  width: 100%;
  min-width: 350px;
  border-radius: 50px 50px 50px 5px;
  margin-bottom: 20px;
}
.sobre-left h2{
  padding-left: 12%;
}
.sobre-rigth{
  width: 50%;
  padding: 1rem;
}
.sobre-rigth p{
  text-align: justify;
  text-indent: 15px;
  line-height: 1.6rem;
  padding: 1rem;
}
/**                                                               SOBRE ^ **/
/**                                                               CONTATO v **/
#contato{
  background:  var(--laranja)  url("../images/backgroud_logo.svg");
  background-repeat: no-repeat;
  background-size: 150vh;
  background-attachment: fixed;
  background-position: top right;
  min-height: 80vh;
}

#contato h2{
  padding-top: 1rem;
  padding-left: 10%;
}
.contato-map{
  width: 40%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contato-map button{
  font-family:'Aller-Bold' ;
  font-size: 1.2rem;
  padding: 1rem 1.2rem;
  text-transform: uppercase;
  color: var(--branco);
  background-color: var(--verde);
  border: none;
  border-radius: 1rem;
  margin: 2rem;
  float: right;
}

#container-contato{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.form-contato {
  width: 40%;
  
}
.form-contato input, .form-contato textarea{
  margin: auto;
  width: 90%;
  font-size: 1.5rem;
  display: block;
  border: none;
  padding: 10px;
}
.form-contato label{
  display: block;
  margin: auto;
  text-transform: uppercase;
  font-size: 1.2rem;
  padding: 10px 0;
  width: 90%;
}
.form-contato input[type="submit"]{
  background-color: var(--verde);
  border: none;
  border-radius: 1rem;
  color: var(--branco);
  font-family:'Aller-Bold' ;
  font-size: 1.2rem;
  margin-top: 1rem;
  padding: 1rem;
  text-transform: uppercase;
}
/**                                                               CONTATO ^ **/

/**                                                               FOOTER v **/

footer {
  text-align: center;
  padding: 10px 0;
  background-color: var(--verde-escuro);
  color: var(--branco);
}

/**                                                               FOOTER ^ **/


/* Estilos específicos para diferentes resoluções */

/* Mobile */
@media (max-width: 767px) {
  .container {
      width: 100%;
  }

  header{
    justify-content: center;
  }
  header .logo {
      float: none;
      margin-bottom: 10px;
  }

  header nav {
        display: none;
  }

  #motivacional{
    flex-direction: column;
  }
  .motivacional{
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-end;
    background: url("../images/background-fandom-banner-mobile.svg");
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.motivacional-text{
    width: 100%;
    padding: 0;
    text-align: center;
}

.motivacional-text h1{
    padding-top: 10rem;
    font-size: 1.4rem;
    background-color: rgba(54, 106, 69,0.4); ;
}
.motivacional-text p {
    background-color: rgba(54, 106, 69,0.4); ;
}
.motivacional-image{
    display: none;
}

.frase-efeito h2{
    text-align: center;
}

#jornada{
    grid-template-columns: 90%;
    column-gap: 0;
    row-gap: 0px;
}
#jornada img{
    display: none;
   }
 #jornada li {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem;
}

.container-sobre{
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .sobre-rigth{
    width: 100%;
    padding: 1rem;
  }

  #container-contato{
    flex-direction: column;
    justify-content: space-between;
  }
  .contato-map{
    width: 95%;
  }
  .form-contato {
    width: 95%;
    
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  #jornada img{
   display: none;
  }

  header nav {
    width: 39.2vw;
   
  }
}

/* Desktops */
@media (min-width: 1024px) {
  /* Adicione estilos específicos para desktops, se necessário */
}