:root {
    --bg-light: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #777777;
    
    /* Gold & Silver Luxury Palette */
    --gold-light: #FFD875;
    --gold-main: #C9993A;
    --gold-dark: #8B6914;
    --silver-light: #d0d0d0;
    --silver-main: #a0a0a0;
    --gold-gradient: linear-gradient(135deg, #C9993A, #FFD875, #8B6914);
    --silver-gradient: linear-gradient(135deg, #c0c0c0, #e8e8e8, #a0a0a0);
    
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-hover: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(201, 153, 58, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Subtle warm texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
    z-index: -1;
    pointer-events: none;
}

/* Soft warm radial accent */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 153, 58, 0.08) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 100%, rgba(201, 153, 58, 0.04) 0%, transparent 45%);
    z-index: -2;
    pointer-events: none;
}

/* Warm Gold Ambient Glows */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -3;
    opacity: 0.25;
    pointer-events: none;
}

.bg-glow-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -150px;
    background: rgba(201, 153, 58, 0.15);
    animation: float 10s ease-in-out infinite alternate;
}

.bg-glow-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    background: rgba(255, 216, 117, 0.1);
    animation: float 12s ease-in-out infinite alternate-reverse;
}

.bg-glow-3 {
    width: 280px;
    height: 280px;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(201, 153, 58, 0.06);
    animation: float 8s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(30px) scale(1.05); }
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-container {
    position: relative;
    margin-bottom: 1.5rem;
    width: 130px;
    height: 130px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--gold-main);
    z-index: 2;
    position: relative;
    box-shadow: 0 0 30px rgba(201, 153, 58, 0.25), 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #111;
}

.avatar-pulse {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 142px;
    height: 142px;
    border-radius: 50%;
    border: 1px solid var(--gold-main);
    animation: pulse 3s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
    opacity: 0.4;
}

.avatar-pulse-2 {
    animation-delay: 1.5s;
    border-color: var(--silver-main);
    opacity: 0.2;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.35); opacity: 0; }
}

.brand-name {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #8B6914 0%, #C9993A 30%, #FFD875 55%, #C9993A 80%, #8B6914 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s ease-in-out infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.brand-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: rgba(201, 153, 58, 0.08);
    border: 1px solid rgba(201, 153, 58, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-dark);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.brand-badge i {
    font-size: 0.95rem;
    color: var(--gold-main);
}

/* Links */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-main);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s forwards cubic-bezier(0.25, 1, 0.5, 1), idleFloat 5s ease-in-out infinite 0.8s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.link-card::after {
    content: '';
    position: absolute;
    top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 153, 58, 0.06), transparent);
    transform: skewX(-25deg);
    animation: sweepShine 6s infinite;
    z-index: 1;
    pointer-events: none;
}

.link-card:before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 153, 58, 0.06), transparent);
    transition: left 0.7s ease;
    z-index: 1;
}

.link-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--glass-hover);
    border-color: var(--gold-main);
    box-shadow: 0 12px 35px rgba(201, 153, 58, 0.15), 0 4px 15px rgba(0, 0, 0, 0.06);
}

.link-card:hover:before {
    left: 100%;
}

/* CTA Card (WhatsApp Main) */
.link-card.cta-card {
    background: rgba(201, 153, 58, 0.06);
    border: 1px solid rgba(201, 153, 58, 0.3);
    padding: 1.4rem 1.2rem;
}

.link-card.cta-card:hover {
    background: rgba(201, 153, 58, 0.12);
    border-color: var(--gold-main);
    box-shadow: 0 15px 45px rgba(201, 153, 58, 0.2), 0 4px 15px rgba(0, 0, 0, 0.06);
}

.cta-icon {
    background: #000 !important;
    color: var(--gold-main) !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(201, 153, 58, 0.3);
}

.cta-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    z-index: 2;
}

.cta-content .link-title {
    flex-grow: 0;
    font-weight: 600;
    font-size: 1.05rem;
}

.cta-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.link-icon {
    font-size: 1.5rem;
    color: var(--gold-main);
    background: #000;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    border: 1px solid rgba(201, 153, 58, 0.15);
    z-index: 2;
    transition: all 0.3s ease;
}

.link-card:hover .link-icon {
    background: #000;
    color: var(--gold-main);
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(201, 153, 58, 0.3);
}

.link-title {
    flex-grow: 1;
    font-weight: 500;
    font-size: 1.1rem;
    z-index: 2;
    letter-spacing: 0.5px;
}

.link-arrow {
    font-size: 1.3rem;
    color: var(--gold-dark);
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--gold-main);
}

/* Highlight Link (Grupo VIP) */
.link-card.highlight {
    background: rgba(201, 153, 58, 0.07);
    border: 1px solid rgba(201, 153, 58, 0.35);
    animation: fadeInUp 0.8s forwards cubic-bezier(0.25, 1, 0.5, 1), pulseGlow 2.5s infinite alternate 0.8s;
}

.link-card.highlight .link-icon {
    background: #000;
    color: var(--gold-main);
    box-shadow: 0 4px 15px rgba(201, 153, 58, 0.3);
}

.link-card.highlight:hover {
    background: rgba(201, 153, 58, 0.14);
    border-color: var(--gold-main);
    box-shadow: 0 15px 40px rgba(201, 153, 58, 0.2);
}

/* Footer Section */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeIn 1s forwards cubic-bezier(0.25, 1, 0.5, 1);
    animation-delay: 1s;
}

.social-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.social-row a {
    color: var(--gold-main);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(201, 153, 58, 0.15));
}

.social-row a:hover {
    color: var(--gold-dark);
    transform: translateY(-4px) scale(1.1);
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Animations */
.slide-down {
    opacity: 0;
    animation: slideDown 0.8s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes idleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 2px 10px rgba(201, 153, 58, 0.08);
        border-color: rgba(201, 153, 58, 0.25);
    }
    100% {
        box-shadow: 0 5px 25px rgba(201, 153, 58, 0.35);
        border-color: var(--gold-main);
    }
}

@keyframes sweepShine {
    0%, 60% { left: -150%; }
    100% { left: 200%; }
}

/* Particles container */
.bg-particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Responsive constraints */
@media (max-width: 400px) {
    .container { padding: 2rem 1.2rem; }
    .avatar-container { width: 110px; height: 110px; }
    .avatar-pulse { width: 122px; height: 122px; top: -6px; left: -6px; }
    .brand-name { font-size: 1.5rem; letter-spacing: 2px; }
    .link-card, .thumbnail-bar { padding: 1rem; }
    .link-icon { width: 42px; height: 42px; min-width: 42px; font-size: 1.3rem; }
}
