@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* ESTRUTURA */
:root {
  --fundo: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

img {
    display: flex;
    width: 100%;
  }

body {
  font-family: "Roboto", sans-serif;
  background-color: #ebecec;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}
/* ----------- Padrão letras ----------------- */
/* p{
  color:#000000;
  line-height: 1.75rem;
  text-align:justify;
  text-indent: 30px;    /*cria margem paragrafo*/
 /*  line-height: 1.2; /*ajusta distancia das letras*/
 /*  padding-left: 10%;
  width: 1000px;
}*/


/* ESTRUTURA */
/*====== inicio menu =======*/
header{
    position: sticky;
    top: 0px;
    background-image: linear-gradient( to right, #60b4df 30%, #436da3, #052888 ); 
    width: 100%;
    z-index: 1000;
}

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.container{
    max-width: 80rem;
    padding: 0 1rem;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.logo-container{
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-btn{
    flex: 3;
    display: flex;
}

.nav-links{
    flex: 1;
}

.log-sign{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo{
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
}

.logo span{
    font-weight: 300;
}

.btn{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}

.btn.solid, .btn.transparent:hover{
    background-color: #fff;
    color: #69bde7;
}

.btn.transparent, .btn.solid:hover{
    background-color: transparent;
    color: #fff;
}

.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link{
    position: relative;
}

.nav-link > a{
    line-height: 3rem;
    color: #fff;
    padding: 0 .8rem;
    letter-spacing: 1px;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.nav-link > a > i{
    margin-left: .2rem;
}

.nav-link:hover > a{
    transform: scale(1.1);
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 10rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown ul{
    position: relative;
}

.dropdown-link > a{
    display: flex;
    background-color: #fff;
    color: #3498db;
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover > a{
    background-color: #3498db;
    color: #fff;
}

.dropdown-link:not(:nth-last-child(2)){
    border-bottom: 1px solid #efefef;
}

.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #3498db;
}

.dropdown-link{
    position: relative;
}

.dropdown.second{
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow{
    top: 10px;
    left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #fff;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 920px){
    .hamburger-menu-container{
        display: flex;
    }

    #check{
        display: block;
    }

    .nav-btn{
        position: fixed;
        height: calc(100vh - 3rem);
        top: 3rem;
        left: 0;
        width: 100%;
        background-color: #69bde7;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }

    #check:checked ~ .nav-btn{
        transform: translateX(0);
    }

    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign{
        animation: animation .5s ease forwards var(--i);
    }

    .nav-links{
        flex: initial;
        width: 100%;
    }

    .nav-links > ul{
        flex-direction: column;
    }

    .nav-link{
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    .nav-link > a{
        line-height: 1;
        padding: 1.6rem 2rem;
    }

    .nav-link:hover > a{
        transform: scale(1);
        background-color: #50a9d6;
    }

    .dropdown, .dropdown.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #3183ac;
        display: none;
    }
    
    .nav-link:hover > .dropdown,
    .dropdown-link:hover > .dropdown{
        display: block;
    }

    .nav-link:hover > a > i,
    .dropdown-link:hover > a > i{
        transform: rotate(360deg);
    }

    .dropdown-link > a{
        background-color: transparent;
        color: #fff;
        padding: 1.2rem 2rem;
        line-height: 1;
    }

    .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 3rem;
    }

    .dropdown.second .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .dropdown-link:not(:nth-last-child(2)){
        border-bottom: none;
    }

    .arrow{
        z-index: 1;
        background-color: #69bde7;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }

    .nav-link:hover .arrow{
        background-color: #50a9d6;
    }

    .dropdown .dropdown .arrow{
        display: none;
    }

    .dropdown-link:hover > a{
        background-color: #3a91bd;
    }

    .dropdown-link:first-child:hover ~ .arrow{
        background-color: #50a9d6;
    }

    .nav-link > a > i{
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }

    .dropdown i{
        font-size: 1rem;
        transition: .7s;
    }

    .log-sign{
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }
}

/*====== Fim menu =======*/
/*====== inicio capa =======*/
.home{
  width: 100%;
  min-height: 480px;
 /* background-image: url("img/oqueler-700px.svg");*/
 background-repeat: no-repeat;
 /* background:#ffffffef;*/
  display: grid;
  justify-content: center;
  align-items: center;
}

.home-text{
  color: var(--bg-color);
  text-align: center;
}

.home-title{
  font-size: 3.5rem;
  color: rgb(15, 15, 56);
}

.home-subtitle{
  font-size: 3.5rem;
  font-weight: 500;
  color:#e9e9e9;
}
/*====== Fim capa =======*/

/*====== inicio descrição inicial texto =======*/
/*.inicial-txt{
  background-color: var(--fundo); /*ajusta cor fundo texto inicial*/
/*   max-width: var(--max-width);*/
/*  margin: auto;
}

.about__container .section__description {
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 2rem;

  }
  
  .section__header {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--header-font);
    color:#636060;
    text-align: center;
  }*/
  
 /* .section__description {
    color:#000000;
    line-height: 1.75rem;
    text-align:justify;
    text-indent: 30px;    /*cria margem paragrafo*/
  /* line-height: 1.2; /*ajusta distancia das letras*/   
 /* }*/

/*====== Fim descrição inicial texto =======*/
.titulos-art{
    font-size: 5px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 600;
    text-align: center;
    color: #636060;
    padding: 1%;
    border-bottom: 1px solid rgb(63, 63, 63);
}

.blogs {
    padding: 0 5%;
    width: 100%;
    padding-top: 80px;
}
.blogs h1{
    color: #031536;
}

.blogs span{
    color: #5a41eb;
}
.blogs-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
    margin-top: 50px;
}

.blogs-item {
    width: 30%;
    border-radius: 5px;
    border: 1px solid rgba(18, 6, 199, 0.596);
    padding-bottom: 1em;
}

.blogs-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blogs-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;  
}

.blogs-item:hover img {
    transform: scale(1.05);
}

.blogs-text {
    padding: 1em;
}

.blogs-text h2 {
    font-size: 1.5em;
    text-transform: capitalize;
    color: #242424;
    font-weight: 500;
}

.blogs-text span {
    color: rgb(0, 0, 0);
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.blogs-text p {
    color: #031536;
    line-height: 2;
}

.blogs-text button {
    border: none;
    background: #ff6347;
    font-size: 17px;
    cursor: pointer;
    color: #EDEDED;
    margin-top: 20px;
    padding:5px 8px;
    border-radius: 3px;
    transition: all 0.5s ease;
}

.blogs-item button:hover {
    background: #EDEDED;
    color: #ff6347;
}
@media (max-width: 767px) {
    .blogs-items {
        flex-direction: column;
        align-items: center;
    }

    .blogs-item {
        width: 100%;
    }

    .blogs-image {
        height: 200px;
    }

}
/* Blog End */
/*====== Inicio temas dos artigos =======*/

  
/*====== Fim temas dos artigos =======*/

/*-- responsivo geral --*/
@media (max-width: 1060px){
  .container{
      margin: 0 auto;
      width: 95%;
  }

  .home-text{
      width: 100%
  }
}

@media (max-width: 768px){
  .nav{
      padding: 10px 0;
  }

  section{
      padding: 2rem 0 !important;
  }

  .header-content{
      margin-top: 3rem !important;
  }

  .home{
      min-height: 380px;
  }

  .home-title{
      font-size: 3rem;
  }

  .header-title{
      font-size: 2rem;
  }

  .header-img{
      height: 370px;
  }

  .about{
      flex-direction: column;
  }

  .about .contentBx{
      min-width: 100%;
      width: 100%;
      text-align: center;
      padding-right: 0px;
  }

  .about .contentBx,
  .about .imgBx{
      min-width: 100%;
      width: 100%;
      padding-right: 0px;
      text-align: center;
  }

  .about .imgBx{
      min-height: 250px;
  }

  .btn2{
      margin-bottom: 30px;
  }

  .post-header{
      height: 435px;
  }

  .post-header{
      margin-top: 9rem !important;
  }
}

@media (max-width: 570px){
  .post-header{
      height: 390px;
  }

  .header-title{
      width: 100%;
  }

  .header-img{
      height: 340px;
  }
}

@media (max-width: 396px){
  .home-title{
      font-size: 2rem;
  }

  .home-subtitle{
      font-size: 0.9rem;
  }

  .home{
      min-height: 300px;
  }

  .post-box{
      padding: 10px;
  }

  .header-title{
      font-size: 1.4rem;
  }

  .header-img{
      height: 240px;
  }

  .post-header{
      height: 335px;
  }

  .header-img{
      height: 340px;
  }
}
/*-- responsivo geral --*/


/* ======== inicio envio de e-mail ======== */


/* ======== Fim envio de e-mail ======== */

/* ======== inicio rodape ======== */
/* footer */
.rodapee-mail{
  text-align: center;
  padding-bottom: 2%;
}
footer{
  background-image: linear-gradient( to right, #60b4df 30%, #436da3, #052888 ); 
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}
.social-links{
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.social-links a{
  border: 2px solid #fff;
  color: #fff;
  display: block;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  margin: 0 0.3rem;
  transition: all 0.5s ease;
}

.social-links a:hover{
  background: #fff;
  color: var(--exDark);
}
.footer span{
  margin-top: 1rem;
  display: block;
  font-family: var(--Playfair);
  letter-spacing: 2px;
}
/* ======== Fim rodape ======== */