body {
    font-family: "Inter", sans-serif;
    background-color: #0f312a;
    color: #fff;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../assets/img/background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 5px;
    background-image: url(../assets/img/dois-construtora.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.profile-name a {
    font-weight: 700;
    font-size: 1.5em;
    text-align: center;
    text-decoration: none;
    color: #fffdee;
    margin-bottom: 5px;
}

.profile-link {
    font-weight: 300;
    font-size: 0.75em;
    text-align: center;
    color: #00edbf;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: rgba(16, 91, 76, 0.7);
    text-decoration: none;
    color: #fffdee;
    font-size: 0.9em;
    font-weight: 600;
}

.social-link:hover {
    background-color: rgba(2, 152, 122, 0.7);
}

.svg-inline--fa {
    margin-right: 10px;
}

.links-container {
    width: 600px;
}

.links-container h1 {
    font-weight: 600;
    font-size: 1.5em;
    text-align: justify;
}

.links-container p {
    font-weight: 200;
    text-align: justify;
}

.links-container h2 {
    font-weight: 600;
    font-size: 1em;
    text-align: justify;
    color: #00edbf;
}

.links-container p strong {
    font-weight: 600;
}

.links-section-title {
    font-weight: 300;
    font-size: 1em;
    margin-bottom: 15px;
}

.link-item {
    margin-bottom: 10px;
}

.link-button {
    display: flex;
    align-items: center;
    background-color: #222;
    color: #fff;
    padding: 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.link-button img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 5px;
    /* Se houver ícone */
}

.link-button-info {
    flex-grow: 1;
}

.link-button-title {
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 5px;
}

.link-button-description {
    font-size: 0.8em;
    color: #fffdee;
}

.link-button {
    display: flex;
    /* Alinha os itens dentro do botão na horizontal */
    align-items: center;
    /* Alinha verticalmente os itens ao centro */
    background-color: #222;
    color: #fff;
    padding: 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.link-button:hover {
    background-color: rgba(2, 152, 122, 0.7);
}

.link-button img {
    width: 50px;
    /* Ajuste o tamanho da imagem conforme necessário */
    height: 50px;
    /* Ajuste o tamanho da imagem conforme necessário */
    margin-right: 15px;
    /* Espaço entre a imagem e o texto */
    border-radius: 5px;
    /* Opcional: para deixar a imagem com cantos arredondados */
}

.link-button-info {
    flex-grow: 1;
    /* Permite que o texto ocupe o espaço restante */
}

.link-button-title {
    font-weight: bold;
    font-size: 1em;
    color: #fffdee;
    margin-bottom: 2px;
    text-align: center;
}

.link-button-description {
    font-size: 0.8em;
    color: #fffdee;
}

.link-bg-1 {
    background: linear-gradient(135deg, #fffdee 0%, #f3e5dc 100%);
    color: #000;
}

.link-bg-2 {
    background: linear-gradient(135deg, rgba(18, 140, 126, 0.3) 0%, rgba(0, 237, 191, 0.3) 100%);
    color: #000;
}

.link-bg-3 {
    background: linear-gradient(135deg, rgba(18, 140, 126, 0.3) 0%, rgba(0, 237, 191, 0.3) 100%);
    color: #000;
}

.map {
    width: 100%;
    height: 400px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.footer {
    font-weight: 300;
    font-size: 0.7em;
    color: #02987a;
    margin-top: 30px;
    text-align: center;
}

@media only screen and (max-width: 680px) {
    .links-container {
        width: 90%;
    }
}