@charset "UTF-8";

@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

body {
    position: relative;
}
video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    padding: 40px;
    max-width: 768px;
}
.container > h1 {
    color: #fff;
    font-size: 36px;
    text-shadow: 4px 2px 4px rgba(0, 0, 0, 0.6);
}
.container > h1::before {
    content: "";
    display: block;
    width: 50px;
    position: relative;
    height: 4px;
    background-image: linear-gradient(90deg, #43ec00, #ffee00);
    top: 46px;
    border-radius: 2px;
}
.container > h1::after {
    content: "";
    display: block;
    position: relative;
    top: -35px;
    left: 200px;
    background-image: url("../imagens/verificado.png");
    height: 25px;
    width: 25px;
}
.container > .gradiente-banner > img {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-bottom: 20px;
}
.gradiente-banner {
    position: relative;
    border-radius: 100%;
}
.gradiente-banner::before {
    content: "";
    width: 215px;
    height: 215px;
    position: absolute;
    top: -7px;
    left: -7px;
    background-image: linear-gradient(90deg, #43ec00, #ffee00);
    z-index: -1;
    border-radius: 100%;
}
.buttons {
    display: block;
    max-width: 1024px;
    width: 100%;
}
.container > .buttons > a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    position: relative;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px;
    margin: 10px auto;
    max-width: 600px;
    border-radius: 60px;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.container > .buttons > a:hover {
    background-image: linear-gradient(90deg, #2b9202, #ffee00);
    box-shadow: 0 0 10px #2c9b00, 0 0 40px #f8e800, 0 0 80px #4bbd00;
    transform: scale(1.05);
}
.container > .buttons > a > img {
    width: 25px;
    height: 25px;
    float: left;
    position: relative;
}