/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e8f5e9; /* Fundo verde claro */
}

/* Container */
.container {
    background: #fff;
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    border: 2px solid #81c784; /* Bordas verdes claras */
}

/* Profile */
.profile {
    margin-bottom: 20px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #4caf50; /* Cor verde para combinar com tema */
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.1);
}

.name {
    font-size: 24px;
    font-weight: bold;
    color: #388e3c; /* Verde escuro */
    margin: 10px 0;
}

.bio {
    font-size: 14px;
    color: #6d6d6d;
    margin-bottom: 20px;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
}

.link {
    background-color: #66bb6a; /* Cor verde mais suave */
    color: white;
    text-decoration: none;
    padding: 15px;
    margin: 8px 0;
    border-radius: 8px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.link:hover {
    background-color: #388e3c; /* Verde mais forte ao hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.link:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media screen and (max-width: 400px) {
    .container {
        width: 90%;
    }
}

.no-interact {
    user-select: none; /* Para navegadores modernos */
    -webkit-user-select: none; /* Para Safari */
    -moz-user-select: none; /* Para Firefox */
    -ms-user-select: none; /* Para Internet Explorer/Edge */
    -webkit-user-drag: none;     /* Desabilita o arraste de imagens no Safari e Chrome */
    -moz-user-drag: none;        /* Desabilita o arraste de imagens no Firefox */
    -ms-user-drag: none;         /* Desabilita o arraste de imagens no IE/Edge */
    -webkit-user-drag: none;  /* Desabilita o arraste de imagens em navegadores compatíveis */
    pointer-events: none; /* Desabilita eventos de clique */
    cursor: default; /* Opcional: altera o cursor para indicar que o texto não é clicável */
  }