* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

h1, h4, h3, h2, h1, p {
    margin: 0px;
}

main {
    background-color: transparent;
    background-image: radial-gradient(at center center, #2B1002 0%, #000000 100%);
}

.banner {
    background: #000;
    padding: 14px 20px;
}

.banner p {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
}


.hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: -1.7px;
    text-align: center;
    color: #E4E4E4;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
}

.hero h1 span {
    color: #E58102;
}

.hero p {
  text-align: center;
  color: #C3C3C3;
  font-family: 'Roboto Condensed', sans-serif;
}

.hero h2 {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    color: #B4B4B4;
    letter-spacing: -0.3px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
}

.cdb {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.bandeiras {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.bandeiras img {
    max-width: 40px;
}

.btn-cta {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3em;
    fill: #000000;
    color: #000000;
    background-color: transparent;
    background-image: linear-gradient(180deg, #E58102 0%, #F2D342 100%);
    border-radius: 500px 500px 500px 500px;
    box-shadow: 0px 1px 8px -3px rgb(216 232 67 / 50%);
    padding: 28px 20px 28px 20px;
    margin: 0 auto;
    transform: scale(1);
    transition: .3s;
    font-family: 'Roboto Condensed', sans-serif;
    border: none;
}

.btn-cta:hover {
    cursor: pointer;
    transform: scale(1.1);
    transition: .5s;
}

.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999;
}

#modalFormulario {
    display: none;
}

.form-integrado {
    margin-top: 20px;
}

.modal-title {
    font-size: 20px;
}

input[type="text"],input[type="email"] {
    width: 100%;
    padding: 8px;
    border-radius: 7px;
    border: solid 1px #dadada;
    margin: 5px 0px;
    background-color: #f9f9f9;
    text-align: center;
    color: #666;
}

input[type="submit"] {
    background-color: #FFC400;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    height: 60px;
    width: 500px;
    max-width: 100%;
    border: none;
    margin-top: 15px;
    text-decoration: none;
}

input[type="submit"]:hover,input[type="submit"]:focus, a:hover,a:focus {
    outline-style: none;
    text-decoration: none;
}

footer {
    background: #100A06;
    color: #fff;
    padding: 40px 20px;
}

footer p {
    font-size: 13px;
    line-height: 20px;
    font-weight: 300;
    font-family: 'Roboto Condensed', sans-serif;
}

footer h4 {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

footer h4 > span {
    color: #E58102;
    font-weight: 700;
}

footer img {
    max-width: 116px;
    margin-bottom: 20px;
}

footer ul {
    text-decoration: none;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

a {
    text-decoration: none;
    color: #999999;
    font-size: 13px;
    font-family: 'Roboto Condensed', sans-serif;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}


@media (max-width: 768px){
    .hero {
      padding-bottom: 100px;
    }
    .hero h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .hero h2 {
        line-height: 24px;
    }

    .btn-cta {
        line-height: 22px;
        padding: 15px;
        width: 100%;
        
    }

    .bandeiras img {
        max-width: 40px;
    }
}


