html{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
    color: #f0f0f0;
}

body{
    margin: 0;
}

.promocao{
    background-color: red;
    color: #00ff00;
    position: sticky;   
    top: 0; 
    z-index: 999;
}

.timer{
    font-size: 1.4rem;
}

.logo{
    margin-top: 10px;
}

.banner{
    margin-top: 5px;
    width: 100%;
    background-image: url("../img/banner2.png");
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
    background-color: #4D1386;
}

.salarios{
    width: 100%;
    background-image: url("../img/salarios.PNG");
    height: 700px;
    background-color: #000;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

p{
    line-height: 5vh;
    font-size: 3vh;
}

.content{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.title{
    color: #eaff00;
    font-size: 4.8vh;
}

.logo_def{
    text-align: center;
    margin-left: 10px;
    font-size: 1.5vh;
}

.row1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px;
}

.row2 .row1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.container {
    margin: auto;
    position: relative;
    overflow: hidden;
    width: 60%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  }
  
  /* Then style the iframe to fit in the container div with full height and width */
  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .form img{
    width: 100%;
    height: 100%;
  }

.cronograma{
    margin-left: auto;
    margin-right: auto; 
    width: 60%;
}

.modulo{
    color: #00ff00;
    font-weight: 900;
    text-align: start;
    margin-bottom: 10px;
}

.conteudo{
    text-align: start;
    margin-bottom: 5px;
}

.preco {
    font-size: 2em;
    color: #00ff00;
    font-weight: 900;
    text-align: center;
}

.preco s{
    font-size: .7em;
    color: red;
}

.preco span{
    font-size: .7em;
}

.form{
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: center;
    margin: auto;
    width: 60%;
}

.form img {
    width: 70%;
}

b{
    color: rgb(95, 236, 8);
    font-weight:bold
}

.form label{
    font-size: 2vh;
}

.form a{
    text-align: center;
    background-color: rgb(3, 84, 43);
    padding: 15px 20px 15px 20px;
    border-radius: 6px;
    width: 80%;
    color: #fff;
    font-size: 1em;
    text-decoration: none;

    animation-name: btn-animation;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.btn-download{
    background-color: rgb(75, 183, 237);
    padding: 10px 20px 10px 20px;
    border-radius: 6px;
    width: 100%;
    color: #fff;
    font-size: 2.5vh;
    cursor: pointer;

}

.form a:hover{
    background-color:  rgb(3, 123, 63);
}

.footer{
    padding-top: 20px;
    margin: auto; 
    margin-top: 20px; 
    background-color: #fff;
}

.destaque{
    color: #5FEC09;
}

#site{
    color: yellow;
}

.modules{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-flow: row wrap
}

.card{
    padding: 5px;
    border-radius: 5px;
    background-color: #262525;
    margin-top: 10px;
    text-align: start;
    margin-left: 5px;
    box-shadow: 2px 2px 5px rgba(198, 219, 45, 0.5);
}

.card p {
    font-size: 16px;
}

.card-title{
    color: #00ff00;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
}

@keyframes btn-animation {
    0%{
        transform: scale(1);
    }

    100%{
        transform: scale(1.02);
    }
}

@media (max-width: 700px) {
    .card{
        width: 100%;
    }

    .container{
        width: 100%;
    }

    .preco{
        
        font-size: 1em;
    }

    .banner{
        height: 200px;
    }

    .salarios {
        height: 330px;
    }
}