* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

body {
 background-color: var(--cor-bg);   
}

:root {
    --cor-primaria: #55c720;
    --cor-secundaria: #41414144;
    --cor-texto: #fff;
    --cor-botao: #ffffff;
    --cor-texto-botao: #1a1a1a;
    --cor-bg: #000000;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url(assets/bg.png);
    background-position: center;
    background-size: cover;
}

.container {
    display: flex;
    flex-direction: column;
    background-color: var(--cor-secundaria);
    align-items: center;
    padding: 2rem;
    width: 420px;
    border-radius: 20px;
    border: 2px solid var(--cor-primaria);
    backdrop-filter: blur(8px);
    box-shadow: 0px 0px 20px 8px rgba(80,255,66,0.35);
}
@media (max-width: 500px) {
    .container {
        width: 90vw;
    }
}

.image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.image:hover {
    scale: 1.05;
    box-shadow: 0px 0px 20px 8px rgba(79, 255, 66, 0.164);
}

.image img {
object-fit: contain;
width: 100%;
height: auto;

}

.content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.content a {
    width: 100%;
    height: 50px;
    background-color: var(--cor-botao);
    color: var(--cor-texto-botao);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.content a:hover {
    border: 2px solid var(--cor-primaria);
    background-color: #0505053d;
    box-shadow: 0px 0px 20px 8px rgba(80,255,66,0.35);
    color: var(--cor-primaria);
    fill: var(--cor-primaria);
}

.content h1, h2, h3 {
    font-size: 25px;
    text-align: center;
    color: var(--cor-texto);
}

.content p {
    font-size: 12px;
    color: var(--cor-texto);
    text-align: center;
}

h1 {
    color: var(--cor-texto);
    font-size: clamp(15px, 2rem, 3rem);
    text-align: center;
}

span {
    font-size: 1rem;
    letter-spacing: 3px;
    color: #5eac1f;
    text-transform: uppercase;

}

.atendimento {
    margin-top: 30px;
}