@font-face {
  font-family: "MorrisBlackLetter Regular";
    src: url("./fonts/MorrisBlackLetter Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}


body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    
}

main {
    background-color: #661421;
}

.topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 40px 16px;
}

.topo h1 {
    font-family: "MorrisBlackLetter Regular", sans-serif;
    margin: 0;
    font-size: 42px;
    color: #661421;
}

.topo nav {
    display: flex;
    gap: 36px;
}

.topo nav a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 22px;
}

.topo nav a:hover {
    color: #661421;
    transition: 0.5s;
}   
    
.introdução {
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    

}

.introdução h1 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-top: -350px;
    font-size: 36px;
    color: #fff;
    max-width: 600px;
}

.introdução p {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    max-width: 800px;
    margin: -10px auto 0;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.904);
    font-weight: bold;
}

p.atendimento {
    margin: 20px auto 0;
    font-size: 12px;
    font-style: oblique;

}

.introdução h2 {
    font-size: 20px;
    color:#661421;
    padding: 0;
    
}

.introdução a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 50px;
    margin: 0 auto;
    margin-top: 27px;
    border-radius: 10px;
    background: rgb(255, 255, 255);
    text-decoration: none;
}

.introdução a:hover {
    background: #cc6d7d;
    transition: 0.5s;
}

.logoVidaLeve {
    width: min(420px, 100vw);
    display: block;
    margin: 50px auto 0;
    border-radius: 50px;
}

.contato-rapido {
    max-width: 400px;
    margin: 1px auto 1px;
    padding: 28px;
    border-radius: 14px;
    background: #fff4f6;
    text-align: center;
    position: relative;
    top: -350px;
}

.contato-rapido h2 {
    margin-top: 0;
    color: #661421;
}

.acoes-contato {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.botao-instagram {
    text-decoration: none;
    display: inline-block;
    background: #661421;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.botao-instagram:hover {
    background: #8f2a3c;
    transition: 0.4s;
}


footer {
    color: #000000;
    padding: 30px;
    justify-content: center;
    display: flex;
    background-color: transparent;
}

