/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'manrope';
    src: url(fonts/Manrope-VariableFont_wght.ttf) format('truetype');
}

body {
    font-family: 'manrope';
    font-weight: bold;
    background-color: #3d357e;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.fonte{
    font-weight: 100;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20vh;
}


/* Logo */
.logo img {
    max-width: 180px;
    height: auto;
    margin: 20px auto;
    display: block;
}

/* Seções principais */
.sections {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #fff;
    margin-top: 30px;
    padding: 0 10px;
}

/* Títulos e links estilizados */
.button {
    background-color: #edae0f;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.sections a {
    text-decoration: none;
    color: #3d357e;
    font-weight: bold;
    transition: color 0.3s, transform 0.2s;
}

.sections a:hover {
    color: #fff;
    transform: scale(1.05);
}

/* Imagens */
.img {
    width: 100%;
    max-width: 500px;
    margin-top: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Passos */
.passo {
    width: 100%;
    max-width: 700px;
    margin: 24px 0;
    padding: 0 20px;
}

.passo h1 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #3d357e;
}

.passo p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Responsividade geral */
@media (max-width: 768px) {
    body {
        padding: 16px;
    }

    .logo img {
        max-width: 140px;
    }

    .sections {
        flex-direction: column;
        gap: 20px;
    }

    .sections h1 {
        font-size: 0.95rem;
        padding: 14px 20px;
    }

    .passo h1 {
        font-size: 1.05rem;
    }

    .passo p {
        font-size: 0.9rem;
    }

    .img {
        max-width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .sections h1 {
        font-size: 0.9rem;
        padding: 12px 16px;
    }

    .passo {
        padding: 0 10px;
    }

    .passo h1 {
        font-size: 1rem;
    }

    .passo p {
        font-size: 0.85rem;
    }

    .logo img {
        max-width: 120px;
    }
}

