* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
}

header img {
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 100%;
    height: auto; 
    display: block;
}

main {
    background-color: #f3f3f0;
    width: 100%;
    height: auto;
    padding: 2rem;
}

h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

h2 {
    color: #4169E1;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.photo_profile {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.photo_profile img {
    border: 0;
    border-radius: 100%;
    height: 100px;
    width: 130px;
}

.destaque {
    font-size: 1.2rem;
    color: #947f7d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5em;
    letter-spacing: -.03px;
    line-height: 1.50;
}

.botoes {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.botao {
    background: #4169E1;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease;
    transition: .5s
}

.botao:hover {
    cursor: pointer;
    transform: translateY(-3px);
    background-color: #f4d364;
}

.icon {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.icon img {
    padding-right: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }

    main {
        width: 100%;
    }
    
    .destaque {
        font-size: 1rem;
    }
    
    .botao {
        padding: 0.8rem 1.5rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    body {
    font-size: 18px; 
    padding: 20px; 
    }

    img {
    max-width: 80%; 
    margin: 0 auto; 
    }

    header, main {
    padding: 15px;
    }
}