:root {
    --bg-dark: #060709;
    --bg-card: rgba(20, 22, 28, 0.65);
    --bg-card-hover: rgba(30, 33, 42, 0.85);
    
    --text-main: #FFFFFF;
    --text-muted: #B8B8B6;
    --text-dim: #7A7A78;
    
    /* Luxury Platinum / Silver Palette (#EAEAE9) */
    --silver-main: #EAEAE9;
    --silver-light: #FFFFFF;
    --silver-dark: #9E9E9C;
    --silver-glow: rgba(234, 234, 233, 0.25);
    --silver-glow-strong: rgba(234, 234, 233, 0.6);
    
    --gradient-silver: linear-gradient(135deg, #FFFFFF 0%, #EAEAE9 50%, #A8A8A6 100%);
    --gradient-metallic: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(234, 234, 233, 0.7) 40%, rgba(160, 160, 158, 0.5) 100%);
    
    --glass-border: rgba(234, 234, 233, 0.12);
    --glass-border-hover: rgba(234, 234, 233, 0.5);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.85);
    --shadow-glow: 0 0 25px var(--silver-glow);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

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

/* Luxury Grain & Noise 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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Silver & Chrome Radial Ambient Glows */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: -3;
    opacity: 0.55;
    animation: glowFloat 12s ease-in-out infinite alternate;
}

.bg-glow-1 {
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(234, 234, 233, 0.2) 0%, rgba(168, 168, 166, 0.05) 70%, transparent 100%);
}

.bg-glow-2 {
    bottom: 5%;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(234, 234, 233, 0.12) 0%, transparent 70%);
    animation-delay: -6s;
}

.bg-glow-3 {
    top: 40%;
    left: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(234, 234, 233, 0.1) 0%, transparent 70%);
}

@keyframes glowFloat {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.12) translateY(25px); }
}

/* Dynamic Silver Particles */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 460px;
    padding: 2.2rem 1.2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

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

/* Transparent Floating Mascot Logo (Top Header) */
.brand-mascot-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    cursor: pointer;
}

.brand-mascot-img {
    width: 115px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(234, 234, 233, 0.35)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.9));
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
    animation: floatMascot 4s ease-in-out infinite alternate;
}

.brand-mascot-wrapper:hover .brand-mascot-img {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6)) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.95));
}

.brand-mascot-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 234, 233, 0.28) 0%, rgba(234, 234, 233, 0.08) 55%, transparent 80%);
    filter: blur(20px);
    z-index: -1;
    animation: pulseAura 3.5s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes floatMascot {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

@keyframes pulseAura {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.25); opacity: 0.9; }
}

/* Brand Name & Typography */
.brand-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.35rem;
}

.brand-logo-img {
    height: 44px;
    max-width: 240px;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(234, 234, 233, 0.35));
    margin-bottom: 0.35rem;
    transition: transform 0.3s ease;
}

.brand-logo-img:hover {
    transform: scale(1.03);
}

.brand-subtitle {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.brand-subtitle span {
    color: var(--silver-main);
    font-weight: 700;
}

.brand-bio {
    color: #dededc;
    font-size: 0.88rem;
    line-height: 1.45;
    font-weight: 400;
    max-width: 340px;
    margin-top: 0.4rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* Header Social Media Bar (Compact Below Logo) */
.header-social-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.2rem;
    width: 100%;
}

.header-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(22, 24, 32, 0.75);
    border: 1px solid var(--glass-border);
    color: var(--silver-main);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.header-social-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(234, 234, 233, 0.15), transparent);
    transition: left 0.5s ease;
}

.header-social-btn:hover {
    color: #000;
    background: var(--silver-main);
    border-color: var(--silver-light);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 20px rgba(234, 234, 233, 0.35);
}

.header-social-btn:hover::before {
    left: 100%;
}

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

/* Link Cards Base */
.link-card {
    display: flex;
    align-items: center;
    padding: 0.95rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text-main);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    opacity: 0;
    animation: fadeInUp 0.8s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

.link-card:hover {
    transform: translateY(-3px) scale(1.012);
    background: var(--bg-card-hover);
    border-color: var(--glass-border-hover);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8), 0 0 25px rgba(234, 234, 233, 0.18);
}

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

.link-icon-box {
    font-size: 1.4rem;
    color: var(--silver-main);
    background: rgba(12, 13, 18, 0.85);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.05rem;
    border: 1px solid rgba(234, 234, 233, 0.15);
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.link-card:hover .link-icon-box {
    background: var(--gradient-silver);
    color: #000;
    transform: scale(1.06) rotate(3deg);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(234, 234, 233, 0.4);
}

.link-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    z-index: 2;
}

