/* ESTILO GERAL DO SITE */
body {
    
    font-family: Verdana, sans-serif;
    background-color: #000000;
    background-image: url("img/b.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    color: #333;
}

/* LOGO */
header img {
    width: 190px;
    display: block;
    margin: 20px auto;
}


.button {
    margin: 20px;
    padding: 15px 30px;
    background-color: #fce80f;
    color: #000;
    text-transform: none;
    border-radius: 50px;
    font-size: 1.2em;
    transition: background-color 0.3s;
    text-decoration: none;
   
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.button:hover {
    background-color: #ffe600;
}

/* POSICIONAMENTO DO BOTÃO */
.container {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

/* CONTEÚDO PRINCIPAL */
main {
    width: 90%;   
    max-width: auto;
    margin: 10px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* TÍTULOS DAS SEÇÕES */
main h3 {
    font-size: 20px;
    color: #000000;
    margin-top: 30px;
    padding-top: 10px;
    border-top: 2px solid #9900ff;
    border-bottom: 2px solid #0000ff;
    text-align: center;
}

/* TEXTOS */
main p {
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
    color: #555;
}

/* DESTAQUE */
main span {
    font-weight: bold;
}

/* BOTÃO WHATSAPP */
main a {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    color: #ffffff;
    background-color: #25D366;
    border-radius: 50px;
    transition: background-color 0.3s;
    text-align: center;
    margin-top: 20px;
}

main a:hover {
    background-color: #00ff6a;
}
.anima-titulo {
    font-size: 28px;
    color: white;
    background: linear-gradient(90deg, #000dff, #13ba01d8, #000000);
    background-size: 300% 300%;
    animation: glow 5s ease-in-out infinite;
    padding: 15px;
    width: 90%;   
    max-width: auto;
    margin: 10px auto;
    border-radius: 10px;
    text-shadow: 2px 2px 4px #000;
}

@keyframes glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* BOTÃO WHATSAPP CENTRALIZADO */
.whatsapp-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    color: #fff;
    background-color: #25D366;
    border-radius: 50px;
    transition: background-color 0.3s;
    margin: 20px auto;
    text-align: center;
}

.whatsapp-btn:hover {
    background-color: #00ff6a;
}
/* RODAPÉ */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

@media (max-width: 600px) {
    header h1, header h2, main, .button {
        margin: 10px;
        font-size: 90%;
    }

    .container {
        position: static;
        text-align: center;
        margin-top: 10px;
    }
}
