
@import url("https://fonts.googleapis.com/css?family=Lato:400,700&display=swap");

:root{
  --clr-primary-1: #0d1306;
  --clr-primary-2: #273a12;
  --clr-primary-3: #40611f;
  --clr-primary-4: #5a882b;
  --clr-primary-5: #74ae37;
  --clr-primary-6: #8dc851;
  --clr-primary-7: #a6d477;
  --clr-primary-8: #c0e09e;
  --clr-primary-9: #d9edc5;
  --clr-primary-10: #f2f9ec;
  --clr-primary-11: #83c341;

  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);

  --clr-white: #fff;

  --ff-primary: "Lato", sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.2rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* =============== Global Styles =============== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--ff-primary);
  background: var(--clr-white);
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 0.875rem;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}

img:not(.nav-logo) {
  width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}
p {
  margin-bottom: 1.25rem;
  color: var(--clr-grey-5);
}

@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}

/*  global classes */

.btn {
  text-transform: capitalize;
  background: var(--clr-primary-3);
  color: var(--clr-white);
  padding: 0.375rem 0.75rem;
  letter-spacing: var(--spacing);
  display: inline-block;
  /* font-weight: 700; */
  transition: var(--transition);
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  color: var(--clr-primary-3);
  background: var(--clr-primary-);
}

.section{
  padding: 5rem 0;
}

.section-title{
  text-align: center;
  margin-bottom: 4rem;
}

.section-center{
  width: 90vw;
  margin: 0 auto;
  max-width: 1000px;
}

/* @media screen and (min-width: 992px){
  .section-center{
    width: 95vw;
  }
} */


/*  -------------------   navbar  --------------------- */

.nav-top{
  width: 100%;
  background: var(--clr-primary-7);
  text-align: center;  
}

.nav-top p{
  color: var(--clr-primary-1);
  padding: 0.3rem;
}

.nav-top p:hover{
  color: var(--clr-primary-3);
}

.nav-logo{
  width: 120px;
}

.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--clr-primary-9);
  box-shadow: var(--dark-shadow);
  z-index: 2;
  padding-bottom: 1rem;
}

.nav-icons{
  display: none;
}

.nav-center{
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;  
}

.nav-header{
  display: flex;
  justify-content: space-between;
  align-items: center;  
  padding: 0 2rem;
}

.nav-toggle{
  background: transparent;
  border: transparent;
  font-size: 1.5rem;
  color: var(--clr-primary-1);
  cursor: pointer;
  transition: var(--transition);  
}

.nav-toggle:hover{
  transform: scale(1.2);
}

.nav-link{
  display: block;
  padding: 1rem 2rem;
  text-transform: capitalize;
  letter-spacing: var(--spacing);
  transition: var(--transition);
  color: var(--clr-grey-1);
  cursor: pointer;
  font-size: 1rem;
}

.nav-link:hover{
  color: var(--clr-primary-1);
  background: var(--clr-primary-8);
  padding-left: 1.5rem;
}

.nav-links{
  
  height:0;
  overflow: hidden;
  transition: var(--transition);
}

.show-links{
  height:220px;
}


@media screen and (min-width: 992px){
  .nav-logo{
  width: 150px;
  
} 

  .nav-toggle{
    display: none;
  }

  .nav-center{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* border: 1.5px solid red; */
}

.nav-links{
  height: auto;
  display: flex;
}

/* .nav-header{
  padding: 0 0;
} */

.nav-link{
  padding: 0 0;
  margin-right: 2rem;
}

.nav-link:hover{
  padding: 0;
  color: var(--clr-primary-5);
  background: transparent;  
}

.nav-icons{
  display: flex;
}

.nav-icon{
  margin-right: 0.7rem;
  color: var(--clr-primary-5);
  font-size: 1.2rem;
  transition: var(--transition);

}
.nav-icon:hover{
  color: var(--clr-primary-8);
}
}


/*  -------------------   hero  --------------------- */



 .section-hero{
  padding-top: 1.5rem;
  margin-top: 100px;
  /* border: 2px solid red; */
 }

.hero-img{
  width: 85vw;
  margin: 0 auto;
  margin-bottom: 2.5rem;
  /* border: 2px solid blue;   */
}

.hero-info{
  width: 85vw;
  /* max-width: 500px; */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  /* border: 2px solid blue;   */
}

.passo{
  font-size: 1.25rem;
}

