@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    color: #40280B;
    list-style: none;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cabecalho {
    padding: 20px;
    text-align: center; 

    & img {
        max-width: 80%; 
        height: auto; 
        display: block; 
        margin: 0 auto;
    }
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    text-align: center; 
    width: 100%;

    & h1 {
        font-size: 24px;
        margin-bottom: 5px;
        word-break: break-word; 
    }
}

.buttons {
    width: 90%; 
    max-width: 400px;
    margin: 0 auto;
    display: flex; 
    flex-direction: column;
    gap: 15px; 
}

.links {
    width: 100%; 
    align-items: center;
    background-color: #40280B;
    padding: 20px;
    border-radius: 20px;
    transition: 0.1s ease-in-out;
    text-align: center;

    & a {
        color: white;
        display: block; 
        width: 100%;
        font-weight: 600; 
    }
}

.links:hover {
    transform: scale(1.05);
}

footer {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 20px; 
    width: 90%;
    padding-bottom: 20px; 
}

.social {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    gap: 10px; 
    width: 100%; 
    max-width: 250px; 

    & img {
        width: 28px;
        min-width: 28px; 
    }

    & a {
        border-bottom: 1px solid ;
    }
}