@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Bebas+Neue&family=Coda:wght@400;800&family=Honk&family=Orbitron:wght@400..900&family=Passion+One:wght@400;700;900&family=Russo+One&display=swap');

html, body {
    height: 100%;
    margin: 0px;
    padding: 0px;
}

#wrapper {
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

body {
    display: flex;
    flex-direction: column;
}

#cabecalho {
    margin-top: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.linha {
    width: 100%;
    background-color: #2AAAE3;
    padding-top: 1px;
    padding-bottom: 1px;
    box-shadow: 0px 2px 4px rgba(41, 41, 41, 0.3);
}

.logo img {
    width: 15%;
}

.email img {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    width: 5%;
}

.email img:hover {
    transform: scale(1.1);
}

.whatsapp img {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 5%;
}

.whatsapp img:hover {
    transform: scale(1.1);
}

h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #292929;
    text-align: center;
    font-size: 24px;
}

h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #292929;
    text-align: center;
    font-size: 24px;
    background-color: #DAA520;
    width: 700px;
    margin: 0 auto;
    padding: 5px;
    border: 1px solid #B8860B;
}

h3 {
    font-family: "Orbitron", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #292929;
    text-align: center;
    font-size: 26px;
    background-color: #2AAAE3;
    margin: 0 auto;
    padding: 15px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-top: 2px solid;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #292929;
    font-size: 18px;
    padding: 16px;
}

#rodape {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    background-color: #2AAAE3;
    padding-top: 10px;
    padding-bottom: 5px;
    color: #292929;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #f1f1f1;
}

.logo-rodape img {
    width: 15%;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    background: linear-gradient(to bottom, #2AAAE3, #F5FFFA);
}

iframe {
    width: 48%;
    margin-bottom: 10px;
    border: 2px solid #2AAAE3;
}

@media only screen and (max-width: 768px) {
    .logo img {
        width: 30%;
    }
    
    iframe {
        width: 100%;
    }

    .email img {
        width: 15%;
    }

    .whatsapp img {
        width: 15%;
    }

    .logo-rodape img {
        width: 30%;
    }
}

@media only screen and (max-width: 480px) {
    .logo img {
        width: 50%;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 20px;
        width: 90%;
    }

    h3 {
        font-size: 22px;
    }

    p {
        font-size: 16px;
    }

    iframe {
        width: 100%;
    }

    .email img {
        width: 15%;
    }

    .whatsapp img {
        width: 15%;
    }

    .logo-rodape img {
        width: 50%;
    }
}