/* Style Settings */

@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');

:root {
    --font: 'Karla', sans-serif;
    --accentColor: rgb(66, 110, 255); /* Azul */
    --whatsappColor: rgb(27, 165, 83); /* Verde de WhatsApp */
}

body {
    background-color: rgb(243, 242, 242);
    font-family: var(--font);
    margin: 0;
    padding: 0;
}

#Logo {
    width: 234px;
    height: 116px;
    display: block;
    margin: 35px auto 20px;
}

#titulo, #subtitulo {
    color: rgb(99, 99, 99);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#subtitulo {
    margin-top: 1rem;
}

#links {
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px auto;
}

.link {
    display: block;
    background-color: var(--accentColor);
    color: #fff;
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all .25s cubic-bezier(.08, .59, .29, .99);
    border: solid var(--accentColor) 2px;
}

.link:hover {
    background-color: #fff;
    color: var(--accentColor);
    border: solid var(--accentColor) 2px;
}

.whatsapp-link {
    background-color: var(--whatsappColor);
    border: solid var(--whatsappColor) 2px;
}

.whatsapp-link:hover {
    background-color: #fff;
    color: var(--whatsappColor);
    border: solid var(--whatsappColor) 2px;
}

.footer {
    text-align: center;
    font-size: 1.3rem;
}

.footer a {
    text-decoration: none;
}

.circulo {
    background: rgb(221, 221, 221);
    border-radius: 52px;
    width: 38px;
    height: 38px;
    text-align: center;
    font-size: 10px;
    color: rgb(32, 32, 32);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.circulo:hover {
    background: var(--accentColor);
    color: #fff;
    box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77);
}
