/* RESETA O PADRÃO DOS NAVEGADORES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif; /* Fonte moderna e limpa */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow-x: hidden; /* Evita rolagem lateral no celular */
}

/* IMAGEM DE FUNDO FIXA */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Substitua a URL abaixo por uma foto bonita de um imóvel */
    background-image: url("https://i.postimg.cc/s2hckSkx/background.jpg");
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* CAMADA ESCURA SOBRE A FOTO (Para o texto ficar legível) */
.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Escurece a foto em 60% */
    z-index: -1;
}

/* CARTÃO CENTRAL COM EFEITO DE VIDRO (GLASSMORPHISM) */
.glass-container {
    background: rgba(255, 255, 255, 0.1); /* Branco muito transparente */
    backdrop-filter: blur(12px);           /* O Desfoque mágico atrás do vidro */
    -webkit-backdrop-filter: blur(12px);   /* Para funcionar no Safari/iPhone */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borda fina e sutil */
    
    border-radius: 24px;
    padding: 40px 30px;
    width: 90%;          /* Ocupa 90% da tela no celular */
    max-width: 400px;    /* Limite no PC para não ficar esticado */
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); /* Sombra profunda */
    margin: 20px 0;      /* Espaço em cima e em baixo para telas pequenas */
}

/* FOTO DE PERFIL */
.foto-perfil {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D4AF37; /* Borda Dourada Premium */
    padding: 3px;              /* Espaço entre a foto e a borda */
    background-color: transparent;
}

/* TEXTOS */
h1 {
    font-weight: 600;
    font-size: 26px;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.cargo {
    color: #D4AF37; /* Dourado */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase; /* Letras maiúsculas */
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.descricao {
    font-size: 14px;
    color: #e0e0e0; /* Cinza claro */
    margin-bottom: 30px;
    line-height: 1.6;
}

/* BOTÕES */
.links-area {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre os botões */
}

.botao {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    
    background: rgba(255, 255, 255, 0.95); /* Quase branco sólido */
    color: #1a1a1a; /* Texto escuro */
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    
    transition: all 0.3s ease; /* Animação suave */
    border: 1px solid transparent;
}

/* Ícone dentro do botão */
.botao i {
    font-size: 20px;
    color: #000000;
}

/* HOVER (QUANDO O MOUSE PASSA POR CIMA) */
.botao:hover {
    background: #D4AF37; /* Fica Dourado */
    color: white;        /* Texto fica branco */
    transform: translateY(-3px); /* Sobe um pouco */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); /* Brilho dourado */
}

/* Ajuste da cor do ícone no hover */
.botao:hover i {
    color: white;
}

/* RODAPÉ */
.footer {
    margin-top: 30px;
    font-size: 11px;
    color: rgba((255, 255, 255, 0.5), 0.5);
    letter-spacing: 1px;
}

/* AJUSTES PARA CELULARES MUITO PEQUENOS */
@media (max-width: 360px) {
    .glass-container {
        padding: 25px 15px;
    }
    h1 {
        font-size: 22px;
    }
}