.link-title {
    font-weight: 600;
    font-size: 1.04rem;
    letter-spacing: 0.3px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-badge {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(234, 234, 233, 0.15);
    color: var(--silver-main);
    border: 1px solid rgba(234, 234, 233, 0.3);
}

.link-badge.silver {
    background: rgba(234, 234, 233, 0.22);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.link-arrow {
    font-size: 1.2rem;
    color: var(--text-dim);
    opacity: 0.6;
    transform: translateX(-4px);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

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

/* Highlight Card Style (Silver / Chrome Luxury) */
.link-card.highlight {
    background: linear-gradient(135deg, rgba(234, 234, 233, 0.12) 0%, rgba(22, 24, 32, 0.75) 100%);
    border: 1px solid rgba(234, 234, 233, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(234, 234, 233, 0.15);
    animation: fadeInUp 0.8s forwards cubic-bezier(0.25, 1, 0.5, 1), pulseSilverGlow 3.5s infinite alternate 0.8s;
}

.link-card.highlight .link-icon-box {
    background: var(--gradient-silver);
    color: #000;
    border-color: rgba(255, 255, 255, 0.4);
}

.link-card.highlight:hover {
    background: linear-gradient(135deg, rgba(234, 234, 233, 0.22) 0%, rgba(32, 35, 46, 0.95) 100%);
    border-color: var(--silver-light);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 30px rgba(234, 234, 233, 0.35);
}

@keyframes pulseSilverGlow {
    0% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.75), 0 0 12px rgba(234, 234, 233, 0.1);
        border-color: rgba(234, 234, 233, 0.3);
    }
    100% {
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.85), 0 0 25px rgba(234, 234, 233, 0.3);
        border-color: rgba(255, 255, 255, 0.7);
    }
}

/* ===================================================
   Mascot & Vem com o DOG Section
   =================================================== */
.dica-dog-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    margin-top: 2.5rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s forwards cubic-bezier(0.25, 1, 0.5, 1);
    animation-delay: 0.5s;
}

.dica-dog-text-col {
    display: flex;
    flex-direction: column;
    flex: 1;
    z-index: 2;
    padding-top: 0.4rem;
    padding-left: 0.6rem;
    padding-right: 0;
    justify-content: flex-start;
}

.dica-dog-heading {
    font-size: 1.55rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.3px;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.dica-heading-logo {
    height: 26px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    margin-left: 4px;
    opacity: 0.85;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.dica-typewriter-container {
    display: inline;
    font-size: 0.94rem;
    line-height: 1.6;
    color: #EAEAE9;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    word-break: break-word;
}

.dica-typewriter-text {
    display: inline;
    white-space: pre-wrap;
}

.typewriter-cursor {
    display: inline-block;
    color: var(--silver-main);
    font-weight: 300;
    font-size: 1.15rem;
    margin-left: 2px;
    animation: blinkCursor 0.75s infinite;
    vertical-align: baseline;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.dica-dog-mascot-col {
    position: relative;
    width: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    align-self: flex-end;
    justify-content: flex-start;
    z-index: 2;
    margin-left: -22px;
    margin-right: 0;
    margin-bottom: -18px;
}

.big-mascot-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 20px rgba(234, 234, 233, 0.18));
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
    animation: floatMascotSubtle 4.5s ease-in-out infinite alternate;
}

.dica-dog-wrapper:hover .big-mascot-img {
    transform: scale(1.05) translateY(-6px);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4)) drop-shadow(0 20px 45px rgba(0, 0, 0, 0.98));
}

@keyframes floatMascotSubtle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-7px); }
}

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

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-dim);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.6;
}

.footer-copy strong {
    color: var(--text-muted);
    font-weight: 600;
}

.footer-copy .brand-tagline {
    color: var(--silver-main);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Toast Notification */
.toast-notice {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(18, 20, 26, 0.95);
    border: 1px solid var(--silver-main);
    color: #fff;
    padding: 11px 22px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.85), 0 0 20px rgba(234, 234, 233, 0.3);
    backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.toast-notice.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notice i {
    color: var(--silver-main);
    font-size: 1.1rem;
}

/* Keyframe 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(-25px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

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

/* Responsive Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem 2rem;
    }
    
    .brand-mascot-img {
        width: 100px;
    }
    
    .brand-logo-img {
        max-width: 210px;
        height: 38px;
    }
    
    .link-card {
        padding: 0.95rem 1.05rem;
    }
    
    .link-icon-box {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
        margin-right: 0.9rem;
    }
    
    .link-title {
        font-size: 0.96rem;
    }
    
    .link-desc {
        font-size: 0.75rem;
    }
    
    .header-social-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .dica-dog-wrapper {
        margin-top: 2.2rem;
    }

    .dica-dog-text-col {
        padding-top: 0.3rem;
        padding-left: 0.3rem;
        padding-right: 0;
    }

    .dica-dog-heading {
        font-size: 1.38rem;
        margin-bottom: 0.75rem;
    }

    .dica-typewriter-container {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .dica-dog-mascot-col {
        width: 200px;
        margin-left: -15px;
        margin-right: 0;
        margin-bottom: -14px;
    }

    .big-mascot-img {
        max-height: 330px;
    }
}
