/* Estilos específicos para a página Linktree */
.linktree-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

@media (max-width: 480px) {
    .linktree-container {
        padding: 1rem;
    }
}.product-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem;
}

.product-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    transition: transform var(--transition-speed);
}

.product-link:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-info {
    text-align: left;
    flex: 1;
}

.product-info h2 {
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-info p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--accent-color);
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.brand-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15));
    transition: transform var(--transition-speed), filter var(--transition-speed);
}

.brand:hover .brand-logo {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2)) brightness(1.1);
}

.site-description {
    text-align: center;
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.8;
    font-family: var(--font-body);
    max-width: 600px;
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }

    .brand-logo {
        max-width: 260px;
    }

    .site-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 0;
        margin-bottom: 1rem;
    }

    .brand-logo {
        max-width: 220px;
    }

    .site-description {
        font-size: 1rem;
    }
}

@keyframes flow {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.product-links {
    display: grid;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.product-link {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-speed);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.product-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-speed);
}

.product-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-link:hover::before {
    transform: scaleX(1);
}

.product-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem;
}

.product-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    transition: transform var(--transition-speed);
}

.product-link:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-info {
    text-align: left;
    flex: 1;
}

.product-info h2 {
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-info p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: var(--accent-color);
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Responsividade */
@media (max-width: 480px) {
    .linktree-container {
        padding: 1rem;
    }

    .site-title {
        font-size: 2rem;
    }

    .product-card {
        flex-direction: column;
        text-align: center;
    }

    .product-info {
        text-align: center;
    }
}