body {
    margin: 0;
    padding: 0;
    font-family: Cambria, serif;
    background-color: #121111;
    color: #f0e1bb;
    margin-left: 0;
}


.container {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
    text-align: center;
    padding: 20px;
}

.sobre_nos {
    color: #f3f3f3;
}

/* Deixa a logo arredondada */
.logo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;  /* Arredonda a imagem */
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Estilo da bio */
.bio {
    font-size: 18px;
    color: #fafafa;
    margin-bottom: 25px;
}

/* Links centralizados e um embaixo do outro */
.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Espaço entre os botões */
    width: 100%;
}

/* Estilo dos botões de link */
.link-item, .link-item-cilios-unhas {
    background-color: #f8f2da;
    color: #000;
    text-decoration: none;
    padding: 15px 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;        /* Arredonda as bordas */
    font-size: 18px;
    transition: 0.30s;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

.link-item-cilios-unhas {
    background-color: #f8f2da;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    width: 100%;
    max-width: 400px;
    border-radius: 15px;        /* Arredonda as bordas */
    font-size: 18px;
    transition: 0.30s;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

.link-item:hover {
    transform: scale(1.04); /* Efeito de zoom */
    background-color: #ffffff;
    color: #caae79;
}

.link-email{
    background-color: #121111;
    color: #beb097;
    text-decoration: none;
    padding: 2px 2px;
    width: 90%;
    max-width: 400px;
    border-radius: 5px;        /* Arredonda as bordas */
    font-size: 18px;
    transition: 0.30s;

}

.link-email:hover {
    transform: scale(1.04); /* Efeito de zoom */
    background-color: #fbfbfb;
    color: #caae79; 
    padding: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

/* Informações adicionais */
.info-adicional {
    text-align: justify;
    margin-top: 30px;
    font-size: 16px;
}

.info-adicional h2,
.info-adicional h3 {
    color: #fffdfd;
}

/* Rodapé */
footer {
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}

.unhas-e-cilios {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.unhas, .cilios {
    flex: 1 1 48%;  /* Ocupa 48% cada, deixa 4% pro gap */
    background-color: #1a1919;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
}

.link-item-cilios-unhas:hover {
    transform: scale(1.10); /* Efeito de zoom */
    background-color: #ffffff;
    color: #caae79;
    border-radius: 5px;
}

.tamanho_wpplogo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.link-item {
    display: block;
    margin-bottom: 10px;
}

/* RESPONSIVIDADE GERAL */
@media (max-width: 768px) {
    .unhas, .cilios {
        flex: 1 1 100%;
    }

    .logo {
        width: 120px;
        height: 120px;
    }
}
