*{
    margin: 0;  
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
  }

:root{
    --cor-bg:#F5FEF9;
    --cor-word1:#268CFF;
    --cor-word2: #f20789;
    --cor-word3:#A8F2FE;
    --cor-word4:#F207891A;
    --cor-word5:#A8F2FE66;
}


body{
    background-color: var(--cor-bg);
    cursor: url('/src/image/cursor-default.png'), default;
}

button, a, button:hover, a:hover{
    cursor: url('/src/image/cursor-hover.png'), auto;
}

a{
    text-decoration: none;
}

nav{
  background-color: var(--cor-word1);
  display: flex;
  align-items: center;
}

nav a img {
  max-width:40%;
  height: inherit; 
}

h1{
  /* color: var(--cor-word2); */
  font: bolder;
}
h3{
  /* color: var(--cor-word2); */
  font: bolder;
}
.content-info, .box-whatsapp, .box-contract{
  margin: 0 15%;
}

.box-header{
  display: flex;
  align-items: center;
}

.box-course-dark{
    background-color: var(--cor-word2);
    border-radius: 5px;
}

.box-course-dark p, .box-course-dark h1{
  color: var(--cor-bg)
}

.box-course-light{
    background-color: var(--cor-word4);
    border-radius: 5px;
}

.box-course-info{
    display: grid;
    grid-template-columns:auto 60%; 
    grid-template-rows:20% auto; 
    gap:5px;
    border-radius: 5px;
}

.level-module{
  display: flex;
  align-items: center;
  gap: 3px;
  
}
.level-module p{
 text-transform: uppercase;

}

.level-module-bar{
  display: flex;
  align-items: flex-end;
  gap: 2px;
  
}

.box-costs{
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-buy{
    width: 80%;
    padding: 3px;
    border: 1px solid var(--cor-word2);
    border-radius: 15px;
    background-color: var(--cor-word2);
    color: var(--cor-bg);
}

.form-contact-box{
  max-width: 50%;
}

#form-contact header{
  background-color: var(--cor-word2);
  color: var(--cor-bg);
  font-weight: bold;
  box-shadow: #A8F2FE;  
}

#form-contact footer{
  background-color: var(--cor-word2);
  color: var(--cor-bg);
  font-weight: bold;
  box-shadow: #A8F2FE;
  height: 5rem;
}

.form-contact-course{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--cor-word4);
  color:var(--cor-word2);
  margin-bottom: 0;
}
.form-contact-course input{
  padding: 5px 10px;
  border: 1px solid var(--cor-word2);
  border-radius: 5px;
}

.form-input-box{
  display: flex;
  flex-direction: column;
  font-weight: bold;
}

.btn-buy-form{
    width: 40%;
    padding: 3px;
    border: 1px solid var(--cor-word2);
    border-radius: 5px;
    background-color: var(--cor-word2);
    color: var(--cor-bg);
    opacity: 0.8;
    font-size: larger;
}

.btn-buy-form:hover{
  opacity: 1;
  background-color: var(--cor-word2);
}

.btn-close-modal{
  background-color: #268CFF;
  color: var(--cor-bg);
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 5px;
  border: 1px solid var(--cor-bg);
  
}

.btn-back{
  background: var(--cor-bg);
  color: var(--cor-word2);
  border: 1px solid var(--cor-word2);
  padding: 10px 15px;
}

.box-whatsapp{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--cor-word2);
  border-radius: 5px;
  padding: 10px 25px;
}

.box-whatsapp-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-whatsapp-text svg{
  width: 50px;
  height: auto;
}

.btn-whatsapp{    
    padding: 5px 10px;
    border: 1px solid #25D366;
    border-radius: 5px; 
    color: var(--cor-bg);
    background-color: #25D366;
       
}

.btn-whatsapp:hover{ 
  background-color: green;
}

footer{
    background-color: var(--cor-word2);
    color: var(--cor-bg);     
    height: 10rem;
    margin-top: 1.5rem;   
    padding-top: 2%;
    padding-left: 2%;
    padding-right: 2%;
    bottom: 0;
    right: 0;
    width: 100%;
}

.terms-content, .copyright {
    padding-top: 2%;
} 


@media screen and (min-width: 601px) {
    .header-text-container{        
        height: 80vh;
        justify-content: center;
    }

    .header-main-text {
        font-size: 3.5rem;
        margin: 0 2rem;
        line-height: 4rem;
        max-width: 70%;
        
    }
    .header-text {
        font-size: 1.3rem;
        margin: 1rem 2rem; 
    }
}
  
@media screen and (max-width: 600px) {
  .content-info,.box-whatsapp, .box-contract{
    margin: 0 5%;
  }
  .form-contact-box{
    max-width: 70%;
  }
  .box-course-info{      
    grid-template-columns:auto; 
    grid-template-rows: auto auto auto; 
    gap:5px;      
  }
  .box-course-item1{
    order:1;
  }
  .box-course-item2{
    order:0;
  }
  .box-course-item3{
    order:2;
  }
 .box-costs{
    flex-direction: column;
  }
}

