@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap');

:root{
    --verde-header: #2E948A;
    --verde-footer: #419488;
    --verde-azulado: #009688;
  --cinza-retangulo: #C4C4C4;
  --cinza-bg: #F6F6F6;
  --rosa: #FF4081;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Ubuntu', sans-serif;
    /*overflow-x: hidden;*/
    overflow-y: none;
}

a{
    text-decoration: none;
}

.container{
    width: 90%;
    margin: 0 auto;
}

header{
    width: 100vw;
    height: 117px;
    background-color:  var(--verde-header);
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.25);
}

header .nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 90%;
    max-width: 1255px;
    margin: 0 auto;
}

header .nav-container nav a{
    text-transform: uppercase;
    color: #FDFDFD;
    font-size: 20px;
    font-weight: 700;
    margin: 15px;
    transition: all 0.3s ease;
}

header .nav-container nav a:hover{
    color: #C4C4C4;
}

/*final do header*/

.section1{
    display: flex;
    justify-content: start;
    max-width: 1028px;
    margin: 125px auto 126px auto;

}


.section2{
    background-color:#E5E5E5;
    padding-bottom: 14px;
    height: 100%;
}

h1{
    margin-right: 37px;
    font-Weight: 700;
    font-Size: 55px;
    Line-height: 63.2px;
    color: #FF4081;
    margin-bottom: 15px;
}

p{
    margin-right: 88px;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 23px;
    display: flex;
    align-items: center;
    color: #000000;
}

.d2{
    display: flex;
    width: 1050px;
    margin: 0 auto;
    padding: 42px 0 73px 0;
   
}


.poupando{
    width: 929px;
    height: 381px; 
}

.video{
    margin-right: 76px;
    width: 462px;
    height: 261px;
    left: 212px;
    top: 1146px;
}

.p2{
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 23px;
}

.textos{
    display: flex;
    flex-direction: column;
    width: 501px;
}

hr{
    width: 1244px;
    Height: 3px;
    margin: 0 auto;
    background-color:  #C4C4C4;
}

h3{
    width: 106px;
    height: 40px;
    margin-bottom: 26px;

    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 40px;
    color: #FF4081;
}



/*footer começa aqui*/


footer{
    width: 100vw;
    
    background-color: var(--verde-footer);
  }
  
  footer .container{
    height: 265px;
    width: 90%; 
    max-width: 1255px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  footer .container .footer-links{
    display: flex;
    flex-direction: column;
  }
  
  footer .container .footer-links a{
    font-size: 20px;
    padding: 5px;
    font-family: 'Ubuntu';
    color: #fff;
  }

  footer .container .footer-btn{
    display: flex;
    flex-direction: column;
    
  }
  
  footer .container .footer-btn button{
    background-color: var(--verde-azulado);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 62px;
    padding: 14px;
    margin: 13px;
    width: 289px;
    font-size: 20px;
    cursor: pointer;
  }



  /*responsividade*/



  @media (max-width:580px){
    footer .container{
      flex-direction: column;
    }
    footer .container .footer-links{
      flex-direction: row;
      margin: 15px auto;
    }
    footer .container .footer-btn button{
      margin: 4px;
      width: 260px;
    }

    footer .container img{
      padding-top: 20px;
    }

    h1{
      font-size: 40px;
    }

    .section1 .poupando{
      display: none;
    }
  }

  @media (max-width:850px){


    footer .container img{
      width: 200px;
    }
    footer .container .footer-btn button{
      font-size: 14px;
      width: 180px;
    }

    header{
      height: 150px;
    }
    header .nav-container{
      flex-direction: column;
      justify-content: space-evenly;
    }
    header .nav-container nav a{
      font-size: 14px;
    }

    .section1 .poupando{
      width: 60%;
      align-self: center;
      /* height: 381px;  */
  }
  }

  @media (max-width:1100px){
    .section1{
      display: flex;
      flex-direction: column;
    }

    .section2{
      margin-top: 50px;
      flex-direction: column;
      justify-content: space-between;
    }

    .poupando{
        margin-top: 3em;
        width: 100%;
    }

    .text1{
        width: 100%;
        padding-left: 1.5em;
    }

    .d2{
        flex-direction: column;
        width: 100%;
    }

    .d2 img{
      padding: 0 20px;
    }

    .video{
        width: 100%;
    }

    .textos{
        width: 100%;
        padding-left: 1.5em;
        margin-top: 2em;
    }

    hr{
      width: 100%;
    }

    h1{
        width: 100%;
    }
  }

    
