@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    border: none;
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: linear-gradient(180deg, #FFD83C 0%, #FFCC00 105.01%);
}

h1,h2,h3,h4{
    font-family: 'Bebas Neue', cursive;
    font-size: 2.25em;
    letter-spacing: 0.01em;
    font-weight: normal;
}

a{
    text-decoration: none;
    color: white;    
}

.btn {
    background: linear-gradient(180deg, #FF0000 0%, #FF3232 100%);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    display: block;
    padding: 12px;
    margin-top: 20px;

    text-transform: uppercase;
    font-size: 1.125em;
    font-weight: 500;
}

.container{
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}

.header{
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.logo{
    display: inline-block;
    background: #ff0000;
    padding: 2px 8px;
    border-radius: 0 0 8px 8px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
}

.container > div + div {
    margin: 40px 0;
}

.card{
    background: #380000;
    text-align: center;
    border-radius: 8px;
    padding: 40px;
}

.card h2{
    margin-bottom: 20px;
}

.iframe {
    display: flex;
}

iframe{
    flex: 1;
    width: 250px;
    display: block;
}

.contato {
    margin-top: 20px;
    margin-bottom: 20px;
}

.contato a {
    display: block;
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.2em;
}

.card span{
    font-size: 0.75em;
}


