main { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 30px; 
}
.contact-section { 
    max-width: 800px; 
    margin: 30px; 
    padding: 20px; 
    background-color: #fff; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border-radius: 8px;
}
table { 
    width: 100%; 
    border-collapse: collapse; 
}
th { 
    background-color: #005b96; 
    color: white; 
    padding: 10px; 
    font-size: 18px; 
}
td { 
    padding: 10px; 
}
input[type="text"], input[type="email"], input[type="number"], textarea { 
    width: 100%; 
    padding: 8px; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    font-size: 16px; 
    margin-bottom: 10px;
}
input[type="submit"], input[type="reset"] { 
    background-color: #005b96; 
    color: white; 
    padding: 10px 20px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer;
}
input[type="submit"]:hover, input[type="reset"]:hover { 
    background-color: #004a7c; 
}
label { 
    font-size: 16px; 
    color: #333; 
}
textarea { 
    resize: vertical; 
}
.fale-conosco { 
    margin-top: 10px;
    background: linear-gradient(135deg, #1abc9c, #2ecc71); 
    color: #fff; 
    width: 300px; 
    padding-top: 20px; 
    padding: 20px; 
    border-radius: 15px; 
    text-align: center; 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
}
.profile-pic img { 
    width: 250px; 
    height: 250px; 
    border-radius: 10%; 
    border: 3px solid #fff; 
    margin-bottom: 15px; 
}
.fale-conosco h2 { 
    font-size: 32px; 
    margin-bottom: 15px; 
    font-weight: bold;
}
.contact-options { 
    list-style-type: none; 
    padding: 0; 
    margin-bottom: 15px; 
}
.contact-options li { 
    font-size: 26px; 
    margin: 5px 0; 
    display: flex; 
    align-items: start; 
    justify-content: start; 
    text-align: start; 
}
.whatsapp { 
    font-size: 26px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-top: 15px; 
}
.whatsapp a { 
    text-decoration: none; 
    color: #fff; 
    transition: all 0.3s ease; 
}
.whatsapp a:hover { 
    color: #733822; 
}
.whatsapp img { 
    width: 24px; 
    height: 24px; 
    margin-right: 8px; 
}

@media (max-width: 768px) { 
    main { 
        padding: 15px; 
    } 
    table { 
        width: 100%; 
    } 
    td, th { 
        display: block; 
        width: 100%; 
        text-align: left; 
    } 
    th { 
        text-align: center; 
    } 
    input[type="submit"], input[type="reset"] { 
        width: 100%; 
        margin-top: 10px; 
    } 
    aside { 
        display: none; 
    }
}

@media (max-width: 480px) { 
    main { 
        flex-direction: column; 
        padding: 10px; 
        gap: 20px; 
    } 
    .contact-section { 
        max-width: 100%; 
        margin: 10px; 
        padding: 15px; 
    } 
    .fale-conosco { 
        width: 100%; 
        padding: 10px; 
    } 
    .profile-pic img { 
        width: 100%; 
        height: auto; 
    } 
    .fale-conosco h2 { 
        font-size: 24px; 
        margin-bottom: 10px; 
    } 
    .contact-options li { 
        font-size: 20px; 
    } 
    .whatsapp { 
        font-size: 20px; 
        margin-top: 10px; 
    } 
    .whatsapp img { 
        width: 20px; 
        height: 20px; 
    }
}
