/* ============================================
   COMPONENTS - Aurora Link-in-Bio
   Arquivo: components.css
   Descrição: Estilos de componentes (header, cards, footer)
   ============================================ */

/* === HEADER === */
.header {
    width: 100%;
    max-width: 540px;
}

.header-card {
    text-align: center;
    padding-top: 40px;
}

/* === AVATAR === */
.avatar-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 16px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-text);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* === NOME E TAGLINE === */
.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: spin 3s linear infinite, glow 2s ease-in-out infinite;
}

.verified-badge svg {
    width: 24px;
    height: 24px;
    color: #1DA1F2;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text);
    max-width: 320px;
    margin: 0 auto;
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* === CONTAINER DE LINKS === */
.links-container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* === CARDS DE LINK === */
.link-card {
    background: var(--color-card);
    border-radius: 50px;
    transition: all var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.link-card:hover {
    background: var(--color-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.link-card:active {
    transform: scale(0.98);
}

.link-card-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
}

/* === ÍCONES === */
.link-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon svg {
    width: 24px;
    height: 24px;
}

.instagram-icon {
    background: linear-gradient(135deg, #405de6, #833ab4, #e1306c);
    color: white;
}

.telegram-icon {
    background: var(--color-telegram);
    color: white;
}

.x-icon {
    background: #000000;
    color: white;
}

/* === CONTEÚDO DO LINK === */
.link-content {
    flex: 1;
}

.link-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

/* Elementos ocultos (não utilizados) */
.link-subtitle,
.link-arrow,
.link-shine {
    display: none;
}

/* === FOOTER === */
.footer {
    width: 100%;
    max-width: 440px;
    text-align: center;
    padding: var(--space-xl) 0;
    margin-top: var(--space-lg);
}

.footer-text {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: var(--space-sm);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--color-muted);
    opacity: 0.7;
}

/* === ELEMENTOS NÃO UTILIZADOS (OCULTOS) === */
.bg-gradient,
.bg-photo,
.bg-overlay,
.bg-orbs {
    display: none;
}