.hero-title{
  font-size: 2.3rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02rem;
  text-transform: none;
  color: var(--clr-primary-2);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-subtitle{
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.02rem;
  line-height: 1.2;
  text-transform: none;
  color: var(--clr-primary-1);
  margin-bottom: 3rem;
}


.hero-text{
  color: var(--clr-primary-3);
  width: 100%;
  font-size: 1.1rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn{
  width:85vw;
  margin-left: auto;
  margin-right: auto;
  /* border: 1px solid red; */
}

.btn{
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn span{
  font-size: 1.3rem;
}

@media screen and (min-width: 768px){
  .hero-center{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* border: 2px solid red;     */
    align-items: center;    
  }

  .hero{
     flex: 0 0 calc(50% - 3rem); 
     align-self: center;    
  }

  .section-hero{
  padding-top: 3rem;
  
 }

  .hero-img{
    margin-bottom: 0;
  }

  .hero-info{
    margin-bottom: 2rem;
    
  }

  .hero-title{
    margin-bottom: 1rem;
  }

  .hero-subtitle{
    margin-bottom: 1rem;
  }
  
  .hero-info p{
  width: fit-content;
  margin-left: 0;  
}

.hero-btn{
  width: 100%;
}  
}

@media screen and (min-width: 970px){
  .hero-info{
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-title{
    font-size: 2rem;
  }

  .hero-text{
    font-size: 1.1rem;
  }
}




/*  -------------------   Cost  --------------------- */

 .costs{
    background: var(--clr-primary-9);    
 }
 
 .section-title h3{
    text-transform: none;
    font-size: 1.5rem;
    line-height: 1.75rem;
    letter-spacing: 0.1rem;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -1.2rem;
    color: var(--clr-primary-1);      
 }

 .cost{
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    width: 80vw;
    max-width: 250px;
    box-shadow: var(--dark-shadow);
    margin-left: auto;
    margin-right: auto;
    background: var(--clr-white);
    color: var(--clr-primary-3);
    text-align: center;
    border-radius: var(--radius);
 } 

 .cost h3{
    font-size: 1.2rem;
    letter-spacing: normal;
    text-transform: none;
    color: var(--clr-primary-1);
 }

 .cost h2{
   font-size: 1.5rem;
   margin-bottom: 0.2rem;
 }

 .cost span{
  font-size: 3rem;
 }

 .cost-texts{
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
  max-width: 250px;  
 }

 .cost-text{
  color: var(--clr-primary-1);
  font-size: 1rem;
 }

 @media screen and (min-width: 768px){
  .cost-center{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .cost{
    box-shadow: var(--light-shadow);
  }

  .cost:hover{
  box-shadow: var(--dark-shadow);
  transform: scale(1.1);
 }

  .cost-bord{
    border: 3px solid var(--clr-primary-7);
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius);
    padding: 2.5rem 0;

  }

  .cost{
     flex: 0 0 calc (50% - 2rem);
     margin-bottom: 3rem;
  }

  .section-title h3{
    font-size: 1.5rem;
    line-height: 2rem;
    max-width: 450px;
  }

  .cost-texts{
  width: 80vw;  
  max-width: 600px; 
  text-align: center; 
  font-size: 1rem;
 }

 .cost-text{
  margin-bottom: 0.5rem;
 }
}

@media screen and (min-width: 992px){  
  .cost{
     flex: 0 0 calc (33.333% - 2rem);
     padding: 2rem 0;
     max-width: 280px;
     margin-bottom: 2rem;
  }   

  .cost-texts{
  width: 80vw;  
  max-width: 900px;  
 }
}



/*  -------------------   delivery  --------------------- */




.delivery-spot{
    display: flex;
    align-items: center;
    border: 2px solid var(--clr-primary-7);
    padding: 1rem 0.5rem;
    margin-bottom: 1.5rem;
    width: 80vw;
    max-width: 250px;
    height: 160px;
    margin-left: auto;
    margin-right: auto;
    background: var(--clr-white);
    color: var(--clr-primary-3);
    text-align: center;    
    border-radius: var(--radius);  
}

.delivery .section-title{
  max-width: 240px;
  margin-right: auto;
  margin-left: auto;
}

.delivery-spot h3{
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  max-width: 450px;
  margin-bottom: 1rem;
}

.delivery-spot h2{
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: none;
  max-width: 450px;
  color: var(--clr-primary-1);    
}

.delivery-btn-container{
  width:85vw;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;  
  
}

.delivery-btn{
  letter-spacing: 0.1rem;
  text-align: center;  
}


@media screen and (min-width: 768px){
  .delivery-spots{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;    
  }

  .delivery .section-title{
  max-width: 400px;
  
}

.delivery-spot{
  border: 3px solid var(--clr-primary-7);
}
  
  .delivery-spot{
    flex: 0 0 calc(50% -2rem);
  }

  .delivery-btn-container{
    display: none;
  } 

}


@media screen and (min-width: 992px){
  .delivery-spot{
    flex: 0 0 calc(33.333% - 2rem);
  }
}


/*  -------------------   about us  --------------------- */

.section-about{
  background: var(--clr-primary-9);
}

.about-logo1{
  background: var(--clr-white);
  width: 70vw;
  max-width: 240px;
  padding: 2rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--dark-shadow);
  
}

.about-logo2{
  background: var(--clr-white);
  width: 70vw;
  max-width: 240px;
  padding: 2rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--dark-shadow);
}

/* .about-info-title{
  border: 2px solid red;  
} */

.about-info-title h3{
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: var(--clr-primary-2);
}

.about-info-title h2{
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 0.9;
  text-transform:none;  
  color: var(--clr-primary-2);
}

.about-info-title h4{
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 0.9;
  text-transform:none;  
  color: var(--clr-primary-2);
}

.about-texts{
  margin-top: 3rem;
  width: 90vw;  
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  /* border: 2px solid red;      */
}

.about-texts p{
  font-size: 1.1rem;
  text-align: center;
  color: var(--clr-primary-1);
}

/* .about-logos{
  border: 2px solid red;
} */

@media screen and (min-width: 768px){
  .about-logo1,
  .about-logo2{
    margin-left: 3rem;
    margin-right: 3rem;
    margin-bottom: 3rem;
  }
  .about-logos{
    display: flex;
    justify-content: center;     
  }

  .about-logo1,
  .about-logo2{
    flex: 0 0 calc(50% - 3rem);
  }



  .about-info-title h3{
  font-size: 4rem;  
}

.about-info-title h2{  
  font-size: 2rem;
  
}

.about-info-title h4{  
  font-size: 1.5rem;  
}



  
}









/*  -------------------   footer  --------------------- */

.footer{
  background: var(--clr-primary-7);
  padding-bottom: 2rem;    
}

.footer-item img{
  width: 120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.footer-item{
  /* border: 2px solid red; */
  max-width: 220px;
  text-align: center;  
  width: 80vw;
  margin: 1rem auto;
  
  
}

.footer-item h3{
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
  color: var(--clr-primary-3);
  text-transform: none;
  margin-bottom: 0.3rem;
}

.footer-item p{
  color: var(--clr-primary-1);
  font-size: 1.1rem;
  /* border: 2px solid red; */
  width: 100%;
  
}

.footer-copy h3{
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1rem;
  text-transform: none;
  margin-top: 5rem;
  margin-bottom: 0;  
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy{
  width: 100%;
  color: var(--clr-primary-3);    
}

.footer-copy span{
  color: var(--clr-primary-1);
}

.footer-icons{  
  color: var(--clr-primary-1);
  /* border: 2px solid red; */
  margin-top: 4rem;
}

.footer-icons .nav-icons{
  display: flex;
  justify-content: center;    
}

.footer-icons .nav-icon{
  margin-right: 1rem; 
  margin-left: 1rem;
  color: var(--clr-primary-4);
  font-size: 2rem;
  transition: var(--transition);
}

.footer-icons .nav-icon:hover{
  color: var(--clr-primary-1);
}




@media screen and (min-width: 768px){
  .footer-items{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer-item{
    flex: 0 0 calc(50% - 2rem); 
      
  }
  .footer-center{
    max-width: 100vw;
  }

  .footer-item p{
    line-height: 1.25;
  }

  .footer-icons{
    margin-top: 2rem;
  }
  .footer-icons i{
    font-size: 1.75rem;
  }

  .footer-copy{
    display: flex;
    justify-content: center;    
  }

  .footer-copy h3{
    font-size: 1rem;
  }
}

@media screen and (max-width: 1170px){   
  .footer-item{
    flex: 0 0 calc (25% - 2rem);
  }  
}






