/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Fundo com imagem */
body {
    background: url('fundo.svg') no-repeat right top;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Container central */
.container {
    padding: 40px;
}

/* Logo e títulos */
.logo-section {
    max-width: 600px;
}

.logo {
    width: 400px;
    margin-bottom: 100px;
    height: auto;
}

h1 {
    color: #004d40;
    font-size: 36px;
    line-height: 1.2;
}

.subtitle {
    color: #888;
    font-size: 14px;
    margin-top: 10px;
}

/* Secção dos botões */
.buttons-section {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.button-box p {
    font-size: 16px;
    color: #004d40;
    margin-bottom: 10px;
}

.button-box span {
    color: #666;
    font-size: 14px;
}

.info-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #004d40;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
}

/* Rodapé */
footer {
    background: #ccc;
    color: #004d40;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
}



@media (min-width: 768px) and (max-width: 1024px) {
    
    body {
        background-position: 50% top;
        background-size: auto 100%;
    }

    .container {
        padding: 30px;
    }

    .logo-section {
        display: flex;
        justify-content: center;
    }

    .logo {
        margin-top: 20%;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 13px;
    }

    .buttons-section {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        margin-top: 50px;
    }

    .button-box {
        width: 200px;
    }

    .info-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 12px 0;
    }
}





/* Mobile-friendly ajustes */
@media (max-width: 768px) {

    body {
        background-position: 50% top;
        background-size: auto 100%;
    }

    .container {
        padding: 20px;
        text-align: center;
    }

    .logo-section {
        margin: 0 auto;
    }

    .logo {
        margin-top: 50%;
        width: 300px;
    }

    h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 12px;
    }

    .buttons-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }

    .button-box {
        width: 100%;
        max-width: 300px;
    }

    #botao2 {
        margin-top: 15%; 
        margin-bottom: 30%;       
    }

    .info-button {
        width: 100%;
        padding: 12px 0;
    }

    footer {
        font-size: 10px;
        padding: 8px 0;
    }
}