/* Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #9cc7f1; /* Fundo levemente cinza para destacar o card */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

/* Header/Perfil */
.profile {
    margin-bottom: 30px;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile h1 {
    color: #0b2545; /* Azul Escuro */
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.profile p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Botões/Links */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    background-color: #ffffff;
    color: #0b2545;
    text-decoration: none;
    padding: 18px;
    border-radius: 50px; /* Bordas arredondadas estilo Linktree */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e0e0e0;
}

.link-card i {
    position: absolute;
    left: 20px;
    font-size: 1.2rem;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #f0f4f8;
}

/* Destaque para o link principal (ex: Agendar) */
.link-card.highlight {
    background-color: #c68cfc; /* Verde água suave */
    color: #0b2545;
    border: none;
}

.link-card.highlight:hover {
    background-color: #b14bf5;
}

/* Redes Sociais e Rodapé */
.social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #0b2545;
    font-size: 1.5rem;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.footer-text {
    margin-top: 25px;
    font-size: 0.8rem;
    color: #999;
}