:root {
    --primary: #00e676;
    --primary-glow: rgba(0, 230, 118, 0.4);
    --bg-overlay: rgba(8, 8, 12, 0.75);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
}

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

body {
    background-color: #050505;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 1rem;
    position: relative;
    overflow-x: hidden;
}

/* Background com a imagem configurada para hero.jpg */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imagens/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* Overlay dark-glass para garantir legibilidade de tudo por cima */
.background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 480px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    animation: fadeIn 1s ease-out;
}

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

.profile {
    text-align: center;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #8a8a9a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* Estilo do Card Glassmorphism */
.link-card {
    text-decoration: none;
    color: inherit;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: block;
}

/* Efeito de brilho percorrendo o card ao passar o mouse */
.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
    z-index: 10;
}

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

.link-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 230, 118, 0.15),
                0 0 20px var(--primary-glow);
}

.card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #15151e, #1a1a24);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.link-card:hover .card-image img {
    transform: scale(1.1);
}

/* Gradiente na base da imagem para transição suave com o conteúdo */
.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(12,12,16,0.95), transparent);
    pointer-events: none;
}

.card-content {
    padding: 0 1.5rem 1.8rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -30px; /* Puxa o conteúdo para cima do gradiente da imagem */
}

.card-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    letter-spacing: 0.5px;
}

.action-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(0, 230, 118, 0.25);
    transition: all 0.3s ease;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, #00e676, #00b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
}

/* Efeito de pulso para chamar a atenção */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.link-card:hover .action-text {
    background: rgba(0, 230, 118, 0.2);
    animation: pulseGlow 1.5s infinite;
}

/* Responsividade */
@media (max-width: 480px) {
    body {
        padding: 2rem 1rem;
    }
    .card-image {
        height: 190px;
    }
    .card-content h2 {
        font-size: 1.2rem;
    }
    .main-title {
        font-size: 1.8rem;
    }
    .price {
        font-size: 1.5rem;
    }
}
