/* Paleta de Cores*/
:root {
    --bg-body: #f4f7f6; 
    --card-bg: #ffffff;
    --primary-blue: #0077b5;
    --text-main: #2d3436;
    --text-secondary: #636e72;
    --whatsapp-green: #25d366;
    --border-color: #edf2f7;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container Principal (Card) */
.container {
    background: var(--card-bg);
    max-width: 450px;
    width: 100%;
    padding: 40px 25px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

/* Foto de Perfil */
.avatar-container {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-blue);
    padding: 3px; 
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Tipografia */
h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Botões de Ação Rápida */
.contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.btn {
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white;
}

.btn-email {
    background-color: #f8fafc;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Redes Sociais */
.social-icons {
    margin-bottom: 30px;
}

.social-icons a {
    font-size: 1.4rem;
    color: #b2bec3;
    margin: 0 12px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-blue);
}

/* Lista de Links (Marcas e Catálogos) */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.link-item:hover {
    border-color: var(--primary-blue);
    background-color: #f0f7ff;
    color: var(--primary-blue);
}

/* Destaque para o Catálogo */
.link-item.highlight {
    background-color: var(--primary-blue);
    color: white;
    border: none;
}

.link-item.highlight:hover {
    filter: brightness(1.1);
    color: white;
}