@import url("https://use.typekit.net/mfs5pal.css");
@import url("https://use.typekit.net/mfs5pal.css");

:root {
    --roxo-texto: #6B5698;
    --azul-fundo: #9BB6EA;
    --branco-quente: #FFFDFD;
    --vinho-subtitulo: #582B37;
    --amarelo-titulo: #EFC85E;
    --verde-destaque: #2A8158;
    --rosa-rodape: #EB99BB;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "calibri", sans-serif;
    background-color: var(--azul-fundo);
    color: var(--vinho-subtitulo);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}


header {
    width: 100%;
    height: 205px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--rosa-rodape) url("../images/bg-textura-header.svg") repeat top center;
    background-blend-mode: overlay;
    background-size: auto;
}



.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--amarelo-titulo);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.titulo-verao {
    background: var(--verde-destaque);
    background-size: auto;
    /* ou ajusta como quiseres, ex: 200px 100px */
    color: var(--amarelo-titulo);
    font-family: "rockwell-nova", sans-serif;
    font-weight: 800;
    font-size: 42px;
    text-align: center;
    line-height: 1.05;
    padding: 2rem 1rem;
    width: 100%;
    height: 245px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    width: 100%;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;

    background: var(--azul-fundo)
    /* ou ajusta como quiseres, ex: 200px 100px */
}


h3 {
    font-family: "rockwell-nova", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--vinho-subtitulo);
    margin-bottom: 0.5rem;
    text-align: center;
}

.grupo-botoes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.botao {
    width: 85%;
    max-width: 360px;
    height: 70px;
    background-color: var(--branco-quente);
    color: var(--roxo-texto);
    border: none;
    border-radius: 35px;
    font-size: 20px;
    font-family: "calibri", sans-serif;
    cursor: pointer;
}

a.botao {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.botao.visible {
    opacity: 1;
    transform: translateY(0);
}

.botao:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.botao:active {
    transform: scale(0.97);
}

footer {
    width: 100%;
    background-color: var(--rosa-rodape);
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.footer-nome {
    font-family: "rockwell-nova", sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.footer-endereco {
    font-family: "rockwell-nova", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
}

.footer-credito {
    margin-top: 1.6rem;
    font-family: "rockwell-nova", sans-serif;
    font-weight: 400;
    color: var(--roxo-texto);
    font-size: 14px;
    text-align: center;
    line-height: 1.75em;
}

.footer-telefone {
    text-decoration: none;
    color: var(--vinho-subtitulo);
    cursor: pointer;
}

.footer-telefone:hover {
    color: var(--roxo-texto);
    cursor: pointer;
}